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
We only use Redis as a backend, not Memcached. Adding the dependency on dalli bloats our code.
Would it be possible to make this a dynamic dependency? It seems that the Gemfile using Suo is likely to already have redis or dalli included, so can you just skip the dependencies and load them on-demand? (You'd still need them in development_dependencies for tests.) I think you'd need a note in the README about that requirement.
The text was updated successfully, but these errors were encountered:
this absolutely makes sense, and normally i would just do this, but i'm quite wary of breaking existing applications. i could detect one or the other, and raise if neither is found -- what do you think?
Right now, your
gemspec
has the following:We only use Redis as a backend, not Memcached. Adding the dependency on
dalli
bloats our code.Would it be possible to make this a dynamic dependency? It seems that the
Gemfile
using Suo is likely to already haveredis
ordalli
included, so can you just skip the dependencies and load them on-demand? (You'd still need them indevelopment_dependencies
for tests.) I think you'd need a note in the README about that requirement.The text was updated successfully, but these errors were encountered: