Sha256: 8814b553aca2946090a2213745711497a7b49a2b2b9685bf517bfd762b9d3eb0

Contents?: true

Size: 915 Bytes

Versions: 1

Compression:

Stored size: 915 Bytes

Contents

module FFI
  module HiredisVip
    class Exists
      def initialize(client)
        @client = client
      end

      def exists(*keys)
        reply = nil
        keys = keys.flatten
        number_of_exists = keys.size
        command = "EXISTS#{' %b' * number_of_exists}"
        command_args = []
        keys.each do |key|
          command_args << :string << 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

      private

      def synchronize
        @client.synchronize do |connection|
          yield(connection)
        end
      end

    end # class Exists
  end # module HiredisVip
end # module FFI

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ffi-hiredis_vip-0.1.0.pre2 lib/ffi/hiredis_vip/exists.rb