Class: VertxRedis::RedisClient
- Inherits:
-
Object
- Object
- VertxRedis::RedisClient
- Defined in:
- /Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb
Constant Summary
- @@j_api_type =
Object.new
Class Method Summary (collapse)
- + (Boolean) accept?(obj)
- + (::VertxRedis::RedisClient) create(vertx = nil, config = nil)
- + (Object) j_api_type
- + (Object) j_class
- + (Object) unwrap(obj)
- + (Object) wrap(obj)
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) bitfield(key = nil, bitFieldOptions = nil) { ... }
Perform arbitrary bitfield integer operations on strings.
-
- (self) bitfield_with_overflow(key = nil, commands = nil, overflow = nil) { ... }
Perform arbitrary bitfield integer operations on strings.
-
- (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_reply(options = nil) { ... }
Instruct the server whether to reply to commands.
-
- (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) 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) eval_script(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) exists(key = nil) { ... }
Determine if a key exists.
-
- (self) exists_many(keys = nil) { ... }
Determine if one or many keys exist.
-
- (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) geoadd(key = nil, longitude = nil, latitude = nil, member = nil) { ... }
Add one or more geospatial items in the geospatial index represented using a sorted set.
-
- (self) geoadd_many(key = nil, members = nil) { ... }
Add one or more geospatial items in the geospatial index represented using a sorted set.
-
- (self) geodist(key = nil, member1 = nil, member2 = nil) { ... }
Return the distance between two members in the geospatial index represented by the sorted set.
-
- (self) geodist_with_unit(key = nil, member1 = nil, member2 = nil, unit = nil) { ... }
Return the distance between two members in the geospatial index represented by the sorted set.
-
- (self) geohash(key = nil, member = nil) { ... }
Return valid Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index (where elements were added using GEOADD).
-
- (self) geohash_many(key = nil, members = nil) { ... }
Return valid Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index (where elements were added using GEOADD).
-
- (self) geopos(key = nil, member = nil) { ... }
Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the sorted set at key.
-
- (self) geopos_many(key = nil, members = nil) { ... }
Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the sorted set at key.
-
- (self) georadius(key = nil, longitude = nil, latitude = nil, radius = nil, unit = nil) { ... }
Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders of the area specified with the center location and the maximum distance from the center (the radius).
-
- (self) georadius_with_options(key = nil, longitude = nil, latitude = nil, radius = nil, unit = nil, options = nil) { ... }
Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders of the area specified with the center location and the maximum distance from the center (the radius).
-
- (self) georadiusbymember(key = nil, member = nil, radius = nil, unit = nil) { ... }
This command is exactly like GEORADIUS with the sole difference that instead of taking, as the center of the area to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial index represented by the sorted set.
-
- (self) georadiusbymember_with_options(key = nil, member = nil, radius = nil, unit = nil, options = nil) { ... }
This command is exactly like GEORADIUS with the sole difference that instead of taking, as the center of the area to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial index represented by the sorted set.
-
- (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) hstrlen(key = nil, field = nil) { ... }
Get the length of the value of a hash field.
-
- (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) 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_debug(scriptDebugOptions = nil) { ... }
Set the debug mode for executed scripts.
-
- (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_binary_with_options(key = nil, value = nil, options = nil) { ... }
Set the string value of a key.
-
- (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) swapdb(index1 = nil, index2 = nil) { ... }
Swaps two Redis databases.
-
- (self) sync { ... }
Internal command used for replication.
-
- (self) time { ... }
Return the current server time.
-
- (self) touch(key = nil) { ... }
Alters the last access time of a key(s).
-
- (self) touch_many(keys = nil) { ... }
Alters the last access time of a key(s).
-
- (::VertxRedis::RedisTransaction) transaction
Return a RedisTransaction instance.
-
- (self) ttl(key = nil) { ... }
Get the time to live for a key.
-
- (self) type(key = nil) { ... }
Determine the type stored at key.
-
- (self) unlink(key = nil) { ... }
Delete a key asynchronously in another thread.
-
- (self) unlink_many(keys = nil) { ... }
Delete multiple keys asynchronously in another thread.
-
- (self) unsubscribe(channels = nil) { ... }
Stop listening for messages posted to the given channels.
-
- (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) 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
+ (Boolean) accept?(obj)
20 21 22 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 20 def @@j_api_type.accept?(obj) obj.class == RedisClient end |
+ (::VertxRedis::RedisClient) create(vertx = nil, config = nil)
38 39 40 41 42 43 44 45 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 38 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 |
+ (Object) j_api_type
29 30 31 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 29 def self.j_api_type @@j_api_type end |
+ (Object) j_class
32 33 34 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 32 def self.j_class Java::IoVertxRedis::RedisClient.java_class end |
+ (Object) unwrap(obj)
26 27 28 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 26 def @@j_api_type.unwrap(obj) obj.j_del end |
+ (Object) wrap(obj)
23 24 25 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 23 def @@j_api_type.wrap(obj) RedisClient.new(obj) end |
Instance Method Details
- (self) append(key = nil, value = nil) { ... }
Append a value to a key
60 61 62 63 64 65 66 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 60 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
71 72 73 74 75 76 77 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 71 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
81 82 83 84 85 86 87 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 81 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
91 92 93 94 95 96 97 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 91 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
102 103 104 105 106 107 108 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 102 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
115 116 117 118 119 120 121 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 115 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) bitfield(key = nil, bitFieldOptions = nil) { ... }
Perform arbitrary bitfield integer operations on strings.
2852 2853 2854 2855 2856 2857 2858 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2852 def bitfield(key=nil,bitFieldOptions=nil) if key.class == String && bitFieldOptions.class == Hash && block_given? @j_del.java_method(:bitfield, [Java::java.lang.String.java_class,Java::IoVertxRedisOp::BitFieldOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,Java::IoVertxRedisOp::BitFieldOptions.new(::Vertx::Util::Utils.to_json_object(bitFieldOptions)),(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 bitfield(#{key},#{bitFieldOptions})" end |
- (self) bitfield_with_overflow(key = nil, commands = nil, overflow = nil) { ... }
Perform arbitrary bitfield integer operations on strings.
2865 2866 2867 2868 2869 2870 2871 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2865 def bitfield_with_overflow(key=nil,commands=nil,overflow=nil) if key.class == String && commands.class == Hash && overflow.class == Symbol && block_given? @j_del.java_method(:bitfieldWithOverflow, [Java::java.lang.String.java_class,Java::IoVertxRedisOp::BitFieldOptions.java_class,Java::IoVertxRedisOp::BitFieldOverflowOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,Java::IoVertxRedisOp::BitFieldOptions.new(::Vertx::Util::Utils.to_json_object(commands)),Java::IoVertxRedisOp::BitFieldOverflowOptions.valueOf(overflow.to_s),(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 bitfield_with_overflow(#{key},#{commands},#{overflow})" end |
- (self) bitop(operation = nil, destkey = nil, keys = nil) { ... }
Perform bitwise operations between strings
128 129 130 131 132 133 134 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 128 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.to_s),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
140 141 142 143 144 145 146 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 140 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.
155 156 157 158 159 160 161 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 155 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
172 173 174 175 176 177 178 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 172 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
184 185 186 187 188 189 190 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 184 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
196 197 198 199 200 201 202 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 196 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
208 209 210 211 212 213 214 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 208 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
220 221 222 223 224 225 226 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 220 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
233 234 235 236 237 238 239 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 233 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
264 265 266 267 268 269 270 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 264 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
244 245 246 247 248 249 250 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 244 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
254 255 256 257 258 259 260 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 254 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
275 276 277 278 279 280 281 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 275 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_reply(options = nil) { ... }
Instruct the server whether to reply to commands.
2795 2796 2797 2798 2799 2800 2801 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2795 def client_reply(=nil) if .class == Symbol && block_given? @j_del.java_method(:clientReply, [Java::IoVertxRedisOp::ClientReplyOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(Java::IoVertxRedisOp::ClientReplyOptions.valueOf(.to_s),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling client_reply(#{})" end |
- (self) client_setname(name = nil) { ... }
Set the current connection name
286 287 288 289 290 291 292 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 286 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.
49 50 51 52 53 54 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 49 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.
297 298 299 300 301 302 303 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 297 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.
308 309 310 311 312 313 314 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 308 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.
319 320 321 322 323 324 325 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 319 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.
330 331 332 333 334 335 336 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 330 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.
341 342 343 344 345 346 347 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 341 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.
362 363 364 365 366 367 368 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 362 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(.to_s),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_fail_over_with_options(#{})" end |
- (self) cluster_failover { ... }
Forces a slave to perform a manual failover of its master.
351 352 353 354 355 356 357 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 351 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.
373 374 375 376 377 378 379 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 373 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.
385 386 387 388 389 390 391 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 385 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.
395 396 397 398 399 400 401 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 395 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.
406 407 408 409 410 411 412 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 406 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.
418 419 420 421 422 423 424 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 418 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.
428 429 430 431 432 433 434 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 428 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.
439 440 441 442 443 444 445 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 439 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.
449 450 451 452 453 454 455 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 449 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.
460 461 462 463 464 465 466 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 460 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(.to_s),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil) })) return self end raise ArgumentError, "Invalid arguments when calling cluster_reset_with_options(#{})" end |
- (self) cluster_saveconfig { ... }
Forces the node to save cluster state on disk.
470 471 472 473 474 475 476 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 470 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.
481 482 483 484 485 486 487 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 481 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.
493 494 495 496 497 498 499 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 493 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.to_s),(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.
506 507 508 509 510 511 512 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 506 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.to_s),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.
517 518 519 520 521 522 523 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 517 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
527 528 529 530 531 532 533 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 527 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
537 538 539 540 541 542 543 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 537 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
547 548 549 550 551 552 553 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 547 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
557 558 559 560 561 562 563 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 557 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
568 569 570 571 572 573 574 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 568 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
579 580 581 582 583 584 585 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 579 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
611 612 613 614 615 616 617 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 611 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
589 590 591 592 593 594 595 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 589 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
601 602 603 604 605 606 607 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 601 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
621 622 623 624 625 626 627 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 621 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
632 633 634 635 636 637 638 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 632 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
642 643 644 645 646 647 648 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 642 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
653 654 655 656 657 658 659 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 653 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
665 666 667 668 669 670 671 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 665 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
676 677 678 679 680 681 682 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 676 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
687 688 689 690 691 692 693 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 687 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) dump(key = nil) { ... }
Return a serialized version of the value stored at the specified key.
698 699 700 701 702 703 704 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 698 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
709 710 711 712 713 714 715 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 709 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(#{})" 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.
726 727 728 729 730 731 732 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 726 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) eval_script(script = nil, keys = nil, args = nil) { ... }
Execute a Lua script server side. This method is a high level wrapper around EVAL and EVALSHA
using the latter if possible, falling back to EVAL if the script is not cached by the server yet.
According to Redis documentation, executed scripts are guaranteed to be in the script cache of a
given execution of a Redis instance forever, which means typically the overhead incurred by
optimistically sending EVALSHA is minimal, while improving performance and saving bandwidth
compared to using EVAL every time.
761 762 763 764 765 766 767 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 761 def eval_script(script=nil,keys=nil,args=nil) if script.class.method_defined?(:j_del) && keys.class == Array && args.class == Array && block_given? @j_del.java_method(:evalScript, [Java::IoVertxRedis::Script.java_class,Java::JavaUtil::List.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(script.j_del,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(#{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.
743 744 745 746 747 748 749 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 743 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) exists(key = nil) { ... }
Determine if a key exists
772 773 774 775 776 777 778 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 772 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) exists_many(keys = nil) { ... }
Determine if one or many keys exist
783 784 785 786 787 788 789 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 783 def exists_many(keys=nil) if keys.class == Array && block_given? @j_del.java_method(:existsMany, [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 exists_many(#{keys})" end |
- (self) expire(key = nil, seconds = nil) { ... }
Set a key's time to live in seconds
795 796 797 798 799 800 801 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 795 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::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 expire(#{key},#{seconds})" end |
- (self) expireat(key = nil, seconds = nil) { ... }
Set the expiration for a key as a UNIX timestamp
807 808 809 810 811 812 813 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 807 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
817 818 819 820 821 822 823 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 817 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
827 828 829 830 831 832 833 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 827 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) geoadd(key = nil, longitude = nil, latitude = nil, member = nil) { ... }
Add one or more geospatial items in the geospatial index represented using a sorted set.
2627 2628 2629 2630 2631 2632 2633 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2627 def geoadd(key=nil,longitude=nil,latitude=nil,member=nil) if key.class == String && longitude.class == Float && latitude.class == Float && member.class == String && block_given? @j_del.java_method(:geoadd, [Java::java.lang.String.java_class,Java::double.java_class,Java::double.java_class,Java::java.lang.String.java_class,Java::IoVertxCore::Handler.java_class]).call(key,::Vertx::Util::Utils.to_double(longitude),::Vertx::Util::Utils.to_double(latitude),member,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling geoadd(#{key},#{longitude},#{latitude},#{member})" end |
- (self) geoadd_many(key = nil, members = nil) { ... }
Add one or more geospatial items in the geospatial index represented using a sorted set.
2639 2640 2641 2642 2643 2644 2645 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2639 def geoadd_many(key=nil,members=nil) if key.class == String && members.class == Array && block_given? @j_del.java_method(:geoaddMany, [Java::java.lang.String.java_class,Java::JavaUtil::List.java_class,Java::IoVertxCore::Handler.java_class]).call(key,members.map { |element| Java::IoVertxRedisOp::GeoMember.new(::Vertx::Util::Utils.to_json_object(element)) },(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling geoadd_many(#{key},#{members})" end |
- (self) geodist(key = nil, member1 = nil, member2 = nil) { ... }
Return the distance between two members in the geospatial index represented by the sorted set.
2704 2705 2706 2707 2708 2709 2710 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2704 def geodist(key=nil,member1=nil,member2=nil) if key.class == String && member1.class == String && member2.class == String && block_given? @j_del.java_method(:geodist, [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,member1,member2,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling geodist(#{key},#{member1},#{member2})" end |
- (self) geodist_with_unit(key = nil, member1 = nil, member2 = nil, unit = nil) { ... }
Return the distance between two members in the geospatial index represented by the sorted set.
2718 2719 2720 2721 2722 2723 2724 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2718 def geodist_with_unit(key=nil,member1=nil,member2=nil,unit=nil) if key.class == String && member1.class == String && member2.class == String && unit.class == Symbol && block_given? @j_del.java_method(:geodistWithUnit, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::IoVertxRedisOp::GeoUnit.java_class,Java::IoVertxCore::Handler.java_class]).call(key,member1,member2,Java::IoVertxRedisOp::GeoUnit.valueOf(unit.to_s),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling geodist_with_unit(#{key},#{member1},#{member2},#{unit})" end |
- (self) geohash(key = nil, member = nil) { ... }
Return valid Geohash strings representing the position of one or more elements in a sorted set value representing
a geospatial index (where elements were added using GEOADD).
2652 2653 2654 2655 2656 2657 2658 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2652 def geohash(key=nil,member=nil) if key.class == String && member.class == String && block_given? @j_del.java_method(:geohash, [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 ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling geohash(#{key},#{member})" end |
- (self) geohash_many(key = nil, members = nil) { ... }
Return valid Geohash strings representing the position of one or more elements in a sorted set value representing
a geospatial index (where elements were added using GEOADD).
2665 2666 2667 2668 2669 2670 2671 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2665 def geohash_many(key=nil,members=nil) if key.class == String && members.class == Array && block_given? @j_del.java_method(:geohashMany, [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 ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling geohash_many(#{key},#{members})" end |
- (self) geopos(key = nil, member = nil) { ... }
Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the
sorted set at key.
2678 2679 2680 2681 2682 2683 2684 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2678 def geopos(key=nil,member=nil) if key.class == String && member.class == String && block_given? @j_del.java_method(:geopos, [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 ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling geopos(#{key},#{member})" end |
- (self) geopos_many(key = nil, members = nil) { ... }
Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the
sorted set at key.
2691 2692 2693 2694 2695 2696 2697 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2691 def geopos_many(key=nil,members=nil) if key.class == String && members.class == Array && block_given? @j_del.java_method(:geoposMany, [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 ? JSON.parse(ar.result.encode) : nil : nil) })) return self end raise ArgumentError, "Invalid arguments when calling geopos_many(#{key},#{members})" end |
- (self) georadius(key = nil, longitude = nil, latitude = nil, radius = nil, unit = nil) { ... }
Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders
of the area specified with the center location and the maximum distance from the center (the radius).
2734 2735 2736 2737 2738 2739 2740 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2734 def georadius(key=nil,longitude=nil,latitude=nil,radius=nil,unit=nil) if key.class == String && longitude.class == Float && latitude.class == Float && radius.class == Float && unit.class == Symbol && block_given? @j_del.java_method(:georadius, [Java::java.lang.String.java_class,Java::double.java_class,Java::double.java_class,Java::double.java_class,Java::IoVertxRedisOp::GeoUnit.java_class,Java::IoVertxCore::Handler.java_class]).call(key,::Vertx::Util::Utils.to_double(longitude),::Vertx::Util::Utils.to_double(latitude),::Vertx::Util::Utils.to_double(radius),Java::IoVertxRedisOp::GeoUnit.valueOf(unit.to_s),(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 georadius(#{key},#{longitude},#{latitude},#{radius},#{unit})" end |
- (self) georadius_with_options(key = nil, longitude = nil, latitude = nil, radius = nil, unit = nil, options = nil) { ... }
Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders
of the area specified with the center location and the maximum distance from the center (the radius).
2751 2752 2753 2754 2755 2756 2757 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2751 def (key=nil,longitude=nil,latitude=nil,radius=nil,unit=nil,=nil) if key.class == String && longitude.class == Float && latitude.class == Float && radius.class == Float && unit.class == Symbol && .class == Hash && block_given? @j_del.java_method(:georadiusWithOptions, [Java::java.lang.String.java_class,Java::double.java_class,Java::double.java_class,Java::double.java_class,Java::IoVertxRedisOp::GeoUnit.java_class,Java::IoVertxRedisOp::GeoRadiusOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,::Vertx::Util::Utils.to_double(longitude),::Vertx::Util::Utils.to_double(latitude),::Vertx::Util::Utils.to_double(radius),Java::IoVertxRedisOp::GeoUnit.valueOf(unit.to_s),Java::IoVertxRedisOp::GeoRadiusOptions.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 georadius_with_options(#{key},#{longitude},#{latitude},#{radius},#{unit},#{})" end |
- (self) georadiusbymember(key = nil, member = nil, radius = nil, unit = nil) { ... }
This command is exactly like GEORADIUS with the sole difference that instead of taking, as the center of the area
to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial
index represented by the sorted set.
2767 2768 2769 2770 2771 2772 2773 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2767 def georadiusbymember(key=nil,member=nil,radius=nil,unit=nil) if key.class == String && member.class == String && radius.class == Float && unit.class == Symbol && block_given? @j_del.java_method(:georadiusbymember, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::double.java_class,Java::IoVertxRedisOp::GeoUnit.java_class,Java::IoVertxCore::Handler.java_class]).call(key,member,::Vertx::Util::Utils.to_double(radius),Java::IoVertxRedisOp::GeoUnit.valueOf(unit.to_s),(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 georadiusbymember(#{key},#{member},#{radius},#{unit})" end |
- (self) georadiusbymember_with_options(key = nil, member = nil, radius = nil, unit = nil, options = nil) { ... }
This command is exactly like GEORADIUS with the sole difference that instead of taking, as the center of the area
to query, a longitude and latitude value, it takes the name of a member already existing inside the geospatial
index represented by the sorted set.
2784 2785 2786 2787 2788 2789 2790 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2784 def (key=nil,member=nil,radius=nil,unit=nil,=nil) if key.class == String && member.class == String && radius.class == Float && unit.class == Symbol && .class == Hash && block_given? @j_del.java_method(:georadiusbymemberWithOptions, [Java::java.lang.String.java_class,Java::java.lang.String.java_class,Java::double.java_class,Java::IoVertxRedisOp::GeoUnit.java_class,Java::IoVertxRedisOp::GeoRadiusOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,member,::Vertx::Util::Utils.to_double(radius),Java::IoVertxRedisOp::GeoUnit.valueOf(unit.to_s),Java::IoVertxRedisOp::GeoRadiusOptions.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 georadiusbymember_with_options(#{key},#{member},#{radius},#{unit},#{})" end |
- (self) get(key = nil) { ... }
Get the value of a key
838 839 840 841 842 843 844 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 838 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
849 850 851 852 853 854 855 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 849 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 ? ::Vertx::Util::Utils.safe_create(ar.result,::Vertx::Buffer) : 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
861 862 863 864 865 866 867 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 861 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
874 875 876 877 878 879 880 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 874 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
886 887 888 889 890 891 892 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 886 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
898 899 900 901 902 903 904 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 898 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
910 911 912 913 914 915 916 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 910 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
922 923 924 925 926 927 928 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 922 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
934 935 936 937 938 939 940 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 934 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
945 946 947 948 949 950 951 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 945 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
958 959 960 961 962 963 964 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 958 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
971 972 973 974 975 976 977 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 971 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
982 983 984 985 986 987 988 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 982 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
993 994 995 996 997 998 999 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 993 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
1005 1006 1007 1008 1009 1010 1011 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1005 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
1017 1018 1019 1020 1021 1022 1023 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1017 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
2600 2601 2602 2603 2604 2605 2606 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2600 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},#{})" end |
- (self) hset(key = nil, field = nil, value = nil) { ... }
Set the string value of a hash field
1030 1031 1032 1033 1034 1035 1036 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1030 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
1043 1044 1045 1046 1047 1048 1049 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1043 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) hstrlen(key = nil, field = nil) { ... }
Get the length of the value of a hash field.
2807 2808 2809 2810 2811 2812 2813 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2807 def hstrlen(key=nil,field=nil) if key.class == String && field.class == String && block_given? @j_del.java_method(:hstrlen, [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 hstrlen(#{key},#{field})" end |
- (self) hvals(key = nil) { ... }
Get all the values in a hash
1054 1055 1056 1057 1058 1059 1060 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1054 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
1065 1066 1067 1068 1069 1070 1071 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1065 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
1077 1078 1079 1080 1081 1082 1083 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1077 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
1089 1090 1091 1092 1093 1094 1095 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1089 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
1099 1100 1101 1102 1103 1104 1105 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1099 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
1110 1111 1112 1113 1114 1115 1116 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1110 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
1121 1122 1123 1124 1125 1126 1127 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1121 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
1131 1132 1133 1134 1135 1136 1137 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1131 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
1143 1144 1145 1146 1147 1148 1149 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1143 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
1157 1158 1159 1160 1161 1162 1163 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1157 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.to_s),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
1168 1169 1170 1171 1172 1173 1174 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1168 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
1179 1180 1181 1182 1183 1184 1185 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1179 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
1203 1204 1205 1206 1207 1208 1209 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1203 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
1191 1192 1193 1194 1195 1196 1197 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1191 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
1215 1216 1217 1218 1219 1220 1221 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1215 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
1228 1229 1230 1231 1232 1233 1234 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1228 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
1241 1242 1243 1244 1245 1246 1247 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1241 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
1254 1255 1256 1257 1258 1259 1260 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1254 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
1267 1268 1269 1270 1271 1272 1273 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1267 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
1278 1279 1280 1281 1282 1283 1284 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1278 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
1289 1290 1291 1292 1293 1294 1295 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1289 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.
1305 1306 1307 1308 1309 1310 1311 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1305 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},#{})" end |
- (self) monitor { ... }
Listen for all requests received by the server in real time
1315 1316 1317 1318 1319 1320 1321 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1315 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
1327 1328 1329 1330 1331 1332 1333 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1327 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
1338 1339 1340 1341 1342 1343 1344 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1338 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
1349 1350 1351 1352 1353 1354 1355 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1349 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) object(key = nil, cmd = nil) { ... }
Inspect the internals of Redis objects
1361 1362 1363 1364 1365 1366 1367 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1361 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.to_s),(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
1372 1373 1374 1375 1376 1377 1378 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1372 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
1384 1385 1386 1387 1388 1389 1390 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1384 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
1396 1397 1398 1399 1400 1401 1402 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1396 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.
1408 1409 1410 1411 1412 1413 1414 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1408 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.
1420 1421 1422 1423 1424 1425 1426 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1420 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.
1431 1432 1433 1434 1435 1436 1437 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1431 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).
1442 1443 1444 1445 1446 1447 1448 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1442 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.
1454 1455 1456 1457 1458 1459 1460 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1454 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
1464 1465 1466 1467 1468 1469 1470 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1464 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
1477 1478 1479 1480 1481 1482 1483 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1477 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
1488 1489 1490 1491 1492 1493 1494 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1488 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
1499 1500 1501 1502 1503 1504 1505 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1499 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
1542 1543 1544 1545 1546 1547 1548 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1542 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
1554 1555 1556 1557 1558 1559 1560 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1554 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},#{})" end |
- (self) pubsub_channels(pattern = nil) { ... }
Lists the currently active channels - only those matching the pattern
1510 1511 1512 1513 1514 1515 1516 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1510 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)
1531 1532 1533 1534 1535 1536 1537 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1531 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
1521 1522 1523 1524 1525 1526 1527 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1521 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
1565 1566 1567 1568 1569 1570 1571 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1565 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
1575 1576 1577 1578 1579 1580 1581 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1575 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
1587 1588 1589 1590 1591 1592 1593 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1587 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
1599 1600 1601 1602 1603 1604 1605 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1599 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.
1612 1613 1614 1615 1616 1617 1618 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1612 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
1622 1623 1624 1625 1626 1627 1628 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1622 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
1633 1634 1635 1636 1637 1638 1639 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1633 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
1645 1646 1647 1648 1649 1650 1651 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1645 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
1669 1670 1671 1672 1673 1674 1675 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1669 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
1657 1658 1659 1660 1661 1662 1663 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1657 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
1681 1682 1683 1684 1685 1686 1687 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1681 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
1693 1694 1695 1696 1697 1698 1699 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1693 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
1705 1706 1707 1708 1709 1710 1711 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1705 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
1715 1716 1717 1718 1719 1720 1721 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1715 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
2574 2575 2576 2577 2578 2579 2580 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2574 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},#{})" end |
- (self) scard(key = nil) { ... }
Get the number of members in a set
1726 1727 1728 1729 1730 1731 1732 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1726 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_debug(scriptDebugOptions = nil) { ... }
Set the debug mode for executed scripts.
2840 2841 2842 2843 2844 2845 2846 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2840 def script_debug(scriptDebugOptions=nil) if scriptDebugOptions.class == Symbol && block_given? @j_del.java_method(:scriptDebug, [Java::IoVertxRedisOp::ScriptDebugOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(Java::IoVertxRedisOp::ScriptDebugOptions.valueOf(scriptDebugOptions.to_s),(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling script_debug(#{scriptDebugOptions})" end |
- (self) script_exists(script = nil) { ... }
Check existence of script in the script cache.
1737 1738 1739 1740 1741 1742 1743 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1737 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.
1748 1749 1750 1751 1752 1753 1754 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1748 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.
1758 1759 1760 1761 1762 1763 1764 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1758 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.
1768 1769 1770 1771 1772 1773 1774 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1768 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.
1779 1780 1781 1782 1783 1784 1785 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1779 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
1791 1792 1793 1794 1795 1796 1797 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1791 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
1804 1805 1806 1807 1808 1809 1810 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1804 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
1815 1816 1817 1818 1819 1820 1821 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1815 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
1827 1828 1829 1830 1831 1832 1833 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1827 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
1852 1853 1854 1855 1856 1857 1858 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1852 def set_binary(key=nil,value=nil) if key.class == String && value.class.method_defined?(:j_del) && block_given? @j_del.java_method(:setBinary, [Java::java.lang.String.java_class,Java::IoVertxCoreBuffer::Buffer.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value.j_del,(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_binary_with_options(key = nil, value = nil, options = nil) { ... }
Set the string value of a key
1865 1866 1867 1868 1869 1870 1871 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1865 def (key=nil,value=nil,=nil) if key.class == String && value.class.method_defined?(:j_del) && .class == Hash && block_given? @j_del.java_method(:setBinaryWithOptions, [Java::java.lang.String.java_class,Java::IoVertxCoreBuffer::Buffer.java_class,Java::IoVertxRedisOp::SetOptions.java_class,Java::IoVertxCore::Handler.java_class]).call(key,value.j_del,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_binary_with_options(#{key},#{value},#{})" end |
- (self) set_with_options(key = nil, value = nil, options = nil) { ... }
Set the string value of a key
1840 1841 1842 1843 1844 1845 1846 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1840 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, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling set_with_options(#{key},#{value},#{})" end |
- (self) setbit(key = nil, offset = nil, bit = nil) { ... }
Sets or clears the bit at offset in the string value stored at key
1878 1879 1880 1881 1882 1883 1884 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1878 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
1891 1892 1893 1894 1895 1896 1897 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1891 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
1903 1904 1905 1906 1907 1908 1909 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1903 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
1916 1917 1918 1919 1920 1921 1922 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1916 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
1927 1928 1929 1930 1931 1932 1933 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1927 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
1939 1940 1941 1942 1943 1944 1945 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1939 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
1951 1952 1953 1954 1955 1956 1957 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1951 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
1963 1964 1965 1966 1967 1968 1969 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1963 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
1973 1974 1975 1976 1977 1978 1979 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1973 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
1984 1985 1986 1987 1988 1989 1990 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1984 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
1994 1995 1996 1997 1998 1999 2000 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 1994 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
2004 2005 2006 2007 2008 2009 2010 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2004 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
2015 2016 2017 2018 2019 2020 2021 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2015 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
2028 2029 2030 2031 2032 2033 2034 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2028 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
2040 2041 2042 2043 2044 2045 2046 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2040 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},#{})" end |
- (self) spop(key = nil) { ... }
Remove and return a random member from a set
2051 2052 2053 2054 2055 2056 2057 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2051 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
2063 2064 2065 2066 2067 2068 2069 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2063 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 ? JSON.parse(ar.result.encode) : nil : 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
2074 2075 2076 2077 2078 2079 2080 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2074 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
2086 2087 2088 2089 2090 2091 2092 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2086 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
2098 2099 2100 2101 2102 2103 2104 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2098 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
2110 2111 2112 2113 2114 2115 2116 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2110 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
2587 2588 2589 2590 2591 2592 2593 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2587 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},#{})" end |
- (self) strlen(key = nil) { ... }
Get the length of the value stored in a key
2121 2122 2123 2124 2125 2126 2127 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2121 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
2132 2133 2134 2135 2136 2137 2138 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2132 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
2143 2144 2145 2146 2147 2148 2149 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2143 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
2154 2155 2156 2157 2158 2159 2160 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2154 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
2166 2167 2168 2169 2170 2171 2172 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2166 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) swapdb(index1 = nil, index2 = nil) { ... }
Swaps two Redis databases
2899 2900 2901 2902 2903 2904 2905 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2899 def swapdb(index1=nil,index2=nil) if index1.class == Fixnum && index2.class == Fixnum && block_given? @j_del.java_method(:swapdb, [Java::int.java_class,Java::int.java_class,Java::IoVertxCore::Handler.java_class]).call(index1,index2,(Proc.new { |ar| yield(ar.failed ? ar.cause : nil, ar.succeeded ? ar.result : nil) })) return self end raise ArgumentError, "Invalid arguments when calling swapdb(#{index1},#{index2})" end |
- (self) sync { ... }
Internal command used for replication
2176 2177 2178 2179 2180 2181 2182 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2176 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
2186 2187 2188 2189 2190 2191 2192 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2186 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) touch(key = nil) { ... }
Alters the last access time of a key(s). Returns the number of existing keys specified.
2818 2819 2820 2821 2822 2823 2824 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2818 def touch(key=nil) if key.class == String && block_given? @j_del.java_method(:touch, [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 touch(#{key})" end |
- (self) touch_many(keys = nil) { ... }
Alters the last access time of a key(s). Returns the number of existing keys specified.
2829 2830 2831 2832 2833 2834 2835 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2829 def touch_many(keys=nil) if keys.class == Array && block_given? @j_del.java_method(:touchMany, [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 touch_many(#{keys})" end |
- (::VertxRedis::RedisTransaction) transaction
Return a RedisTransaction instance
2195 2196 2197 2198 2199 2200 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2195 def transaction if !block_given? return ::Vertx::Util::Utils.safe_create(@j_del.java_method(:transaction, []).call(),::VertxRedis::RedisTransaction) end raise ArgumentError, "Invalid arguments when calling transaction()" end |
- (self) ttl(key = nil) { ... }
Get the time to live for a key
2205 2206 2207 2208 2209 2210 2211 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2205 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
2216 2217 2218 2219 2220 2221 2222 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2216 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) unlink(key = nil) { ... }
Delete a key asynchronously in another thread. Otherwise it is just as DEL, but non blocking.
2876 2877 2878 2879 2880 2881 2882 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2876 def unlink(key=nil) if key.class == String && block_given? @j_del.java_method(:unlink, [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 unlink(#{key})" end |
- (self) unlink_many(keys = nil) { ... }
Delete multiple keys asynchronously in another thread. Otherwise it is just as DEL, but non blocking.
2887 2888 2889 2890 2891 2892 2893 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2887 def unlink_many(keys=nil) if keys.class == Array && block_given? @j_del.java_method(:unlinkMany, [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 unlink_many(#{keys})" end |
- (self) unsubscribe(channels = nil) { ... }
Stop listening for messages posted to the given channels
2227 2228 2229 2230 2231 2232 2233 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2227 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) wait(numSlaves = nil, timeout = nil) { ... }
Wait for the synchronous replication of all the write commands sent in the context of the current connection.
2239 2240 2241 2242 2243 2244 2245 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2239 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) zadd(key = nil, score = nil, member = nil) { ... }
Add one or more members to a sorted set, or update its score if it already exists
2252 2253 2254 2255 2256 2257 2258 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2252 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
2264 2265 2266 2267 2268 2269 2270 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2264 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
2275 2276 2277 2278 2279 2280 2281 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2275 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
2288 2289 2290 2291 2292 2293 2294 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2288 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
2301 2302 2303 2304 2305 2306 2307 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2301 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
2314 2315 2316 2317 2318 2319 2320 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2314 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(.to_s),(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},#{})" 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
2327 2328 2329 2330 2331 2332 2333 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2327 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(.to_s),(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},#{})" end |
- (self) zlexcount(key = nil, min = nil, max = nil) { ... }
Count the number of members in a sorted set between a given lexicographical range
2340 2341 2342 2343 2344 2345 2346 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2340 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
2353 2354 2355 2356 2357 2358 2359 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2353 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
2367 2368 2369 2370 2371 2372 2373 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2367 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(.to_s),(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},#{})" end |
- (self) zrangebylex(key = nil, min = nil, max = nil, options = nil) { ... }
Return a range of members in a sorted set, by lexicographical range
2381 2382 2383 2384 2385 2386 2387 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2381 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},#{})" end |
- (self) zrangebyscore(key = nil, min = nil, max = nil, options = nil) { ... }
Return a range of members in a sorted set, by score
2395 2396 2397 2398 2399 2400 2401 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2395 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},#{})" end |
- (self) zrank(key = nil, member = nil) { ... }
Determine the index of a member in a sorted set
2407 2408 2409 2410 2411 2412 2413 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2407 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
2419 2420 2421 2422 2423 2424 2425 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2419 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
2431 2432 2433 2434 2435 2436 2437 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2431 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
2444 2445 2446 2447 2448 2449 2450 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2444 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
2457 2458 2459 2460 2461 2462 2463 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2457 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
2470 2471 2472 2473 2474 2475 2476 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2470 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
2484 2485 2486 2487 2488 2489 2490 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2484 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(.to_s),(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},#{})" 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
2498 2499 2500 2501 2502 2503 2504 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2498 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},#{})" 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
2512 2513 2514 2515 2516 2517 2518 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2512 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},#{})" end |
- (self) zrevrank(key = nil, member = nil) { ... }
Determine the index of a member in a sorted set, with scores ordered from high to low
2524 2525 2526 2527 2528 2529 2530 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2524 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
2613 2614 2615 2616 2617 2618 2619 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2613 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},#{})" end |
- (self) zscore(key = nil, member = nil) { ... }
Get the score associated with the given member in a sorted set
2536 2537 2538 2539 2540 2541 2542 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2536 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
2549 2550 2551 2552 2553 2554 2555 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2549 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(.to_s),(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},#{})" 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
2562 2563 2564 2565 2566 2567 2568 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-redis/redis_client.rb', line 2562 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(.to_s),(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},#{})" end |