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
Currently Kredis supports manually constructing a key, this is often required to capture the relationship between a user and an object:
class Widgets::Selection kredis_set :selected_widgets, typed: :integer, key: ->(selection) { "identity:#{selection.identity.id}:selected_widgets" } attr_accessor :identity end
It'd be nice if Kredis supported this common scenario, generating an appropriately scoped key (useful for any future incineration):
class Widgets::Selection kredis_set :selected_widgets, typed: :integer, identified_by: :identity attr_accessor :identity end
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Currently Kredis supports manually constructing a key, this is often required to capture the relationship between a user and an object:
It'd be nice if Kredis supported this common scenario, generating an appropriately scoped key (useful for any future incineration):
The text was updated successfully, but these errors were encountered: