Sha256: c567c85b7a15bc942ac5bb9bab461f068e197b47558f9215af805230fe965db6
Contents?: true
Size: 1.08 KB
Versions: 48
Compression:
Stored size: 1.08 KB
Contents
module Picky module Backends class Redis module DirectlyManipulable attr_accessor :backend, :key def self.make backend, list, key list.extend DirectlyManipulable list.backend = backend list.key = key end # THINK Current implementation is very brittle. # @@append_index = 0 def << value super zadd value, @@append_index += 1 end # THINK Current implementation is very brittle. # @@unshift_index = 0 def unshift value super zadd value, @@unshift_index -= 1 end # Deletes the value. # def delete value result = super value backend.client.zrem "#{backend.namespace}:#{key}", value if result result end # Z-Adds a value with the given index. # def zadd value, index backend.client.zadd "#{backend.namespace}:#{key}", index, value backend[key] end end end end end
Version data entries
48 entries across 48 versions & 1 rubygems