You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.
Any feature of the plugin that requires an additional dependency should require an "extra" install, and that feature should only be enabled if the extra is available.
For example, we make sentry an extra install, and we only configure it if it is available in the environment (and respecting the PluginConfig.do_sentry flag.
The text was updated successfully, but these errors were encountered:
Thanks for picking this up! This is one that @cofin requested in starlite discord.
If hiredis is in the environment, it is automatically used by redis-py:
For faster performance, install redis with hiredis support, this provides a compiled response parser, and for most cases requires zero code changes. By default, if hiredis >= 1.0 is available, redis-py will attempt to use it for response parsing.
Any feature of the plugin that requires an additional dependency should require an "extra" install, and that feature should only be enabled if the extra is available.
For example, we make sentry an extra install, and we only configure it if it is available in the environment (and respecting the
PluginConfig.do_sentry
flag.The text was updated successfully, but these errors were encountered: