-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
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
Support expires_in
for List
, Set
, UniqueList
, OrderedSet
#143
base: main
Are you sure you want to change the base?
Changes from all commits
f4bc157
ca5d561
1dcd8ea
08a1c5f
7c23109
e9a50e6
0e05ec1
5397a6e
69081d6
f7bcb61
f403578
4b2fa7d
70bd88b
93aef02
1ad81da
48801cf
2dc3745
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# frozen_string_literal: true | ||
|
||
module Kredis::Expiration | ||
extend ActiveSupport::Concern | ||
|
||
included do | ||
proxying :ttl, :expire | ||
attr_accessor :expires_in | ||
end | ||
|
||
private | ||
def with_expiration(suppress: false, &block) | ||
result = block.call | ||
if !suppress && expires_in && ttl < 0 | ||
expire expires_in.to_i | ||
end | ||
result | ||
end | ||
end |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
|
||
class Kredis::Types::Hash < Kredis::Types::Proxying | ||
prepend Kredis::DefaultValues | ||
include Kredis::Expiration | ||
|
||
proxying :hget, :hset, :hmget, :hdel, :hgetall, :hkeys, :hvals, :del, :exists? | ||
|
||
|
@@ -18,7 +19,9 @@ def []=(key, value) | |
end | ||
|
||
def update(**entries) | ||
hset entries.transform_values { |val| type_to_string(val, typed) }.compact if entries.flatten.any? | ||
with_expiration do | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Refreshing expiration on modification differs from mainline Redis behavior. If we want this, it should probably be distinct from setting an expiry on the key. |
||
hset entries.transform_values { |val| type_to_string(val, typed) }.compact if entries.flatten.any? | ||
end | ||
end | ||
|
||
def values_at(*keys) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
class Kredis::Types::List < Kredis::Types::Proxying | ||
prepend Kredis::DefaultValues | ||
include Kredis::Expiration | ||
|
||
proxying :lrange, :lrem, :lpush, :ltrim, :rpush, :exists?, :del | ||
|
||
|
@@ -16,12 +17,20 @@ def remove(*elements) | |
types_to_strings(elements, typed).each { |element| lrem 0, element } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removal doesn't freshen expiry, though? Feeling like there will be lots of gaps in this behavior. Should be moved to a declaration on the underlying proxied operations? |
||
end | ||
|
||
def prepend(*elements) | ||
lpush types_to_strings(elements, typed) if elements.flatten.any? | ||
def prepend(*elements, suppress_expiration: false) | ||
return if elements.flatten.empty? | ||
|
||
with_expiration(suppress: suppress_expiration) do | ||
lpush types_to_strings(elements, typed) | ||
end | ||
end | ||
|
||
def append(*elements) | ||
rpush types_to_strings(elements, typed) if elements.flatten.any? | ||
def append(*elements, suppress_expiration: false) | ||
return if elements.flatten.empty? | ||
|
||
with_expiration(suppress: suppress_expiration) do | ||
rpush types_to_strings(elements, typed) | ||
end | ||
end | ||
alias << append | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
|
||
class Kredis::Types::OrderedSet < Kredis::Types::Proxying | ||
prepend Kredis::DefaultValues | ||
include Kredis::Expiration | ||
|
||
proxying :multi, :zrange, :zrem, :zadd, :zremrangebyrank, :zcard, :exists?, :del, :zscore | ||
|
||
|
@@ -53,9 +54,11 @@ def insert(elements, prepending: false) | |
[ score, element ] | ||
end | ||
|
||
multi do | ||
zadd(elements_with_scores) | ||
trim(from_beginning: prepending) | ||
with_expiration do | ||
multi do | ||
zadd(elements_with_scores) | ||
trim(from_beginning: prepending) | ||
end | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to above, we have insertion refreshing expiration but not removal |
||
end | ||
end | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.