Description
In RedisCache.hpp, the public method newValueAvaliable() and clearNewValueAvaliable() are misspelled — "Avaliable" should be "Available".
Note that the internal std::atomic<bool> newValueAvailable member variable is already spelled correctly.
This is a public API issue that will be harder to fix later without breaking callers.
Severity
Low
Suggested Fix
Rename to newValueAvailable() and clearNewValueAvailable(). Consider keeping the old names as deprecated aliases temporarily if there are existing callers.
Description
In
RedisCache.hpp, the public methodnewValueAvaliable()andclearNewValueAvaliable()are misspelled — "Avaliable" should be "Available".Note that the internal
std::atomic<bool> newValueAvailablemember variable is already spelled correctly.This is a public API issue that will be harder to fix later without breaking callers.
Severity
Low
Suggested Fix
Rename to
newValueAvailable()andclearNewValueAvailable(). Consider keeping the old names as deprecated aliases temporarily if there are existing callers.