We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In version 1.1.0 the strictCompatibilityModeVersion setting has been added to the Redis configuration.
strictCompatibilityModeVersion
Unfortunately, if nothing is defined for this setting if configured via app/web.config, an error is thrown that the version string is not valid.
Workaround: Until fixed, set the strictCompatibilityModeVersion to a valid version string, e.g. "3.0"
"3.0"
<cacheManager.Redis xmlns="http://cachemanager.michaco.net/schemas/RedisCfg.xsd"> <connections> <connection id="redisConfig" allowAdmin="true" strictCompatibilityModeVersion="3.0"> <endpoints> <endpoint host="localhost" port="6379" /> </endpoints> </connection> </connections> </cacheManager.Redis>
see also #164
The text was updated successfully, but these errors were encountered:
Fixing empty version string causing issues #164 #165
3d6f8f4
Sanity check for expiration in OutputCache
Fixed in 1.1.1
Sorry, something went wrong.
MichaCo
No branches or pull requests
In version 1.1.0 the
strictCompatibilityModeVersion
setting has been added to the Redis configuration.Unfortunately, if nothing is defined for this setting if configured via app/web.config, an error is thrown that the version string is not valid.
Workaround: Until fixed, set the
strictCompatibilityModeVersion
to a valid version string, e.g."3.0"
see also #164
The text was updated successfully, but these errors were encountered: