Class: VertxRedis::RedisClient
- Inherits:
-
Object
- Object
- VertxRedis::RedisClient
- Defined in:
- /Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb
Class Method Summary (collapse)
Instance Method Summary (collapse)
-
- (self) append(key = nil, value = nil) { ... }
Append a value to a key.
-
- (self) auth(password = nil) { ... }
Authenticate to the server.
-
- (self) bgrewriteaof { ... }
Asynchronously rewrite the append-only file.
-
- (self) bgsave { ... }
Asynchronously save the dataset to disk.
-
- (self) bitcount(key = nil) { ... }
Count set bits in a string.
-
- (self) bitcount_range(key = nil, start = nil, _end = nil) { ... }
Count set bits in a string.
-
- (self) bitop(operation = nil, destkey = nil, keys = nil) { ... }
Perform bitwise operations between strings.
-
- (self) bitpos(key = nil, bit = nil) { ... }
Find first bit set or clear in a string.
-
- (self) bitpos_from(key = nil, bit = nil, start = nil) { ... }
Find first bit set or clear in a string.
-
- (self) bitpos_range(key = nil, bit = nil, start = nil, stop = nil) { ... }
Find first bit set or clear in a string.
-
- (self) blpop(key = nil, seconds = nil) { ... }
Remove and get the first element in a list, or block until one is available.
-
- (self) blpop_many(keys = nil, seconds = nil) { ... }
Remove and get the first element in any of the lists, or block until one is available.
-
- (self) brpop(key = nil, seconds = nil) { ... }
Remove and get the last element in a list, or block until one is available.
-
- (self) brpop_many(keys = nil, seconds = nil) { ... }
Remove and get the last element in any of the lists, or block until one is available.
-
- (self) brpoplpush(key = nil, destkey = nil, seconds = nil) { ... }
Pop a value from a list, push it to another list and return it; or block until one is available.
-
- (self) client_getname { ... }
Get the current connection name.
-
- (self) client_kill(filter = nil) { ... }
Kill the connection of a client.
-
- (self) client_list { ... }
Get the list of client connections.
-
- (self) client_pause(millis = nil) { ... }
Stop processing commands from clients for some time.
-
- (self) client_setname(name = nil) { ... }
Set the current connection name.
-
- (void) close { ... }
Close the client - when it is fully closed the handler will be called.
-
- (self) cluster_addslots(slots = nil) { ... }
Assign new hash slots to receiving node.
-
- (self) cluster_count_failure_reports(nodeId = nil) { ... }
Return the number of failure reports active for a given node.
-
- (self) cluster_countkeysinslot(slot = nil) { ... }
Return the number of local keys in the specified hash slot.
-
- (self) cluster_delslots(slot = nil) { ... }
Set hash slots as unbound in receiving node.
-
- (self) cluster_delslots_many(slots = nil) { ... }
Set hash slots as unbound in receiving node.
-
- (self) cluster_fail_over_with_options(options = nil) { ... }
Forces a slave to perform a manual failover of its master.
-
- (self) cluster_failover { ... }
Forces a slave to perform a manual failover of its master.
-
- (self) cluster_forget(nodeId = nil) { ... }
Remove a node from the nodes table.
-
- (self) cluster_getkeysinslot(slot = nil, count = nil) { ... }
Return local key names in the specified hash slot.
-
- (self) cluster_info { ... }
Provides info about Redis Cluster node state.
-
- (self) cluster_keyslot(key = nil) { ... }
Returns the hash slot of the specified key.
-
- (self) cluster_meet(ip = nil, port = nil) { ... }
Force a node cluster to handshake with another node.
-
- (self) cluster_nodes { ... }
Get Cluster config for the node.
-
- (self) cluster_replicate(nodeId = nil) { ... }
Reconfigure a node as a slave of the specified master node.
-
- (self) cluster_reset { ... }
Reset a Redis Cluster node.
-
- (self) cluster_reset_with_options(options = nil) { ... }
Reset a Redis Cluster node.
-
- (self) cluster_saveconfig { ... }
Forces the node to save cluster state on disk.
-
- (self) cluster_set_config_epoch(epoch = nil) { ... }
Set the configuration epoch in a new node.
-
- (self) cluster_setslot(slot = nil, subcommand = nil) { ... }
Bind an hash slot to a specific node.
-
- (self) cluster_setslot_with_node(slot = nil, subcommand = nil, nodeId = nil) { ... }
Bind an hash slot to a specific node.
-
- (self) cluster_slaves(nodeId = nil) { ... }
List slave nodes of the specified master node.
-
- (self) cluster_slots { ... }
Get array of Cluster slot to node mappings.
-
- (self) command { ... }
Get array of Redis command details.
-
- (self) command_count { ... }
Get total number of Redis commands.
-
- (self) command_getkeys { ... }
Extract keys given a full Redis command.
-
- (self) command_info(commands = nil) { ... }
Get array of specific Redis command details.
-
- (self) config_get(parameter = nil) { ... }
Get the value of a configuration parameter.
-
- (self) config_resetstat { ... }
Reset the stats returned by INFO.
-
- (self) config_rewrite { ... }
Rewrite the configuration file with the in memory configuration.
-
- (self) config_set(parameter = nil, value = nil) { ... }
Set a configuration parameter to the given value.
-
- (self) dbsize { ... }
Return the number of keys in the selected database.
-
- (self) debug_object(key = nil) { ... }
Get debugging information about a key.
-
- (self) debug_segfault { ... }
Make the server crash.
-
- (self) decr(key = nil) { ... }
Decrement the integer value of a key by one.
-
- (self) decrby(key = nil, decrement = nil) { ... }
Decrement the integer value of a key by the given number.
-
- (self) del(key = nil) { ... }
Delete a key.
-
- (self) del_many(keys = nil) { ... }
Delete many keys.
-
- (self) discard { ... }
Discard all commands issued after MULTI.
-
- (self) dump(key = nil) { ... }
Return a serialized version of the value stored at the specified key.
-
- (self) echo(message = nil) { ... }
Echo the given string.
-
- (self) eval(script = nil, keys = nil, args = nil) { ... }
Execute a Lua script server side.
-
- (self) evalsha(sha1 = nil, keys = nil, values = nil) { ... }
Execute a Lua script server side.
-
- (self) exec { ... }
Execute all commands issued after MULTI.
-
- (self) exists(key = nil) { ... }
Determine if a key exists.
-
- (self) expire(key = nil, seconds = nil) { ... }
Set a key's time to live in seconds.
-
- (self) expireat(key = nil, seconds = nil) { ... }
Set the expiration for a key as a UNIX timestamp.
-
- (self) flushall { ... }
Remove all keys from all databases.
-
- (self) flushdb { ... }
Remove all keys from the current database.
-
- (self) get(key = nil) { ... }
Get the value of a key.
-
- (self) get_binary(key = nil) { ... }
Get the value of a key - without decoding as utf-8.
-
- (self) getbit(key = nil, offset = nil) { ... }
Returns the bit value at offset in the string value stored at key.
-
- (self) getrange(key = nil, start = nil, _end = nil) { ... }
Get a substring of the string stored at a key.
-
- (self) getset(key = nil, value = nil) { ... }
Set the string value of a key and return its old value.
-
- (self) hdel(key = nil, field = nil) { ... }
Delete one or more hash fields.
-
- (self) hdel_many(key = nil, fields = nil) { ... }
Delete one or more hash fields.
-
- (self) hexists(key = nil, field = nil) { ... }
Determine if a hash field exists.
-
- (self) hget(key = nil, field = nil) { ... }
Get the value of a hash field.
-
- (self) hgetall(key = nil) { ... }
Get all the fields and values in a hash.
-
- (self) hincrby(key = nil, field = nil, increment = nil) { ... }
Increment the integer value of a hash field by the given number.
-
- (self) hincrbyfloat(key = nil, field = nil, increment = nil) { ... }
Increment the float value of a hash field by the given amount.
-
- (self) hkeys(key = nil) { ... }
Get all the fields in a hash.
-
- (self) hlen(key = nil) { ... }
Get the number of fields in a hash.
-
- (self) hmget(key = nil, fields = nil) { ... }
Get the values of all the given hash fields.
-
- (self) hmset(key = nil, values = nil) { ... }
Set multiple hash fields to multiple values.
-
- (self) hscan(key = nil, cursor = nil, options = nil) { ... }
Incrementally iterate hash fields and associated values.
-
- (self) hset(key = nil, field = nil, value = nil) { ... }
Set the string value of a hash field.
-
- (self) hsetnx(key = nil, field = nil, value = nil) { ... }
Set the value of a hash field, only if the field does not exist.
-
- (self) hvals(key = nil) { ... }
Get all the values in a hash.
-
- (self) incr(key = nil) { ... }
Increment the integer value of a key by one.
-
- (self) incrby(key = nil, increment = nil) { ... }
Increment the integer value of a key by the given amount.
-
- (self) incrbyfloat(key = nil, increment = nil) { ... }
Increment the float value of a key by the given amount.
-
- (self) info { ... }
Get information and statistics about the server.
-
- (self) info_section(section = nil) { ... }
Get information and statistics about the server.
-
- (self) keys(pattern = nil) { ... }
Find all keys matching the given pattern.
-
- (self) lastsave { ... }
Get the UNIX time stamp of the last successful save to disk.
-
- (self) lindex(key = nil, index = nil) { ... }
Get an element from a list by its index.
-
- (self) linsert(key = nil, option = nil, pivot = nil, value = nil) { ... }
Insert an element before or after another element in a list.
-
- (self) llen(key = nil) { ... }
Get the length of a list.
-
- (self) lpop(key = nil) { ... }
Remove and get the first element in a list.
-
- (self) lpush(key = nil, value = nil) { ... }
Prepend one value to a list.
-
- (self) lpush_many(key = nil, values = nil) { ... }
Prepend one or multiple values to a list.
-
- (self) lpushx(key = nil, value = nil) { ... }
Prepend a value to a list, only if the list exists.
-
- (self) lrange(key = nil, from = nil, to = nil) { ... }
Get a range of elements from a list.
-
- (self) lrem(key = nil, count = nil, value = nil) { ... }
Remove elements from a list.
-
- (self) lset(key = nil, index = nil, value = nil) { ... }
Set the value of an element in a list by its index.
-
- (self) ltrim(key = nil, from = nil, to = nil) { ... }
Trim a list to the specified range.
-
- (self) mget(key = nil) { ... }
Get the value of the given key.
-
- (self) mget_many(keys = nil) { ... }
Get the values of all the given keys.
-
- (self) migrate(host = nil, port = nil, key = nil, destdb = nil, timeout = nil, options = nil) { ... }
Atomically transfer a key from a Redis instance to another one.
-
- (self) monitor { ... }
Listen for all requests received by the server in real time.
-
- (self) move(key = nil, destdb = nil) { ... }
Move a key to another database.
-
- (self) mset(keyvals = nil) { ... }
Set multiple keys to multiple values.
-
- (self) msetnx(keyvals = nil) { ... }
Set multiple keys to multiple values, only if none of the keys exist.
-
- (self) multi { ... }
Mark the start of a transaction block.
-
- (self) object(key = nil, cmd = nil) { ... }
Inspect the internals of Redis objects.
-
- (self) persist(key = nil) { ... }
Remove the expiration from a key.
-
- (self) pexpire(key = nil, millis = nil) { ... }
Set a key's time to live in milliseconds.
-
- (self) pexpireat(key = nil, millis = nil) { ... }
Set the expiration for a key as a UNIX timestamp specified in milliseconds.
-
- (self) pfadd(key = nil, element = nil) { ... }
Adds the specified element to the specified HyperLogLog.
-
- (self) pfadd_many(key = nil, elements = nil) { ... }
Adds the specified elements to the specified HyperLogLog.
-
- (self) pfcount(key = nil) { ... }
Return the approximated cardinality of the set observed by the HyperLogLog at key.
-
- (self) pfcount_many(keys = nil) { ... }
Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s).
-
- (self) pfmerge(destkey = nil, keys = nil) { ... }
Merge N different HyperLogLogs into a single one.
-
- (self) ping { ... }
Ping the server.
-
- (self) psetex(key = nil, millis = nil, value = nil) { ... }
Set the value and expiration in milliseconds of a key.
-
- (self) psubscribe(pattern = nil) { ... }
Listen for messages published to channels matching the given pattern.
-
- (self) psubscribe_many(patterns = nil) { ... }
Listen for messages published to channels matching the given patterns.
-
- (self) pttl(key = nil) { ... }
Get the time to live for a key in milliseconds.
-
- (self) publish(channel = nil, message = nil) { ... }
Post a message to a channel.
-
- (self) pubsub_channels(pattern = nil) { ... }
Lists the currently active channels - only those matching the pattern.
-
- (self) pubsub_numpat { ... }
Returns the number of subscriptions to patterns (that are performed using the PSUBSCRIBE command).
-
- (self) pubsub_numsub(channels = nil) { ... }
Returns the number of subscribers (not counting clients subscribed to patterns) for the specified channels.
-
- (self) punsubscribe(patterns = nil) { ... }
Stop listening for messages posted to channels matching the given patterns.
-
- (self) randomkey { ... }
Return a random key from the keyspace.
-
- (self) rename(key = nil, newkey = nil) { ... }
Rename a key.
-
- (self) renamenx(key = nil, newkey = nil) { ... }
Rename a key, only if the new key does not exist.
-
- (self) restore(key = nil, millis = nil, serialized = nil) { ... }
Create a key using the provided serialized value, previously obtained using DUMP.
-
- (self) role { ... }
Return the role of the instance in the context of replication.
-
- (self) rpop(key = nil) { ... }
Remove and get the last element in a list.
-
- (self) rpoplpush(key = nil, destkey = nil) { ... }
Remove the last element in a list, append it to another list and return it.
-
- (self) rpush(key = nil, value = nil) { ... }
Append one or multiple values to a list.
-
- (self) rpush_many(key = nil, values = nil) { ... }
Append one or multiple values to a list.
-
- (self) rpushx(key = nil, value = nil) { ... }
Append a value to a list, only if the list exists.
-
- (self) sadd(key = nil, member = nil) { ... }
Add a member to a set.
-
- (self) sadd_many(key = nil, members = nil) { ... }
Add one or more members to a set.
-
- (self) save { ... }
Synchronously save the dataset to disk.
-
- (self) scan(cursor = nil, options = nil) { ... }
Incrementally iterate the keys space.
-
- (self) scard(key = nil) { ... }
Get the number of members in a set.
-
- (self) script_exists(script = nil) { ... }
Check existence of script in the script cache.
-
- (self) script_exists_many(scripts = nil) { ... }
Check existence of scripts in the script cache.
-
- (self) script_flush { ... }
Remove all the scripts from the script cache.
-
- (self) script_kill { ... }
Kill the script currently in execution.
-
- (self) script_load(script = nil) { ... }
Load the specified Lua script into the script cache.
-
- (self) sdiff(key = nil, cmpkeys = nil) { ... }
Subtract multiple sets.
-
- (self) sdiffstore(destkey = nil, key = nil, cmpkeys = nil) { ... }
Subtract multiple sets and store the resulting set in a key.
-
- (self) select(dbindex = nil) { ... }
Change the selected database for the current connection.
-
- (self) set(key = nil, value = nil) { ... }
Set the string value of a key.
-
- (self) set_binary(key = nil, value = nil) { ... }
Set the binary string value of a key - without encoding as utf-8.
-
- (self) set_with_options(key = nil, value = nil, options = nil) { ... }
Set the string value of a key.
-
- (self) setbit(key = nil, offset = nil, bit = nil) { ... }
Sets or clears the bit at offset in the string value stored at key.
-
- (self) setex(key = nil, seconds = nil, value = nil) { ... }
Set the value and expiration of a key.
-
- (self) setnx(key = nil, value = nil) { ... }
Set the value of a key, only if the key does not exist.
-
- (self) setrange(key = nil, offset = nil, value = nil) { ... }
Overwrite part of a string at key starting at the specified offset.
-
- (self) sinter(keys = nil) { ... }
Intersect multiple sets.
-
- (self) sinterstore(destkey = nil, keys = nil) { ... }
Intersect multiple sets and store the resulting set in a key.
-
- (self) sismember(key = nil, member = nil) { ... }
Determine if a given value is a member of a set.
-
- (self) slaveof(host = nil, port = nil) { ... }
Make the server a slave of another instance.
-
- (self) slaveof_noone { ... }
Make this server a master.
-
- (self) slowlog_get(limit = nil) { ... }
Read the Redis slow queries log.
-
- (self) slowlog_len { ... }
Get the length of the Redis slow queries log.
-
- (self) slowlog_reset { ... }
Reset the Redis slow queries log.
-
- (self) smembers(key = nil) { ... }
Get all the members in a set.
-
- (self) smove(key = nil, destkey = nil, member = nil) { ... }
Move a member from one set to another.
-
- (self) sort(key = nil, options = nil) { ... }
Sort the elements in a list, set or sorted set.
-
- (self) spop(key = nil) { ... }
Remove and return a random member from a set.
-
- (self) spop_many(key = nil, count = nil) { ... }
Remove and return random members from a set.
-
- (self) srandmember(key = nil) { ... }
Get one or multiple random members from a set.
-
- (self) srandmember_count(key = nil, count = nil) { ... }
Get one or multiple random members from a set.
-
- (self) srem(key = nil, member = nil) { ... }
Remove one member from a set.
-
- (self) srem_many(key = nil, members = nil) { ... }
Remove one or more members from a set.
-
- (self) sscan(key = nil, cursor = nil, options = nil) { ... }
Incrementally iterate Set elements.
-
- (self) strlen(key = nil) { ... }
Get the length of the value stored in a key.
-
- (self) subscribe(channel = nil) { ... }
Listen for messages published to the given channels.
-
- (self) subscribe_many(channels = nil) { ... }
Listen for messages published to the given channels.
-
- (self) sunion(keys = nil) { ... }
Add multiple sets.
-
- (self) sunionstore(destkey = nil, keys = nil) { ... }
Add multiple sets and store the resulting set in a key.
-
- (self) sync { ... }
Internal command used for replication.
-
- (self) time { ... }
Return the current server time.
-
- (self) ttl(key = nil) { ... }
Get the time to live for a key.
-
- (self) type(key = nil) { ... }
Determine the type stored at key.
-
- (self) unsubscribe(channels = nil) { ... }
Stop listening for messages posted to the given channels.
-
- (self) unwatch { ... }
Forget about all watched keys.
-
- (self) wait(numSlaves = nil, timeout = nil) { ... }
Wait for the synchronous replication of all the write commands sent in the context of the current connection.
-
- (self) watch(key = nil) { ... }
Watch the given keys to determine execution of the MULTI/EXEC block.
-
- (self) watch_many(keys = nil) { ... }
Watch the given keys to determine execution of the MULTI/EXEC block.
-
- (self) zadd(key = nil, score = nil, member = nil) { ... }
Add one or more members to a sorted set, or update its score if it already exists.
-
- (self) zadd_many(key = nil, members = nil) { ... }
Add one or more members to a sorted set, or update its score if it already exists.
-
- (self) zcard(key = nil) { ... }
Get the number of members in a sorted set.
-
- (self) zcount(key = nil, min = nil, max = nil) { ... }
Count the members in a sorted set with scores within the given values.
-
- (self) zincrby(key = nil, increment = nil, member = nil) { ... }
Increment the score of a member in a sorted set.
-
- (self) zinterstore(destkey = nil, sets = nil, options = nil) { ... }
Intersect multiple sorted sets and store the resulting sorted set in a new key.
-
- (self) zinterstore_weighed(destkey = nil, sets = nil, options = nil) { ... }
Intersect multiple sorted sets and store the resulting sorted set in a new key using weights for scoring.
-
- (self) zlexcount(key = nil, min = nil, max = nil) { ... }
Count the number of members in a sorted set between a given lexicographical range.
-
- (self) zrange(key = nil, start = nil, stop = nil) { ... }
Return a range of members in a sorted set, by index.
-
- (self) zrange_with_options(key = nil, start = nil, stop = nil, options = nil) { ... }
Return a range of members in a sorted set, by index.
-
- (self) zrangebylex(key = nil, min = nil, max = nil, options = nil) { ... }
Return a range of members in a sorted set, by lexicographical range.
-
- (self) zrangebyscore(key = nil, min = nil, max = nil, options = nil) { ... }
Return a range of members in a sorted set, by score.
-
- (self) zrank(key = nil, member = nil) { ... }
Determine the index of a member in a sorted set.
-
- (self) zrem(key = nil, member = nil) { ... }
Remove one member from a sorted set.
-
- (self) zrem_many(key = nil, members = nil) { ... }
Remove one or more members from a sorted set.
-
- (self) zremrangebylex(key = nil, min = nil, max = nil) { ... }
Remove all members in a sorted set between the given lexicographical range.
-
- (self) zremrangebyrank(key = nil, start = nil, stop = nil) { ... }
Remove all members in a sorted set within the given indexes.
-
- (self) zremrangebyscore(key = nil, min = nil, max = nil) { ... }
Remove all members in a sorted set within the given scores.
-
- (self) zrevrange(key = nil, start = nil, stop = nil, options = nil) { ... }
Return a range of members in a sorted set, by index, with scores ordered from high to low.
-
- (self) zrevrangebylex(key = nil, max = nil, min = nil, options = nil) { ... }
Return a range of members in a sorted set, by score, between the given lexicographical range with scores ordered from high to low.
-
- (self) zrevrangebyscore(key = nil, max = nil, min = nil, options = nil) { ... }
Return a range of members in a sorted set, by score, with scores ordered from high to low.
-
- (self) zrevrank(key = nil, member = nil) { ... }
Determine the index of a member in a sorted set, with scores ordered from high to low.
-
- (self) zscan(key = nil, cursor = nil, options = nil) { ... }
Incrementally iterate sorted sets elements and associated scores.
-
- (self) zscore(key = nil, member = nil) { ... }
Get the score associated with the given member in a sorted set.
-
- (self) zunionstore(destkey = nil, sets = nil, options = nil) { ... }
Add multiple sorted sets and store the resulting sorted set in a new key.
-
- (self) zunionstore_weighed(key = nil, sets = nil, options = nil) { ... }
Add multiple sorted sets using weights, and store the resulting sorted set in a new key.
Class Method Details
+ (::VertxRedis::RedisClient) create(vertx = nil, config = nil)
19 20 21 22 23 24 25 26 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 19 def self.create(vertx=nil,config=nil) if vertx.class.method_defined?(:j_del) && !block_given? && config == nil return ::Vertx::Util::Utils.safe_create(Java::IoVertxRedis::RedisClient.java_method(:create, [Java::IoVertxCore::Vertx.java_class]).call(vertx.j_del),::VertxRedis::RedisClient) elsif vertx.class.method_defined?(:j_del) && config.class == Hash && !block_given? return ::Vertx::Util::Utils.safe_create(Java::IoVertxRedis::RedisClient.java_method(:create, [Java::IoVertxCore::Vertx.java_class,Java::IoVertxRedis::RedisOptions.java_class]).call(vertx.j_del,Java::IoVertxRedis::RedisOptions.new(::Vertx::Util::Utils.to_json_object(config))),::VertxRedis::RedisClient) end raise ArgumentError, "Invalid arguments when calling create(vertx,config)" end |
Instance Method Details
- (self) append(key = nil, value = nil) { ... }
Append a value to a key
41 42 43 44 45 46 47 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 41 def append(key=nil,value=nil) if key.class == String && value.class == String && block_given? @j_del.java_method(:append, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling append(key,value)" end |
- (self) auth(password = nil) { ... }
Authenticate to the server
52 53 54 55 56 57 58 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 52 def auth(password=nil) if password.class == String && block_given? @j_del.java_method(:auth, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(password,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling auth(password)" end |
- (self) bgrewriteaof { ... }
Asynchronously rewrite the append-only file
62 63 64 65 66 67 68 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 62 def bgrewriteaof if block_given? @j_del.java_method(:bgrewriteaof, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling bgrewriteaof()" end |
- (self) bgsave { ... }
Asynchronously save the dataset to disk
72 73 74 75 76 77 78 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 72 def bgsave if block_given? @j_del.java_method(:bgsave, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling bgsave()" end |
- (self) bitcount(key = nil) { ... }
Count set bits in a string
83 84 85 86 87 88 89 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 83 def bitcount(key=nil) if key.class == String && block_given? @j_del.java_method(:bitcount, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling bitcount(key)" end |
- (self) bitcount_range(key = nil, start = nil, _end = nil) { ... }
Count set bits in a string
96 97 98 99 100 101 102 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 96 def bitcount_range(key=nil,start=nil,_end=nil) if key.class == String && start.class == Fixnum && _end.class == Fixnum && block_given? @j_del.java_method(:bitcountRange, [Java::java.lang.String.java_class,Java::long.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,start,_end,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling bitcount_range(key,start,_end)" end |
- (self) bitop(operation = nil, destkey = nil, keys = nil) { ... }
Perform bitwise operations between strings
109 110 111 112 113 114 115 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 109 def bitop(operation=nil,destkey=nil,keys=nil) if operation.class == Symbol && destkey.class == String && keys.class == Array && block_given? @j_del.java_method(:bitop, [Java::IoVertxRedisOp::BitOperation.java_class,Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(Java::IoVertxRedisOp::BitOperation.valueOf(operation),destkey,keys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling bitop(operation,destkey,keys)" end |
- (self) bitpos(key = nil, bit = nil) { ... }
Find first bit set or clear in a string
121 122 123 124 125 126 127 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 121 def bitpos(key=nil,bit=nil) if key.class == String && bit.class == Fixnum && block_given? @j_del.java_method(:bitpos, [Java::java.lang.String.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,bit,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling bitpos(key,bit)" end |
- (self) bitpos_from(key = nil, bit = nil, start = nil) { ... }
Find first bit set or clear in a string
See also bitposRange() method, which takes start, and stop offset.
136 137 138 139 140 141 142 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 136 def bitpos_from(key=nil,bit=nil,start=nil) if key.class == String && bit.class == Fixnum && start.class == Fixnum && block_given? @j_del.java_method(:bitposFrom, [Java::java.lang.String.java_class,Java::int.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,bit,start,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling bitpos_from(key,bit,start)" end |
- (self) bitpos_range(key = nil, bit = nil, start = nil, stop = nil) { ... }
Find first bit set or clear in a string
Note: when both start, and stop offsets are specified,
behaviour is slightly different than if only start is specified
153 154 155 156 157 158 159 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 153 def bitpos_range(key=nil,bit=nil,start=nil,stop=nil) if key.class == String && bit.class == Fixnum && start.class == Fixnum && stop.class == Fixnum && block_given? @j_del.java_method(:bitposRange, [Java::java.lang.String.java_class,Java::int.java_class,Java::int.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,bit,start,stop,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling bitpos_range(key,bit,start,stop)" end |
- (self) blpop(key = nil, seconds = nil) { ... }
Remove and get the first element in a list, or block until one is available
165 166 167 168 169 170 171 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 165 def blpop(key=nil,seconds=nil) if key.class == String && seconds.class == Fixnum && block_given? @j_del.java_method(:blpop, [Java::java.lang.String.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,seconds,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling blpop(key,seconds)" end |
- (self) blpop_many(keys = nil, seconds = nil) { ... }
Remove and get the first element in any of the lists, or block until one is available
177 178 179 180 181 182 183 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 177 def blpop_many(keys=nil,seconds=nil) if keys.class == Array && seconds.class == Fixnum && block_given? @j_del.java_method(:blpopMany, [Java::JavaUtil::List.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(keys.map { |element| element },seconds,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling blpop_many(keys,seconds)" end |
- (self) brpop(key = nil, seconds = nil) { ... }
Remove and get the last element in a list, or block until one is available
189 190 191 192 193 194 195 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 189 def brpop(key=nil,seconds=nil) if key.class == String && seconds.class == Fixnum && block_given? @j_del.java_method(:brpop, [Java::java.lang.String.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,seconds,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling brpop(key,seconds)" end |
- (self) brpop_many(keys = nil, seconds = nil) { ... }
Remove and get the last element in any of the lists, or block until one is available
201 202 203 204 205 206 207 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 201 def brpop_many(keys=nil,seconds=nil) if keys.class == Array && seconds.class == Fixnum && block_given? @j_del.java_method(:brpopMany, [Java::JavaUtil::List.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(keys.map { |element| element },seconds,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling brpop_many(keys,seconds)" end |
- (self) brpoplpush(key = nil, destkey = nil, seconds = nil) { ... }
Pop a value from a list, push it to another list and return it; or block until one is available
214 215 216 217 218 219 220 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 214 def brpoplpush(key=nil,destkey=nil,seconds=nil) if key.class == String && destkey.class == String && seconds.class == Fixnum && block_given? @j_del.java_method(:brpoplpush, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,destkey,seconds,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling brpoplpush(key,destkey,seconds)" end |
- (self) client_getname { ... }
Get the current connection name
245 246 247 248 249 250 251 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 245 def client_getname if block_given? @j_del.java_method(:clientGetname, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling client_getname()" end |
- (self) client_kill(filter = nil) { ... }
Kill the connection of a client
225 226 227 228 229 230 231 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 225 def client_kill(filter=nil) if filter.class == Hash && block_given? @j_del.java_method(:clientKill, [Java::IoVertxRedisOp::KillFilter.java_class,Java::IoVertxCore::Handler.java_class]).call(Java::IoVertxRedisOp::KillFilter.new(::Vertx::Util::Utils.to_json_object(filter)),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling client_kill(filter)" end |
- (self) client_list { ... }
Get the list of client connections
235 236 237 238 239 240 241 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 235 def client_list if block_given? @j_del.java_method(:clientList, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling client_list()" end |
- (self) client_pause(millis = nil) { ... }
Stop processing commands from clients for some time
256 257 258 259 260 261 262 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 256 def client_pause(millis=nil) if millis.class == Fixnum && block_given? @j_del.java_method(:clientPause, [Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(millis,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling client_pause(millis)" end |
- (self) client_setname(name = nil) { ... }
Set the current connection name
267 268 269 270 271 272 273 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 267 def client_setname(name=nil) if name.class == String && block_given? @j_del.java_method(:clientSetname, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(name,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling client_setname(name)" end |
- (void) close { ... }
This method returns an undefined value.
Close the client - when it is fully closed the handler will be called.
30 31 32 33 34 35 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 30 def close if block_given? return @j_del.java_method(:close, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) end raise ArgumentError, "Invalid arguments when calling close()" end |
- (self) cluster_addslots(slots = nil) { ... }
Assign new hash slots to receiving node.
278 279 280 281 282 283 284 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 278 def cluster_addslots(slots=nil) if slots.class == Array && block_given? @j_del.java_method(:clusterAddslots, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(slots.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_addslots(slots)" end |
- (self) cluster_count_failure_reports(nodeId = nil) { ... }
Return the number of failure reports active for a given node.
289 290 291 292 293 294 295 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 289 def cluster_count_failure_reports(nodeId=nil) if nodeId.class == String && block_given? @j_del.java_method(:clusterCountFailureReports, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(nodeId,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_count_failure_reports(nodeId)" end |
- (self) cluster_countkeysinslot(slot = nil) { ... }
Return the number of local keys in the specified hash slot.
300 301 302 303 304 305 306 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 300 def cluster_countkeysinslot(slot=nil) if slot.class == Fixnum && block_given? @j_del.java_method(:clusterCountkeysinslot, [Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(slot,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_countkeysinslot(slot)" end |
- (self) cluster_delslots(slot = nil) { ... }
Set hash slots as unbound in receiving node.
311 312 313 314 315 316 317 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 311 def cluster_delslots(slot=nil) if slot.class == Fixnum && block_given? @j_del.java_method(:clusterDelslots, [Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(slot,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_delslots(slot)" end |
- (self) cluster_delslots_many(slots = nil) { ... }
Set hash slots as unbound in receiving node.
322 323 324 325 326 327 328 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 322 def cluster_delslots_many(slots=nil) if slots.class == Array && block_given? @j_del.java_method(:clusterDelslotsMany, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(slots.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_delslots_many(slots)" end |
- (self) cluster_fail_over_with_options(options = nil) { ... }
Forces a slave to perform a manual failover of its master.
343 344 345 346 347 348 349 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 343 def (=nil) if .class == Symbol && block_given? @j_del.java_method(:clusterFailOverWithOptions, [Java::IoVertxRedisOp::FailoverOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(Java::IoVertxRedisOp::FailoverOptions.valueOf(),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_fail_over_with_options(options)" end |
- (self) cluster_failover { ... }
Forces a slave to perform a manual failover of its master.
332 333 334 335 336 337 338 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 332 def cluster_failover if block_given? @j_del.java_method(:clusterFailover, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_failover()" end |
- (self) cluster_forget(nodeId = nil) { ... }
Remove a node from the nodes table.
354 355 356 357 358 359 360 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 354 def cluster_forget(nodeId=nil) if nodeId.class == String && block_given? @j_del.java_method(:clusterForget, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(nodeId,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_forget(nodeId)" end |
- (self) cluster_getkeysinslot(slot = nil, count = nil) { ... }
Return local key names in the specified hash slot.
366 367 368 369 370 371 372 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 366 def cluster_getkeysinslot(slot=nil,count=nil) if slot.class == Fixnum && count.class == Fixnum && block_given? @j_del.java_method(:clusterGetkeysinslot, [Java::long.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(slot,count,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_getkeysinslot(slot,count)" end |
- (self) cluster_info { ... }
Provides info about Redis Cluster node state.
376 377 378 379 380 381 382 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 376 def cluster_info if block_given? @j_del.java_method(:clusterInfo, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_info()" end |
- (self) cluster_keyslot(key = nil) { ... }
Returns the hash slot of the specified key.
387 388 389 390 391 392 393 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 387 def cluster_keyslot(key=nil) if key.class == String && block_given? @j_del.java_method(:clusterKeyslot, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_keyslot(key)" end |
- (self) cluster_meet(ip = nil, port = nil) { ... }
Force a node cluster to handshake with another node.
399 400 401 402 403 404 405 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 399 def cluster_meet(ip=nil,port=nil) if ip.class == String && port.class == Fixnum && block_given? @j_del.java_method(:clusterMeet, [Java::java.lang.String.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(ip,port,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_meet(ip,port)" end |
- (self) cluster_nodes { ... }
Get Cluster config for the node.
409 410 411 412 413 414 415 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 409 def cluster_nodes if block_given? @j_del.java_method(:clusterNodes, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_nodes()" end |
- (self) cluster_replicate(nodeId = nil) { ... }
Reconfigure a node as a slave of the specified master node.
420 421 422 423 424 425 426 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 420 def cluster_replicate(nodeId=nil) if nodeId.class == String && block_given? @j_del.java_method(:clusterReplicate, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(nodeId,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_replicate(nodeId)" end |
- (self) cluster_reset { ... }
Reset a Redis Cluster node.
430 431 432 433 434 435 436 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 430 def cluster_reset if block_given? @j_del.java_method(:clusterReset, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_reset()" end |
- (self) cluster_reset_with_options(options = nil) { ... }
Reset a Redis Cluster node.
441 442 443 444 445 446 447 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 441 def (=nil) if .class == Symbol && block_given? @j_del.java_method(:clusterResetWithOptions, [Java::IoVertxRedisOp::ResetOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(Java::IoVertxRedisOp::ResetOptions.valueOf(),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_reset_with_options(options)" end |
- (self) cluster_saveconfig { ... }
Forces the node to save cluster state on disk.
451 452 453 454 455 456 457 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 451 def cluster_saveconfig if block_given? @j_del.java_method(:clusterSaveconfig, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_saveconfig()" end |
- (self) cluster_set_config_epoch(epoch = nil) { ... }
Set the configuration epoch in a new node.
462 463 464 465 466 467 468 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 462 def cluster_set_config_epoch(epoch=nil) if epoch.class == Fixnum && block_given? @j_del.java_method(:clusterSetConfigEpoch, [Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(epoch,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_set_config_epoch(epoch)" end |
- (self) cluster_setslot(slot = nil, subcommand = nil) { ... }
Bind an hash slot to a specific node.
474 475 476 477 478 479 480 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 474 def cluster_setslot(slot=nil,subcommand=nil) if slot.class == Fixnum && subcommand.class == Symbol && block_given? @j_del.java_method(:clusterSetslot, [Java::long.java_class,Java::IoVertxRedisOp::SlotCmd.java_class,Java::IoVertxCore::Handler.java_class]).call(slot,Java::IoVertxRedisOp::SlotCmd.valueOf(subcommand),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_setslot(slot,subcommand)" end |
- (self) cluster_setslot_with_node(slot = nil, subcommand = nil, nodeId = nil) { ... }
Bind an hash slot to a specific node.
487 488 489 490 491 492 493 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 487 def cluster_setslot_with_node(slot=nil,subcommand=nil,nodeId=nil) if slot.class == Fixnum && subcommand.class == Symbol && nodeId.class == String && block_given? @j_del.java_method(:clusterSetslotWithNode, [Java::long.java_class,Java::IoVertxRedisOp::SlotCmd.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(slot,Java::IoVertxRedisOp::SlotCmd.valueOf(subcommand),nodeId,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_setslot_with_node(slot,subcommand,nodeId)" end |
- (self) cluster_slaves(nodeId = nil) { ... }
List slave nodes of the specified master node.
498 499 500 501 502 503 504 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 498 def cluster_slaves(nodeId=nil) if nodeId.class == String && block_given? @j_del.java_method(:clusterSlaves, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(nodeId,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_slaves(nodeId)" end |
- (self) cluster_slots { ... }
Get array of Cluster slot to node mappings
508 509 510 511 512 513 514 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 508 def cluster_slots if block_given? @j_del.java_method(:clusterSlots, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_slots()" end |
- (self) command { ... }
Get array of Redis command details
518 519 520 521 522 523 524 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 518 def command if block_given? @j_del.java_method(:command, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling command()" end |
- (self) command_count { ... }
Get total number of Redis commands
528 529 530 531 532 533 534 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 528 def command_count if block_given? @j_del.java_method(:commandCount, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling command_count()" end |
- (self) command_getkeys { ... }
Extract keys given a full Redis command
538 539 540 541 542 543 544 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 538 def command_getkeys if block_given? @j_del.java_method(:commandGetkeys, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling command_getkeys()" end |
- (self) command_info(commands = nil) { ... }
Get array of specific Redis command details
549 550 551 552 553 554 555 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 549 def command_info(commands=nil) if commands.class == Array && block_given? @j_del.java_method(:commandInfo, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(commands.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling command_info(commands)" end |
- (self) config_get(parameter = nil) { ... }
Get the value of a configuration parameter
560 561 562 563 564 565 566 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 560 def config_get(parameter=nil) if parameter.class == String && block_given? @j_del.java_method(:configGet, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(parameter,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling config_get(parameter)" end |
- (self) config_resetstat { ... }
Reset the stats returned by INFO
592 593 594 595 596 597 598 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 592 def config_resetstat if block_given? @j_del.java_method(:configResetstat, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling config_resetstat()" end |
- (self) config_rewrite { ... }
Rewrite the configuration file with the in memory configuration
570 571 572 573 574 575 576 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 570 def config_rewrite if block_given? @j_del.java_method(:configRewrite, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling config_rewrite()" end |
- (self) config_set(parameter = nil, value = nil) { ... }
Set a configuration parameter to the given value
582 583 584 585 586 587 588 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 582 def config_set(parameter=nil,value=nil) if parameter.class == String && value.class == String && block_given? @j_del.java_method(:configSet, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(parameter,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling config_set(parameter,value)" end |
- (self) dbsize { ... }
Return the number of keys in the selected database
602 603 604 605 606 607 608 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 602 def dbsize if block_given? @j_del.java_method(:dbsize, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling dbsize()" end |
- (self) debug_object(key = nil) { ... }
Get debugging information about a key
613 614 615 616 617 618 619 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 613 def debug_object(key=nil) if key.class == String && block_given? @j_del.java_method(:debugObject, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling debug_object(key)" end |
- (self) debug_segfault { ... }
Make the server crash
623 624 625 626 627 628 629 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 623 def debug_segfault if block_given? @j_del.java_method(:debugSegfault, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling debug_segfault()" end |
- (self) decr(key = nil) { ... }
Decrement the integer value of a key by one
634 635 636 637 638 639 640 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 634 def decr(key=nil) if key.class == String && block_given? @j_del.java_method(:decr, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling decr(key)" end |
- (self) decrby(key = nil, decrement = nil) { ... }
Decrement the integer value of a key by the given number
646 647 648 649 650 651 652 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 646 def decrby(key=nil,decrement=nil) if key.class == String && decrement.class == Fixnum && block_given? @j_del.java_method(:decrby, [Java::java.lang.String.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,decrement,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling decrby(key,decrement)" end |
- (self) del(key = nil) { ... }
Delete a key
657 658 659 660 661 662 663 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 657 def del(key=nil) if key.class == String && block_given? @j_del.java_method(:del, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling del(key)" end |
- (self) del_many(keys = nil) { ... }
Delete many keys
668 669 670 671 672 673 674 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 668 def del_many(keys=nil) if keys.class == Array && block_given? @j_del.java_method(:delMany, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(keys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling del_many(keys)" end |
- (self) discard { ... }
Discard all commands issued after MULTI
678 679 680 681 682 683 684 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 678 def discard if block_given? @j_del.java_method(:discard, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling discard()" end |
- (self) dump(key = nil) { ... }
Return a serialized version of the value stored at the specified key.
689 690 691 692 693 694 695 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 689 def dump(key=nil) if key.class == String && block_given? @j_del.java_method(:dump, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling dump(key)" end |
- (self) echo(message = nil) { ... }
Echo the given string
700 701 702 703 704 705 706 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 700 def echo(=nil) if .class == String && block_given? @j_del.java_method(:echo, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling echo(message)" end |
- (self) eval(script = nil, keys = nil, args = nil) { ... }
Execute a Lua script server side. Due to the dynamic nature of this command any response type could be returned
for This reason and to ensure type safety the reply is always guaranteed to be a JsonArray.
When a reply if for example a String the handler will be called with a JsonArray with a single element containing
the String.
717 718 719 720 721 722 723 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 717 def eval(script=nil,keys=nil,args=nil) if script.class == String && keys.class == Array && args.class == Array && block_given? @j_del.java_method(:eval, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(script,keys.map { |element| element },args.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling eval(script,keys,args)" end |
- (self) evalsha(sha1 = nil, keys = nil, values = nil) { ... }
Execute a Lua script server side. Due to the dynamic nature of this command any response type could be returned
for This reason and to ensure type safety the reply is always guaranteed to be a JsonArray.
When a reply if for example a String the handler will be called with a JsonArray with a single element containing
the String.
734 735 736 737 738 739 740 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 734 def evalsha(sha1=nil,keys=nil,values=nil) if sha1.class == String && keys.class == Array && values.class == Array && block_given? @j_del.java_method(:evalsha, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(sha1,keys.map { |element| element },values.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling evalsha(sha1,keys,values)" end |
- (self) exec { ... }
Execute all commands issued after MULTI
744 745 746 747 748 749 750 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 744 def exec if block_given? @j_del.java_method(:exec, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling exec()" end |
- (self) exists(key = nil) { ... }
Determine if a key exists
755 756 757 758 759 760 761 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 755 def exists(key=nil) if key.class == String && block_given? @j_del.java_method(:exists, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling exists(key)" end |
- (self) expire(key = nil, seconds = nil) { ... }
Set a key's time to live in seconds
767 768 769 770 771 772 773 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 767 def expire(key=nil,seconds=nil) if key.class == String && seconds.class == Fixnum && block_given? @j_del.java_method(:expire, [Java::java.lang.String.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,seconds,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling expire(key,seconds)" end |
- (self) expireat(key = nil, seconds = nil) { ... }
Set the expiration for a key as a UNIX timestamp
779 780 781 782 783 784 785 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 779 def expireat(key=nil,seconds=nil) if key.class == String && seconds.class == Fixnum && block_given? @j_del.java_method(:expireat, [Java::java.lang.String.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,seconds,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling expireat(key,seconds)" end |
- (self) flushall { ... }
Remove all keys from all databases
789 790 791 792 793 794 795 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 789 def flushall if block_given? @j_del.java_method(:flushall, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling flushall()" end |
- (self) flushdb { ... }
Remove all keys from the current database
799 800 801 802 803 804 805 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 799 def flushdb if block_given? @j_del.java_method(:flushdb, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling flushdb()" end |
- (self) get(key = nil) { ... }
Get the value of a key
810 811 812 813 814 815 816 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 810 def get(key=nil) if key.class == String && block_given? @j_del.java_method(:get, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling get(key)" end |
- (self) get_binary(key = nil) { ... }
Get the value of a key - without decoding as utf-8
821 822 823 824 825 826 827 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 821 def get_binary(key=nil) if key.class == String && block_given? @j_del.java_method(:getBinary, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling get_binary(key)" end |
- (self) getbit(key = nil, offset = nil) { ... }
Returns the bit value at offset in the string value stored at key
833 834 835 836 837 838 839 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 833 def getbit(key=nil,offset=nil) if key.class == String && offset.class == Fixnum && block_given? @j_del.java_method(:getbit, [Java::java.lang.String.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,offset,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling getbit(key,offset)" end |
- (self) getrange(key = nil, start = nil, _end = nil) { ... }
Get a substring of the string stored at a key
846 847 848 849 850 851 852 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 846 def getrange(key=nil,start=nil,_end=nil) if key.class == String && start.class == Fixnum && _end.class == Fixnum && block_given? @j_del.java_method(:getrange, [Java::java.lang.String.java_class,Java::long.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,start,_end,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling getrange(key,start,_end)" end |
- (self) getset(key = nil, value = nil) { ... }
Set the string value of a key and return its old value
858 859 860 861 862 863 864 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 858 def getset(key=nil,value=nil) if key.class == String && value.class == String && block_given? @j_del.java_method(:getset, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling getset(key,value)" end |
- (self) hdel(key = nil, field = nil) { ... }
Delete one or more hash fields
870 871 872 873 874 875 876 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 870 def hdel(key=nil,field=nil) if key.class == String && field.class == String && block_given? @j_del.java_method(:hdel, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,field,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hdel(key,field)" end |
- (self) hdel_many(key = nil, fields = nil) { ... }
Delete one or more hash fields
882 883 884 885 886 887 888 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 882 def hdel_many(key=nil,fields=nil) if key.class == String && fields.class == Array && block_given? @j_del.java_method(:hdelMany, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(key,fields.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hdel_many(key,fields)" end |
- (self) hexists(key = nil, field = nil) { ... }
Determine if a hash field exists
894 895 896 897 898 899 900 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 894 def hexists(key=nil,field=nil) if key.class == String && field.class == String && block_given? @j_del.java_method(:hexists, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,field,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hexists(key,field)" end |
- (self) hget(key = nil, field = nil) { ... }
Get the value of a hash field
906 907 908 909 910 911 912 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 906 def hget(key=nil,field=nil) if key.class == String && field.class == String && block_given? @j_del.java_method(:hget, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,field,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hget(key,field)" end |
- (self) hgetall(key = nil) { ... }
Get all the fields and values in a hash
917 918 919 920 921 922 923 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 917 def hgetall(key=nil) if key.class == String && block_given? @j_del.java_method(:hgetall, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hgetall(key)" end |
- (self) hincrby(key = nil, field = nil, increment = nil) { ... }
Increment the integer value of a hash field by the given number
930 931 932 933 934 935 936 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 930 def hincrby(key=nil,field=nil,increment=nil) if key.class == String && field.class == String && increment.class == Fixnum && block_given? @j_del.java_method(:hincrby, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,field,increment,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hincrby(key,field,increment)" end |
- (self) hincrbyfloat(key = nil, field = nil, increment = nil) { ... }
Increment the float value of a hash field by the given amount
943 944 945 946 947 948 949 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 943 def hincrbyfloat(key=nil,field=nil,increment=nil) if key.class == String && field.class == String && increment.class == Float && block_given? @j_del.java_method(:hincrbyfloat, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::double.java_class,Java::IoVertxCore::Handler.java_class]).call(key,field,::Vertx::Util::Utils.to_double(increment),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hincrbyfloat(key,field,increment)" end |
- (self) hkeys(key = nil) { ... }
Get all the fields in a hash
954 955 956 957 958 959 960 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 954 def hkeys(key=nil) if key.class == String && block_given? @j_del.java_method(:hkeys, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hkeys(key)" end |
- (self) hlen(key = nil) { ... }
Get the number of fields in a hash
965 966 967 968 969 970 971 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 965 def hlen(key=nil) if key.class == String && block_given? @j_del.java_method(:hlen, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hlen(key)" end |
- (self) hmget(key = nil, fields = nil) { ... }
Get the values of all the given hash fields
977 978 979 980 981 982 983 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 977 def hmget(key=nil,fields=nil) if key.class == String && fields.class == Array && block_given? @j_del.java_method(:hmget, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(key,fields.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hmget(key,fields)" end |
- (self) hmset(key = nil, values = nil) { ... }
Set multiple hash fields to multiple values
989 990 991 992 993 994 995 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 989 def hmset(key=nil,values=nil) if key.class == String && values.class == Hash && block_given? @j_del.java_method(:hmset, [Java::java.lang.String.java_class,Java::IoVertxCoreJson::JsonObject.java_class,Java::IoVertxCore::Handler.java_class]).call(key,::Vertx::Util::Utils.to_json_object(values),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hmset(key,values)" end |
- (self) hscan(key = nil, cursor = nil, options = nil) { ... }
Incrementally iterate hash fields and associated values
2593 2594 2595 2596 2597 2598 2599 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2593 def hscan(key=nil,cursor=nil,=nil) if key.class == String && cursor.class == String && .class == Hash && block_given? @j_del.java_method(:hscan, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxRedisOp::ScanOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,cursor,Java::IoVertxRedisOp::ScanOptions.new(::Vertx::Util::Utils.to_json_object()),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hscan(key,cursor,options)" end |
- (self) hset(key = nil, field = nil, value = nil) { ... }
Set the string value of a hash field
1002 1003 1004 1005 1006 1007 1008 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1002 def hset(key=nil,field=nil,value=nil) if key.class == String && field.class == String && value.class == String && block_given? @j_del.java_method(:hset, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,field,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hset(key,field,value)" end |
- (self) hsetnx(key = nil, field = nil, value = nil) { ... }
Set the value of a hash field, only if the field does not exist
1015 1016 1017 1018 1019 1020 1021 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1015 def hsetnx(key=nil,field=nil,value=nil) if key.class == String && field.class == String && value.class == String && block_given? @j_del.java_method(:hsetnx, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,field,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hsetnx(key,field,value)" end |
- (self) hvals(key = nil) { ... }
Get all the values in a hash
1026 1027 1028 1029 1030 1031 1032 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1026 def hvals(key=nil) if key.class == String && block_given? @j_del.java_method(:hvals, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling hvals(key)" end |
- (self) incr(key = nil) { ... }
Increment the integer value of a key by one
1037 1038 1039 1040 1041 1042 1043 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1037 def incr(key=nil) if key.class == String && block_given? @j_del.java_method(:incr, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling incr(key)" end |
- (self) incrby(key = nil, increment = nil) { ... }
Increment the integer value of a key by the given amount
1049 1050 1051 1052 1053 1054 1055 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1049 def incrby(key=nil,increment=nil) if key.class == String && increment.class == Fixnum && block_given? @j_del.java_method(:incrby, [Java::java.lang.String.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,increment,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling incrby(key,increment)" end |
- (self) incrbyfloat(key = nil, increment = nil) { ... }
Increment the float value of a key by the given amount
1061 1062 1063 1064 1065 1066 1067 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1061 def incrbyfloat(key=nil,increment=nil) if key.class == String && increment.class == Float && block_given? @j_del.java_method(:incrbyfloat, [Java::java.lang.String.java_class,Java::double.java_class,Java::IoVertxCore::Handler.java_class]).call(key,::Vertx::Util::Utils.to_double(increment),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling incrbyfloat(key,increment)" end |
- (self) info { ... }
Get information and statistics about the server
1071 1072 1073 1074 1075 1076 1077 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1071 def info if block_given? @j_del.java_method(:info, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling info()" end |
- (self) info_section(section = nil) { ... }
Get information and statistics about the server
1082 1083 1084 1085 1086 1087 1088 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1082 def info_section(section=nil) if section.class == String && block_given? @j_del.java_method(:infoSection, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(section,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling info_section(section)" end |
- (self) keys(pattern = nil) { ... }
Find all keys matching the given pattern
1093 1094 1095 1096 1097 1098 1099 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1093 def keys(pattern=nil) if pattern.class == String && block_given? @j_del.java_method(:keys, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(pattern,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling keys(pattern)" end |
- (self) lastsave { ... }
Get the UNIX time stamp of the last successful save to disk
1103 1104 1105 1106 1107 1108 1109 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1103 def lastsave if block_given? @j_del.java_method(:lastsave, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling lastsave()" end |
- (self) lindex(key = nil, index = nil) { ... }
Get an element from a list by its index
1115 1116 1117 1118 1119 1120 1121 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1115 def lindex(key=nil,index=nil) if key.class == String && index.class == Fixnum && block_given? @j_del.java_method(:lindex, [Java::java.lang.String.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,index,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling lindex(key,index)" end |
- (self) linsert(key = nil, option = nil, pivot = nil, value = nil) { ... }
Insert an element before or after another element in a list
1129 1130 1131 1132 1133 1134 1135 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1129 def linsert(key=nil,option=nil,pivot=nil,value=nil) if key.class == String && option.class == Symbol && pivot.class == String && value.class == String && block_given? @j_del.java_method(:linsert, [Java::java.lang.String.java_class,Java::IoVertxRedisOp::InsertOptions.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,Java::IoVertxRedisOp::InsertOptions.valueOf(option),pivot,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling linsert(key,option,pivot,value)" end |
- (self) llen(key = nil) { ... }
Get the length of a list
1140 1141 1142 1143 1144 1145 1146 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1140 def llen(key=nil) if key.class == String && block_given? @j_del.java_method(:llen, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling llen(key)" end |
- (self) lpop(key = nil) { ... }
Remove and get the first element in a list
1151 1152 1153 1154 1155 1156 1157 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1151 def lpop(key=nil) if key.class == String && block_given? @j_del.java_method(:lpop, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling lpop(key)" end |
- (self) lpush(key = nil, value = nil) { ... }
Prepend one value to a list
1175 1176 1177 1178 1179 1180 1181 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1175 def lpush(key=nil,value=nil) if key.class == String && value.class == String && block_given? @j_del.java_method(:lpush, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling lpush(key,value)" end |
- (self) lpush_many(key = nil, values = nil) { ... }
Prepend one or multiple values to a list
1163 1164 1165 1166 1167 1168 1169 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1163 def lpush_many(key=nil,values=nil) if key.class == String && values.class == Array && block_given? @j_del.java_method(:lpushMany, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(key,values.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling lpush_many(key,values)" end |
- (self) lpushx(key = nil, value = nil) { ... }
Prepend a value to a list, only if the list exists
1187 1188 1189 1190 1191 1192 1193 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1187 def lpushx(key=nil,value=nil) if key.class == String && value.class == String && block_given? @j_del.java_method(:lpushx, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling lpushx(key,value)" end |
- (self) lrange(key = nil, from = nil, to = nil) { ... }
Get a range of elements from a list
1200 1201 1202 1203 1204 1205 1206 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1200 def lrange(key=nil,from=nil,to=nil) if key.class == String && from.class == Fixnum && to.class == Fixnum && block_given? @j_del.java_method(:lrange, [Java::java.lang.String.java_class,Java::long.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,from,to,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling lrange(key,from,to)" end |
- (self) lrem(key = nil, count = nil, value = nil) { ... }
Remove elements from a list
1213 1214 1215 1216 1217 1218 1219 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1213 def lrem(key=nil,count=nil,value=nil) if key.class == String && count.class == Fixnum && value.class == String && block_given? @j_del.java_method(:lrem, [Java::java.lang.String.java_class,Java::long.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,count,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling lrem(key,count,value)" end |
- (self) lset(key = nil, index = nil, value = nil) { ... }
Set the value of an element in a list by its index
1226 1227 1228 1229 1230 1231 1232 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1226 def lset(key=nil,index=nil,value=nil) if key.class == String && index.class == Fixnum && value.class == String && block_given? @j_del.java_method(:lset, [Java::java.lang.String.java_class,Java::long.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,index,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling lset(key,index,value)" end |
- (self) ltrim(key = nil, from = nil, to = nil) { ... }
Trim a list to the specified range
1239 1240 1241 1242 1243 1244 1245 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1239 def ltrim(key=nil,from=nil,to=nil) if key.class == String && from.class == Fixnum && to.class == Fixnum && block_given? @j_del.java_method(:ltrim, [Java::java.lang.String.java_class,Java::long.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,from,to,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling ltrim(key,from,to)" end |
- (self) mget(key = nil) { ... }
Get the value of the given key
1250 1251 1252 1253 1254 1255 1256 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1250 def mget(key=nil) if key.class == String && block_given? @j_del.java_method(:mget, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling mget(key)" end |
- (self) mget_many(keys = nil) { ... }
Get the values of all the given keys
1261 1262 1263 1264 1265 1266 1267 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1261 def mget_many(keys=nil) if keys.class == Array && block_given? @j_del.java_method(:mgetMany, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(keys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling mget_many(keys)" end |
- (self) migrate(host = nil, port = nil, key = nil, destdb = nil, timeout = nil, options = nil) { ... }
Atomically transfer a key from a Redis instance to another one.
1277 1278 1279 1280 1281 1282 1283 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1277 def migrate(host=nil,port=nil,key=nil,destdb=nil,timeout=nil,=nil) if host.class == String && port.class == Fixnum && key.class == String && destdb.class == Fixnum && timeout.class == Fixnum && .class == Hash && block_given? @j_del.java_method(:migrate, [Java::java.lang.String.java_class,Java::int.java_class,Java::java.lang.String.java_class,Java::int.java_class,Java::long.java_class,Java::IoVertxRedisOp::MigrateOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(host,port,key,destdb,timeout,Java::IoVertxRedisOp::MigrateOptions.new(::Vertx::Util::Utils.to_json_object()),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling migrate(host,port,key,destdb,timeout,options)" end |
- (self) monitor { ... }
Listen for all requests received by the server in real time
1287 1288 1289 1290 1291 1292 1293 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1287 def monitor if block_given? @j_del.java_method(:monitor, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling monitor()" end |
- (self) move(key = nil, destdb = nil) { ... }
Move a key to another database
1299 1300 1301 1302 1303 1304 1305 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1299 def move(key=nil,destdb=nil) if key.class == String && destdb.class == Fixnum && block_given? @j_del.java_method(:move, [Java::java.lang.String.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,destdb,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling move(key,destdb)" end |
- (self) mset(keyvals = nil) { ... }
Set multiple keys to multiple values
1310 1311 1312 1313 1314 1315 1316 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1310 def mset(keyvals=nil) if keyvals.class == Hash && block_given? @j_del.java_method(:mset, [Java::IoVertxCoreJson::JsonObject.java_class,Java::IoVertxCore::Handler.java_class]).call(::Vertx::Util::Utils.to_json_object(keyvals),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling mset(keyvals)" end |
- (self) msetnx(keyvals = nil) { ... }
Set multiple keys to multiple values, only if none of the keys exist
1321 1322 1323 1324 1325 1326 1327 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1321 def msetnx(keyvals=nil) if keyvals.class == Hash && block_given? @j_del.java_method(:msetnx, [Java::IoVertxCoreJson::JsonObject.java_class,Java::IoVertxCore::Handler.java_class]).call(::Vertx::Util::Utils.to_json_object(keyvals),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling msetnx(keyvals)" end |
- (self) multi { ... }
Mark the start of a transaction block
1331 1332 1333 1334 1335 1336 1337 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1331 def multi if block_given? @j_del.java_method(:multi, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling multi()" end |
- (self) object(key = nil, cmd = nil) { ... }
Inspect the internals of Redis objects
1343 1344 1345 1346 1347 1348 1349 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1343 def object(key=nil,cmd=nil) if key.class == String && cmd.class == Symbol && block_given? @j_del.java_method(:object, [Java::java.lang.String.java_class,Java::IoVertxRedisOp::ObjectCmd.java_class,Java::IoVertxCore::Handler.java_class]).call(key,Java::IoVertxRedisOp::ObjectCmd.valueOf(cmd),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling object(key,cmd)" end |
- (self) persist(key = nil) { ... }
Remove the expiration from a key
1354 1355 1356 1357 1358 1359 1360 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1354 def persist(key=nil) if key.class == String && block_given? @j_del.java_method(:persist, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling persist(key)" end |
- (self) pexpire(key = nil, millis = nil) { ... }
Set a key's time to live in milliseconds
1366 1367 1368 1369 1370 1371 1372 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1366 def pexpire(key=nil,millis=nil) if key.class == String && millis.class == Fixnum && block_given? @j_del.java_method(:pexpire, [Java::java.lang.String.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,millis,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling pexpire(key,millis)" end |
- (self) pexpireat(key = nil, millis = nil) { ... }
Set the expiration for a key as a UNIX timestamp specified in milliseconds
1378 1379 1380 1381 1382 1383 1384 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1378 def pexpireat(key=nil,millis=nil) if key.class == String && millis.class == Fixnum && block_given? @j_del.java_method(:pexpireat, [Java::java.lang.String.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,millis,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling pexpireat(key,millis)" end |
- (self) pfadd(key = nil, element = nil) { ... }
Adds the specified element to the specified HyperLogLog.
1390 1391 1392 1393 1394 1395 1396 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1390 def pfadd(key=nil,element=nil) if key.class == String && element.class == String && block_given? @j_del.java_method(:pfadd, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,element,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling pfadd(key,element)" end |
- (self) pfadd_many(key = nil, elements = nil) { ... }
Adds the specified elements to the specified HyperLogLog.
1402 1403 1404 1405 1406 1407 1408 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1402 def pfadd_many(key=nil,elements=nil) if key.class == String && elements.class == Array && block_given? @j_del.java_method(:pfaddMany, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(key,elements.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling pfadd_many(key,elements)" end |
- (self) pfcount(key = nil) { ... }
Return the approximated cardinality of the set observed by the HyperLogLog at key.
1413 1414 1415 1416 1417 1418 1419 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1413 def pfcount(key=nil) if key.class == String && block_given? @j_del.java_method(:pfcount, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling pfcount(key)" end |
- (self) pfcount_many(keys = nil) { ... }
Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s).
1424 1425 1426 1427 1428 1429 1430 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1424 def pfcount_many(keys=nil) if keys.class == Array && block_given? @j_del.java_method(:pfcountMany, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(keys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling pfcount_many(keys)" end |
- (self) pfmerge(destkey = nil, keys = nil) { ... }
Merge N different HyperLogLogs into a single one.
1436 1437 1438 1439 1440 1441 1442 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1436 def pfmerge(destkey=nil,keys=nil) if destkey.class == String && keys.class == Array && block_given? @j_del.java_method(:pfmerge, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(destkey,keys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling pfmerge(destkey,keys)" end |
- (self) ping { ... }
Ping the server
1446 1447 1448 1449 1450 1451 1452 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1446 def ping if block_given? @j_del.java_method(:ping, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling ping()" end |
- (self) psetex(key = nil, millis = nil, value = nil) { ... }
Set the value and expiration in milliseconds of a key
1459 1460 1461 1462 1463 1464 1465 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1459 def psetex(key=nil,millis=nil,value=nil) if key.class == String && millis.class == Fixnum && value.class == String && block_given? @j_del.java_method(:psetex, [Java::java.lang.String.java_class,Java::long.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,millis,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling psetex(key,millis,value)" end |
- (self) psubscribe(pattern = nil) { ... }
Listen for messages published to channels matching the given pattern
1470 1471 1472 1473 1474 1475 1476 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1470 def psubscribe(pattern=nil) if pattern.class == String && block_given? @j_del.java_method(:psubscribe, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(pattern,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling psubscribe(pattern)" end |
- (self) psubscribe_many(patterns = nil) { ... }
Listen for messages published to channels matching the given patterns
1481 1482 1483 1484 1485 1486 1487 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1481 def psubscribe_many(patterns=nil) if patterns.class == Array && block_given? @j_del.java_method(:psubscribeMany, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(patterns.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling psubscribe_many(patterns)" end |
- (self) pttl(key = nil) { ... }
Get the time to live for a key in milliseconds
1524 1525 1526 1527 1528 1529 1530 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1524 def pttl(key=nil) if key.class == String && block_given? @j_del.java_method(:pttl, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling pttl(key)" end |
- (self) publish(channel = nil, message = nil) { ... }
Post a message to a channel
1536 1537 1538 1539 1540 1541 1542 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1536 def publish(channel=nil,=nil) if channel.class == String && .class == String && block_given? @j_del.java_method(:publish, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(channel,,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling publish(channel,message)" end |
- (self) pubsub_channels(pattern = nil) { ... }
Lists the currently active channels - only those matching the pattern
1492 1493 1494 1495 1496 1497 1498 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1492 def pubsub_channels(pattern=nil) if pattern.class == String && block_given? @j_del.java_method(:pubsubChannels, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(pattern,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling pubsub_channels(pattern)" end |
- (self) pubsub_numpat { ... }
Returns the number of subscriptions to patterns (that are performed using the PSUBSCRIBE command)
1513 1514 1515 1516 1517 1518 1519 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1513 def pubsub_numpat if block_given? @j_del.java_method(:pubsubNumpat, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling pubsub_numpat()" end |
- (self) pubsub_numsub(channels = nil) { ... }
Returns the number of subscribers (not counting clients subscribed to patterns) for the specified channels
1503 1504 1505 1506 1507 1508 1509 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1503 def pubsub_numsub(channels=nil) if channels.class == Array && block_given? @j_del.java_method(:pubsubNumsub, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(channels.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling pubsub_numsub(channels)" end |
- (self) punsubscribe(patterns = nil) { ... }
Stop listening for messages posted to channels matching the given patterns
1547 1548 1549 1550 1551 1552 1553 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1547 def punsubscribe(patterns=nil) if patterns.class == Array && block_given? @j_del.java_method(:punsubscribe, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(patterns.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling punsubscribe(patterns)" end |
- (self) randomkey { ... }
Return a random key from the keyspace
1557 1558 1559 1560 1561 1562 1563 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1557 def randomkey if block_given? @j_del.java_method(:randomkey, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling randomkey()" end |
- (self) rename(key = nil, newkey = nil) { ... }
Rename a key
1569 1570 1571 1572 1573 1574 1575 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1569 def rename(key=nil,newkey=nil) if key.class == String && newkey.class == String && block_given? @j_del.java_method(:rename, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,newkey,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling rename(key,newkey)" end |
- (self) renamenx(key = nil, newkey = nil) { ... }
Rename a key, only if the new key does not exist
1581 1582 1583 1584 1585 1586 1587 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1581 def renamenx(key=nil,newkey=nil) if key.class == String && newkey.class == String && block_given? @j_del.java_method(:renamenx, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,newkey,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling renamenx(key,newkey)" end |
- (self) restore(key = nil, millis = nil, serialized = nil) { ... }
Create a key using the provided serialized value, previously obtained using DUMP.
1594 1595 1596 1597 1598 1599 1600 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1594 def restore(key=nil,millis=nil,serialized=nil) if key.class == String && millis.class == Fixnum && serialized.class == String && block_given? @j_del.java_method(:restore, [Java::java.lang.String.java_class,Java::long.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,millis,serialized,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling restore(key,millis,serialized)" end |
- (self) role { ... }
Return the role of the instance in the context of replication
1604 1605 1606 1607 1608 1609 1610 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1604 def role if block_given? @j_del.java_method(:role, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling role()" end |
- (self) rpop(key = nil) { ... }
Remove and get the last element in a list
1615 1616 1617 1618 1619 1620 1621 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1615 def rpop(key=nil) if key.class == String && block_given? @j_del.java_method(:rpop, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling rpop(key)" end |
- (self) rpoplpush(key = nil, destkey = nil) { ... }
Remove the last element in a list, append it to another list and return it
1627 1628 1629 1630 1631 1632 1633 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1627 def rpoplpush(key=nil,destkey=nil) if key.class == String && destkey.class == String && block_given? @j_del.java_method(:rpoplpush, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,destkey,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling rpoplpush(key,destkey)" end |
- (self) rpush(key = nil, value = nil) { ... }
Append one or multiple values to a list
1651 1652 1653 1654 1655 1656 1657 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1651 def rpush(key=nil,value=nil) if key.class == String && value.class == String && block_given? @j_del.java_method(:rpush, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling rpush(key,value)" end |
- (self) rpush_many(key = nil, values = nil) { ... }
Append one or multiple values to a list
1639 1640 1641 1642 1643 1644 1645 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1639 def rpush_many(key=nil,values=nil) if key.class == String && values.class == Array && block_given? @j_del.java_method(:rpushMany, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(key,values.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling rpush_many(key,values)" end |
- (self) rpushx(key = nil, value = nil) { ... }
Append a value to a list, only if the list exists
1663 1664 1665 1666 1667 1668 1669 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1663 def rpushx(key=nil,value=nil) if key.class == String && value.class == String && block_given? @j_del.java_method(:rpushx, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling rpushx(key,value)" end |
- (self) sadd(key = nil, member = nil) { ... }
Add a member to a set
1675 1676 1677 1678 1679 1680 1681 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1675 def sadd(key=nil,member=nil) if key.class == String && member.class == String && block_given? @j_del.java_method(:sadd, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,member,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sadd(key,member)" end |
- (self) sadd_many(key = nil, members = nil) { ... }
Add one or more members to a set
1687 1688 1689 1690 1691 1692 1693 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1687 def sadd_many(key=nil,members=nil) if key.class == String && members.class == Array && block_given? @j_del.java_method(:saddMany, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(key,members.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sadd_many(key,members)" end |
- (self) save { ... }
Synchronously save the dataset to disk
1697 1698 1699 1700 1701 1702 1703 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1697 def save if block_given? @j_del.java_method(:save, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling save()" end |
- (self) scan(cursor = nil, options = nil) { ... }
Incrementally iterate the keys space
2567 2568 2569 2570 2571 2572 2573 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2567 def scan(cursor=nil,=nil) if cursor.class == String && .class == Hash && block_given? @j_del.java_method(:scan, [Java::java.lang.String.java_class,Java::IoVertxRedisOp::ScanOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(cursor,Java::IoVertxRedisOp::ScanOptions.new(::Vertx::Util::Utils.to_json_object()),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling scan(cursor,options)" end |
- (self) scard(key = nil) { ... }
Get the number of members in a set
1708 1709 1710 1711 1712 1713 1714 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1708 def scard(key=nil) if key.class == String && block_given? @j_del.java_method(:scard, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling scard(key)" end |
- (self) script_exists(script = nil) { ... }
Check existence of script in the script cache.
1719 1720 1721 1722 1723 1724 1725 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1719 def script_exists(script=nil) if script.class == String && block_given? @j_del.java_method(:scriptExists, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(script,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling script_exists(script)" end |
- (self) script_exists_many(scripts = nil) { ... }
Check existence of scripts in the script cache.
1730 1731 1732 1733 1734 1735 1736 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1730 def script_exists_many(scripts=nil) if scripts.class == Array && block_given? @j_del.java_method(:scriptExistsMany, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(scripts.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling script_exists_many(scripts)" end |
- (self) script_flush { ... }
Remove all the scripts from the script cache.
1740 1741 1742 1743 1744 1745 1746 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1740 def script_flush if block_given? @j_del.java_method(:scriptFlush, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling script_flush()" end |
- (self) script_kill { ... }
Kill the script currently in execution.
1750 1751 1752 1753 1754 1755 1756 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1750 def script_kill if block_given? @j_del.java_method(:scriptKill, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling script_kill()" end |
- (self) script_load(script = nil) { ... }
Load the specified Lua script into the script cache.
1761 1762 1763 1764 1765 1766 1767 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1761 def script_load(script=nil) if script.class == String && block_given? @j_del.java_method(:scriptLoad, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(script,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling script_load(script)" end |
- (self) sdiff(key = nil, cmpkeys = nil) { ... }
Subtract multiple sets
1773 1774 1775 1776 1777 1778 1779 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1773 def sdiff(key=nil,cmpkeys=nil) if key.class == String && cmpkeys.class == Array && block_given? @j_del.java_method(:sdiff, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(key,cmpkeys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sdiff(key,cmpkeys)" end |
- (self) sdiffstore(destkey = nil, key = nil, cmpkeys = nil) { ... }
Subtract multiple sets and store the resulting set in a key
1786 1787 1788 1789 1790 1791 1792 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1786 def sdiffstore(destkey=nil,key=nil,cmpkeys=nil) if destkey.class == String && key.class == String && cmpkeys.class == Array && block_given? @j_del.java_method(:sdiffstore, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(destkey,key,cmpkeys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sdiffstore(destkey,key,cmpkeys)" end |
- (self) select(dbindex = nil) { ... }
Change the selected database for the current connection
1797 1798 1799 1800 1801 1802 1803 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1797 def select(dbindex=nil) if dbindex.class == Fixnum && block_given? @j_del.java_method(:select, [Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(dbindex,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling select(dbindex)" end |
- (self) set(key = nil, value = nil) { ... }
Set the string value of a key
1809 1810 1811 1812 1813 1814 1815 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1809 def set(key=nil,value=nil) if key.class == String && value.class == String && block_given? @j_del.java_method(:set, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling set(key,value)" end |
- (self) set_binary(key = nil, value = nil) { ... }
Set the binary string value of a key - without encoding as utf-8
1834 1835 1836 1837 1838 1839 1840 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1834 def set_binary(key=nil,value=nil) if key.class == String && value.class == String && block_given? @j_del.java_method(:setBinary, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling set_binary(key,value)" end |
- (self) set_with_options(key = nil, value = nil, options = nil) { ... }
Set the string value of a key
1822 1823 1824 1825 1826 1827 1828 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1822 def (key=nil,value=nil,=nil) if key.class == String && value.class == String && .class == Hash && block_given? @j_del.java_method(:setWithOptions, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxRedisOp::SetOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value,Java::IoVertxRedisOp::SetOptions.new(::Vertx::Util::Utils.to_json_object()),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling set_with_options(key,value,options)" end |
- (self) setbit(key = nil, offset = nil, bit = nil) { ... }
Sets or clears the bit at offset in the string value stored at key
1847 1848 1849 1850 1851 1852 1853 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1847 def setbit(key=nil,offset=nil,bit=nil) if key.class == String && offset.class == Fixnum && bit.class == Fixnum && block_given? @j_del.java_method(:setbit, [Java::java.lang.String.java_class,Java::long.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,offset,bit,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling setbit(key,offset,bit)" end |
- (self) setex(key = nil, seconds = nil, value = nil) { ... }
Set the value and expiration of a key
1860 1861 1862 1863 1864 1865 1866 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1860 def setex(key=nil,seconds=nil,value=nil) if key.class == String && seconds.class == Fixnum && value.class == String && block_given? @j_del.java_method(:setex, [Java::java.lang.String.java_class,Java::long.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,seconds,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling setex(key,seconds,value)" end |
- (self) setnx(key = nil, value = nil) { ... }
Set the value of a key, only if the key does not exist
1872 1873 1874 1875 1876 1877 1878 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1872 def setnx(key=nil,value=nil) if key.class == String && value.class == String && block_given? @j_del.java_method(:setnx, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling setnx(key,value)" end |
- (self) setrange(key = nil, offset = nil, value = nil) { ... }
Overwrite part of a string at key starting at the specified offset
1885 1886 1887 1888 1889 1890 1891 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1885 def setrange(key=nil,offset=nil,value=nil) if key.class == String && offset.class == Fixnum && value.class == String && block_given? @j_del.java_method(:setrange, [Java::java.lang.String.java_class,Java::int.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,offset,value,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling setrange(key,offset,value)" end |
- (self) sinter(keys = nil) { ... }
Intersect multiple sets
1896 1897 1898 1899 1900 1901 1902 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1896 def sinter(keys=nil) if keys.class == Array && block_given? @j_del.java_method(:sinter, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(keys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sinter(keys)" end |
- (self) sinterstore(destkey = nil, keys = nil) { ... }
Intersect multiple sets and store the resulting set in a key
1908 1909 1910 1911 1912 1913 1914 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1908 def sinterstore(destkey=nil,keys=nil) if destkey.class == String && keys.class == Array && block_given? @j_del.java_method(:sinterstore, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(destkey,keys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sinterstore(destkey,keys)" end |
- (self) sismember(key = nil, member = nil) { ... }
Determine if a given value is a member of a set
1920 1921 1922 1923 1924 1925 1926 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1920 def sismember(key=nil,member=nil) if key.class == String && member.class == String && block_given? @j_del.java_method(:sismember, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,member,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sismember(key,member)" end |
- (self) slaveof(host = nil, port = nil) { ... }
Make the server a slave of another instance
1932 1933 1934 1935 1936 1937 1938 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1932 def slaveof(host=nil,port=nil) if host.class == String && port.class == Fixnum && block_given? @j_del.java_method(:slaveof, [Java::java.lang.String.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(host,port,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling slaveof(host,port)" end |
- (self) slaveof_noone { ... }
Make this server a master
1942 1943 1944 1945 1946 1947 1948 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1942 def slaveof_noone if block_given? @j_del.java_method(:slaveofNoone, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling slaveof_noone()" end |
- (self) slowlog_get(limit = nil) { ... }
Read the Redis slow queries log
1953 1954 1955 1956 1957 1958 1959 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1953 def slowlog_get(limit=nil) if limit.class == Fixnum && block_given? @j_del.java_method(:slowlogGet, [Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(limit,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling slowlog_get(limit)" end |
- (self) slowlog_len { ... }
Get the length of the Redis slow queries log
1963 1964 1965 1966 1967 1968 1969 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1963 def slowlog_len if block_given? @j_del.java_method(:slowlogLen, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling slowlog_len()" end |
- (self) slowlog_reset { ... }
Reset the Redis slow queries log
1973 1974 1975 1976 1977 1978 1979 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1973 def slowlog_reset if block_given? @j_del.java_method(:slowlogReset, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling slowlog_reset()" end |
- (self) smembers(key = nil) { ... }
Get all the members in a set
1984 1985 1986 1987 1988 1989 1990 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1984 def smembers(key=nil) if key.class == String && block_given? @j_del.java_method(:smembers, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling smembers(key)" end |
- (self) smove(key = nil, destkey = nil, member = nil) { ... }
Move a member from one set to another
1997 1998 1999 2000 2001 2002 2003 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 1997 def smove(key=nil,destkey=nil,member=nil) if key.class == String && destkey.class == String && member.class == String && block_given? @j_del.java_method(:smove, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,destkey,member,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling smove(key,destkey,member)" end |
- (self) sort(key = nil, options = nil) { ... }
Sort the elements in a list, set or sorted set
2009 2010 2011 2012 2013 2014 2015 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2009 def sort(key=nil,=nil) if key.class == String && .class == Hash && block_given? @j_del.java_method(:sort, [Java::java.lang.String.java_class,Java::IoVertxRedisOp::SortOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,Java::IoVertxRedisOp::SortOptions.new(::Vertx::Util::Utils.to_json_object()),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sort(key,options)" end |
- (self) spop(key = nil) { ... }
Remove and return a random member from a set
2020 2021 2022 2023 2024 2025 2026 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2020 def spop(key=nil) if key.class == String && block_given? @j_del.java_method(:spop, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling spop(key)" end |
- (self) spop_many(key = nil, count = nil) { ... }
Remove and return random members from a set
2032 2033 2034 2035 2036 2037 2038 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2032 def spop_many(key=nil,count=nil) if key.class == String && count.class == Fixnum && block_given? @j_del.java_method(:spopMany, [Java::java.lang.String.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,count,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling spop_many(key,count)" end |
- (self) srandmember(key = nil) { ... }
Get one or multiple random members from a set
2043 2044 2045 2046 2047 2048 2049 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2043 def srandmember(key=nil) if key.class == String && block_given? @j_del.java_method(:srandmember, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling srandmember(key)" end |
- (self) srandmember_count(key = nil, count = nil) { ... }
Get one or multiple random members from a set
2055 2056 2057 2058 2059 2060 2061 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2055 def srandmember_count(key=nil,count=nil) if key.class == String && count.class == Fixnum && block_given? @j_del.java_method(:srandmemberCount, [Java::java.lang.String.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(key,count,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling srandmember_count(key,count)" end |
- (self) srem(key = nil, member = nil) { ... }
Remove one member from a set
2067 2068 2069 2070 2071 2072 2073 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2067 def srem(key=nil,member=nil) if key.class == String && member.class == String && block_given? @j_del.java_method(:srem, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,member,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling srem(key,member)" end |
- (self) srem_many(key = nil, members = nil) { ... }
Remove one or more members from a set
2079 2080 2081 2082 2083 2084 2085 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2079 def srem_many(key=nil,members=nil) if key.class == String && members.class == Array && block_given? @j_del.java_method(:sremMany, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(key,members.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling srem_many(key,members)" end |
- (self) sscan(key = nil, cursor = nil, options = nil) { ... }
Incrementally iterate Set elements
2580 2581 2582 2583 2584 2585 2586 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2580 def sscan(key=nil,cursor=nil,=nil) if key.class == String && cursor.class == String && .class == Hash && block_given? @j_del.java_method(:sscan, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxRedisOp::ScanOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,cursor,Java::IoVertxRedisOp::ScanOptions.new(::Vertx::Util::Utils.to_json_object()),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sscan(key,cursor,options)" end |
- (self) strlen(key = nil) { ... }
Get the length of the value stored in a key
2090 2091 2092 2093 2094 2095 2096 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2090 def strlen(key=nil) if key.class == String && block_given? @j_del.java_method(:strlen, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling strlen(key)" end |
- (self) subscribe(channel = nil) { ... }
Listen for messages published to the given channels
2101 2102 2103 2104 2105 2106 2107 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2101 def subscribe(channel=nil) if channel.class == String && block_given? @j_del.java_method(:subscribe, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(channel,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling subscribe(channel)" end |
- (self) subscribe_many(channels = nil) { ... }
Listen for messages published to the given channels
2112 2113 2114 2115 2116 2117 2118 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2112 def subscribe_many(channels=nil) if channels.class == Array && block_given? @j_del.java_method(:subscribeMany, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(channels.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling subscribe_many(channels)" end |
- (self) sunion(keys = nil) { ... }
Add multiple sets
2123 2124 2125 2126 2127 2128 2129 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2123 def sunion(keys=nil) if keys.class == Array && block_given? @j_del.java_method(:sunion, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(keys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sunion(keys)" end |
- (self) sunionstore(destkey = nil, keys = nil) { ... }
Add multiple sets and store the resulting set in a key
2135 2136 2137 2138 2139 2140 2141 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2135 def sunionstore(destkey=nil,keys=nil) if destkey.class == String && keys.class == Array && block_given? @j_del.java_method(:sunionstore, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(destkey,keys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sunionstore(destkey,keys)" end |
- (self) sync { ... }
Internal command used for replication
2145 2146 2147 2148 2149 2150 2151 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2145 def sync if block_given? @j_del.java_method(:sync, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling sync()" end |
- (self) time { ... }
Return the current server time
2155 2156 2157 2158 2159 2160 2161 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2155 def time if block_given? @j_del.java_method(:time, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling time()" end |
- (self) ttl(key = nil) { ... }
Get the time to live for a key
2166 2167 2168 2169 2170 2171 2172 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2166 def ttl(key=nil) if key.class == String && block_given? @j_del.java_method(:ttl, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling ttl(key)" end |
- (self) type(key = nil) { ... }
Determine the type stored at key
2177 2178 2179 2180 2181 2182 2183 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2177 def type(key=nil) if key.class == String && block_given? @j_del.java_method(:type, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling type(key)" end |
- (self) unsubscribe(channels = nil) { ... }
Stop listening for messages posted to the given channels
2188 2189 2190 2191 2192 2193 2194 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2188 def unsubscribe(channels=nil) if channels.class == Array && block_given? @j_del.java_method(:unsubscribe, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(channels.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling unsubscribe(channels)" end |
- (self) unwatch { ... }
Forget about all watched keys
2198 2199 2200 2201 2202 2203 2204 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2198 def unwatch if block_given? @j_del.java_method(:unwatch, [Java::IoVertxCore::Handler.java_class]).call((Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling unwatch()" end |
- (self) wait(numSlaves = nil, timeout = nil) { ... }
Wait for the synchronous replication of all the write commands sent in the context of the current connection.
2210 2211 2212 2213 2214 2215 2216 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2210 def wait(numSlaves=nil,timeout=nil) if numSlaves.class == Fixnum && timeout.class == Fixnum && block_given? @j_del.java_method(:wait, [Java::long.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(numSlaves,timeout,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling wait(numSlaves,timeout)" end |
- (self) watch(key = nil) { ... }
Watch the given keys to determine execution of the MULTI/EXEC block
2221 2222 2223 2224 2225 2226 2227 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2221 def watch(key=nil) if key.class == String && block_given? @j_del.java_method(:watch, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling watch(key)" end |
- (self) watch_many(keys = nil) { ... }
Watch the given keys to determine execution of the MULTI/EXEC block
2232 2233 2234 2235 2236 2237 2238 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2232 def watch_many(keys=nil) if keys.class == Array && block_given? @j_del.java_method(:watchMany, [Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(keys.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling watch_many(keys)" end |
- (self) zadd(key = nil, score = nil, member = nil) { ... }
Add one or more members to a sorted set, or update its score if it already exists
2245 2246 2247 2248 2249 2250 2251 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2245 def zadd(key=nil,score=nil,member=nil) if key.class == String && score.class == Float && member.class == String && block_given? @j_del.java_method(:zadd, [Java::java.lang.String.java_class,Java::double.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,::Vertx::Util::Utils.to_double(score),member,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zadd(key,score,member)" end |
- (self) zadd_many(key = nil, members = nil) { ... }
Add one or more members to a sorted set, or update its score if it already exists
2257 2258 2259 2260 2261 2262 2263 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2257 def zadd_many(key=nil,members=nil) if key.class == String && members.class == Hash && block_given? @j_del.java_method(:zaddMany, [Java::java.lang.String.java_class,Java::JavaUtil::Map.java_class,Java::IoVertxCore::Handler.java_class]).call(key,Hash[members.map { |k,v| [k,::Vertx::Util::Utils.to_double(v)] }],(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zadd_many(key,members)" end |
- (self) zcard(key = nil) { ... }
Get the number of members in a sorted set
2268 2269 2270 2271 2272 2273 2274 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2268 def zcard(key=nil) if key.class == String && block_given? @j_del.java_method(:zcard, [Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zcard(key)" end |
- (self) zcount(key = nil, min = nil, max = nil) { ... }
Count the members in a sorted set with scores within the given values
2281 2282 2283 2284 2285 2286 2287 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2281 def zcount(key=nil,min=nil,max=nil) if key.class == String && min.class == Float && max.class == Float && block_given? @j_del.java_method(:zcount, [Java::java.lang.String.java_class,Java::double.java_class,Java::double.java_class,Java::IoVertxCore::Handler.java_class]).call(key,::Vertx::Util::Utils.to_double(min),::Vertx::Util::Utils.to_double(max),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zcount(key,min,max)" end |
- (self) zincrby(key = nil, increment = nil, member = nil) { ... }
Increment the score of a member in a sorted set
2294 2295 2296 2297 2298 2299 2300 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2294 def zincrby(key=nil,increment=nil,member=nil) if key.class == String && increment.class == Float && member.class == String && block_given? @j_del.java_method(:zincrby, [Java::java.lang.String.java_class,Java::double.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,::Vertx::Util::Utils.to_double(increment),member,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zincrby(key,increment,member)" end |
- (self) zinterstore(destkey = nil, sets = nil, options = nil) { ... }
Intersect multiple sorted sets and store the resulting sorted set in a new key
2307 2308 2309 2310 2311 2312 2313 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2307 def zinterstore(destkey=nil,sets=nil,=nil) if destkey.class == String && sets.class == Array && .class == Symbol && block_given? @j_del.java_method(:zinterstore, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxRedisOp::AggregateOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(destkey,sets.map { |element| element },Java::IoVertxRedisOp::AggregateOptions.valueOf(),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zinterstore(destkey,sets,options)" end |
- (self) zinterstore_weighed(destkey = nil, sets = nil, options = nil) { ... }
Intersect multiple sorted sets and store the resulting sorted set in a new key using weights for scoring
2320 2321 2322 2323 2324 2325 2326 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2320 def zinterstore_weighed(destkey=nil,sets=nil,=nil) if destkey.class == String && sets.class == Hash && .class == Symbol && block_given? @j_del.java_method(:zinterstoreWeighed, [Java::java.lang.String.java_class,Java::JavaUtil::Map.java_class,Java::IoVertxRedisOp::AggregateOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(destkey,Hash[sets.map { |k,v| [k,::Vertx::Util::Utils.to_double(v)] }],Java::IoVertxRedisOp::AggregateOptions.valueOf(),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zinterstore_weighed(destkey,sets,options)" end |
- (self) zlexcount(key = nil, min = nil, max = nil) { ... }
Count the number of members in a sorted set between a given lexicographical range
2333 2334 2335 2336 2337 2338 2339 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2333 def zlexcount(key=nil,min=nil,max=nil) if key.class == String && min.class == String && max.class == String && block_given? @j_del.java_method(:zlexcount, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,min,max,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zlexcount(key,min,max)" end |
- (self) zrange(key = nil, start = nil, stop = nil) { ... }
Return a range of members in a sorted set, by index
2346 2347 2348 2349 2350 2351 2352 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2346 def zrange(key=nil,start=nil,stop=nil) if key.class == String && start.class == Fixnum && stop.class == Fixnum && block_given? @j_del.java_method(:zrange, [Java::java.lang.String.java_class,Java::long.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,start,stop,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zrange(key,start,stop)" end |
- (self) zrange_with_options(key = nil, start = nil, stop = nil, options = nil) { ... }
Return a range of members in a sorted set, by index
2360 2361 2362 2363 2364 2365 2366 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2360 def (key=nil,start=nil,stop=nil,=nil) if key.class == String && start.class == Fixnum && stop.class == Fixnum && .class == Symbol && block_given? @j_del.java_method(:zrangeWithOptions, [Java::java.lang.String.java_class,Java::long.java_class,Java::long.java_class,Java::IoVertxRedisOp::RangeOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,start,stop,Java::IoVertxRedisOp::RangeOptions.valueOf(),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zrange_with_options(key,start,stop,options)" end |
- (self) zrangebylex(key = nil, min = nil, max = nil, options = nil) { ... }
Return a range of members in a sorted set, by lexicographical range
2374 2375 2376 2377 2378 2379 2380 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2374 def zrangebylex(key=nil,min=nil,max=nil,=nil) if key.class == String && min.class == String && max.class == String && .class == Hash && block_given? @j_del.java_method(:zrangebylex, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxRedisOp::LimitOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,min,max,Java::IoVertxRedisOp::LimitOptions.new(::Vertx::Util::Utils.to_json_object()),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zrangebylex(key,min,max,options)" end |
- (self) zrangebyscore(key = nil, min = nil, max = nil, options = nil) { ... }
Return a range of members in a sorted set, by score
2388 2389 2390 2391 2392 2393 2394 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2388 def zrangebyscore(key=nil,min=nil,max=nil,=nil) if key.class == String && min.class == String && max.class == String && .class == Hash && block_given? @j_del.java_method(:zrangebyscore, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxRedisOp::RangeLimitOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,min,max,Java::IoVertxRedisOp::RangeLimitOptions.new(::Vertx::Util::Utils.to_json_object()),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zrangebyscore(key,min,max,options)" end |
- (self) zrank(key = nil, member = nil) { ... }
Determine the index of a member in a sorted set
2400 2401 2402 2403 2404 2405 2406 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2400 def zrank(key=nil,member=nil) if key.class == String && member.class == String && block_given? @j_del.java_method(:zrank, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,member,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zrank(key,member)" end |
- (self) zrem(key = nil, member = nil) { ... }
Remove one member from a sorted set
2412 2413 2414 2415 2416 2417 2418 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2412 def zrem(key=nil,member=nil) if key.class == String && member.class == String && block_given? @j_del.java_method(:zrem, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,member,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zrem(key,member)" end |
- (self) zrem_many(key = nil, members = nil) { ... }
Remove one or more members from a sorted set
2424 2425 2426 2427 2428 2429 2430 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2424 def zrem_many(key=nil,members=nil) if key.class == String && members.class == Array && block_given? @j_del.java_method(:zremMany, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(key,members.map { |element| element },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zrem_many(key,members)" end |
- (self) zremrangebylex(key = nil, min = nil, max = nil) { ... }
Remove all members in a sorted set between the given lexicographical range
2437 2438 2439 2440 2441 2442 2443 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2437 def zremrangebylex(key=nil,min=nil,max=nil) if key.class == String && min.class == String && max.class == String && block_given? @j_del.java_method(:zremrangebylex, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,min,max,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zremrangebylex(key,min,max)" end |
- (self) zremrangebyrank(key = nil, start = nil, stop = nil) { ... }
Remove all members in a sorted set within the given indexes
2450 2451 2452 2453 2454 2455 2456 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2450 def zremrangebyrank(key=nil,start=nil,stop=nil) if key.class == String && start.class == Fixnum && stop.class == Fixnum && block_given? @j_del.java_method(:zremrangebyrank, [Java::java.lang.String.java_class,Java::long.java_class,Java::long.java_class,Java::IoVertxCore::Handler.java_class]).call(key,start,stop,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zremrangebyrank(key,start,stop)" end |
- (self) zremrangebyscore(key = nil, min = nil, max = nil) { ... }
Remove all members in a sorted set within the given scores
2463 2464 2465 2466 2467 2468 2469 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2463 def zremrangebyscore(key=nil,min=nil,max=nil) if key.class == String && min.class == String && max.class == String && block_given? @j_del.java_method(:zremrangebyscore, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,min,max,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zremrangebyscore(key,min,max)" end |
- (self) zrevrange(key = nil, start = nil, stop = nil, options = nil) { ... }
Return a range of members in a sorted set, by index, with scores ordered from high to low
2477 2478 2479 2480 2481 2482 2483 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2477 def zrevrange(key=nil,start=nil,stop=nil,=nil) if key.class == String && start.class == Fixnum && stop.class == Fixnum && .class == Symbol && block_given? @j_del.java_method(:zrevrange, [Java::java.lang.String.java_class,Java::long.java_class,Java::long.java_class,Java::IoVertxRedisOp::RangeOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,start,stop,Java::IoVertxRedisOp::RangeOptions.valueOf(),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zrevrange(key,start,stop,options)" end |
- (self) zrevrangebylex(key = nil, max = nil, min = nil, options = nil) { ... }
Return a range of members in a sorted set, by score, between the given lexicographical range with scores ordered from high to low
2491 2492 2493 2494 2495 2496 2497 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2491 def zrevrangebylex(key=nil,max=nil,min=nil,=nil) if key.class == String && max.class == String && min.class == String && .class == Hash && block_given? @j_del.java_method(:zrevrangebylex, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxRedisOp::LimitOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,max,min,Java::IoVertxRedisOp::LimitOptions.new(::Vertx::Util::Utils.to_json_object()),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zrevrangebylex(key,max,min,options)" end |
- (self) zrevrangebyscore(key = nil, max = nil, min = nil, options = nil) { ... }
Return a range of members in a sorted set, by score, with scores ordered from high to low
2505 2506 2507 2508 2509 2510 2511 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2505 def zrevrangebyscore(key=nil,max=nil,min=nil,=nil) if key.class == String && max.class == String && min.class == String && .class == Hash && block_given? @j_del.java_method(:zrevrangebyscore, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxRedisOp::RangeLimitOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,max,min,Java::IoVertxRedisOp::RangeLimitOptions.new(::Vertx::Util::Utils.to_json_object()),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zrevrangebyscore(key,max,min,options)" end |
- (self) zrevrank(key = nil, member = nil) { ... }
Determine the index of a member in a sorted set, with scores ordered from high to low
2517 2518 2519 2520 2521 2522 2523 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2517 def zrevrank(key=nil,member=nil) if key.class == String && member.class == String && block_given? @j_del.java_method(:zrevrank, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,member,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zrevrank(key,member)" end |
- (self) zscan(key = nil, cursor = nil, options = nil) { ... }
Incrementally iterate sorted sets elements and associated scores
2606 2607 2608 2609 2610 2611 2612 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2606 def zscan(key=nil,cursor=nil,=nil) if key.class == String && cursor.class == String && .class == Hash && block_given? @j_del.java_method(:zscan, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxRedisOp::ScanOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,cursor,Java::IoVertxRedisOp::ScanOptions.new(::Vertx::Util::Utils.to_json_object()),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result != nil ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zscan(key,cursor,options)" end |
- (self) zscore(key = nil, member = nil) { ... }
Get the score associated with the given member in a sorted set
2529 2530 2531 2532 2533 2534 2535 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2529 def zscore(key=nil,member=nil) if key.class == String && member.class == String && block_given? @j_del.java_method(:zscore, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,member,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zscore(key,member)" end |
- (self) zunionstore(destkey = nil, sets = nil, options = nil) { ... }
Add multiple sorted sets and store the resulting sorted set in a new key
2542 2543 2544 2545 2546 2547 2548 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2542 def zunionstore(destkey=nil,sets=nil,=nil) if destkey.class == String && sets.class == Array && .class == Symbol && block_given? @j_del.java_method(:zunionstore, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxRedisOp::AggregateOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(destkey,sets.map { |element| element },Java::IoVertxRedisOp::AggregateOptions.valueOf(),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zunionstore(destkey,sets,options)" end |
- (self) zunionstore_weighed(key = nil, sets = nil, options = nil) { ... }
Add multiple sorted sets using weights, and store the resulting sorted set in a new key
2555 2556 2557 2558 2559 2560 2561 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-redis-client/src/main/resources/vertx-redis/redis_client.rb', line 2555 def zunionstore_weighed(key=nil,sets=nil,=nil) if key.class == String && sets.class == Hash && .class == Symbol && block_given? @j_del.java_method(:zunionstoreWeighed, [Java::java.lang.String.java_class,Java::JavaUtil::Map.java_class,Java::IoVertxRedisOp::AggregateOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,Hash[sets.map { |k,v| [k,::Vertx::Util::Utils.to_double(v)] }],Java::IoVertxRedisOp::AggregateOptions.valueOf(),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling zunionstore_weighed(key,sets,options)" end |