Sha256: a0202d44007dd2f03fbcc1d73f31f0a4fffb830defe933299281d72d1debb29a
Contents?: true
Size: 831 Bytes
Versions: 1
Compression:
Stored size: 831 Bytes
Contents
module FFI module HiredisVip class Touch def initialize(client) @client = client end def touch(*keys) reply = nil keys = keys.flatten number_of_touches = keys.size command = "TOUCH#{' %b' * number_of_touches}" command_args = [] keys.each do |key| command_args << :pointer << key << :size_t << key.size end synchronize do |connection| reply = @client.execute_command(connection, command, *command_args) end return nil if reply.nil? || reply.null? case reply[:type] when :REDIS_REPLY_INTEGER reply[:integer] else 0 end end def supports_touch? true end end # class Touch end # module HiredisVip end # module FFI
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ffi-hiredis_vip-0.1.0.pre3 | lib/ffi/hiredis_vip/touch.rb |