Man pages for wush978/Rhiredis
R wrapper of hiredis

redisAPPENDAppend a value to a key
redisAUTHAuthenticate to the server
redisBGREWRITEAOFAsynchronously rewrite the append-only file
redisBGSAVEAsynchronously save the dataset to disk
redisBITCOUNTCount set bits in a string
redisBITOPPerform bitwise operations between strings
redisBLPOPRemove and get the first element in a list, or block until...
redisBRPOPRemove and get the last element in a list, or block until one...
redisBRPOPLPUSHPop a value from a list, push it to another list and return...
redisCLIENT_GETNAMEGet the current connection name
redisCLIENT_KILLKill the connection of a client
redisCLIENT_LISTGet the list of client connections
redisCLIENT_SETNAMESet the current connection name
redisCommandGeneral Redis Interface Function
redisCONFIG_GETGet the value of a configuration parameter
redisCONFIG_RESETSTATReset the stats returned by INFO
redisCONFIG_REWRITERewrite the configuration file with the in memory...
redisCONFIG_SETSet a configuration parameter to the given value
redisConnectConnect to redis server on a given ip and port
redisDBSIZEReturn the number of keys in the selected database
redisDEBUG_OBJECTGet debugging information about a key
redisDEBUG_SEGFAULTMake the server crash
redisDECRDecrement the integer value of a key by one
redisDECRBYDecrement the integer value of a key by the given number
redisDELDelete a key
redisDISCARDDiscard all commands issued after MULTI
redisDUMPReturn a serialized version of the value stored at the...
redisECHOEcho the given string
redisEVALExecute a Lua script server side
redisEVALSHAExecute a Lua script server side
redisEXECExecute all commands issued after MULTI
redisEXISTSDetermine if a key exists
redisEXPIRESet a key's time to live in seconds
redisEXPIREATSet the expiration for a key as a UNIX timestamp
redisFLUSHALLRemove all keys from all databases
redisFLUSHDBRemove all keys from the current database
redisGETGet the value of a key
redisGETBITReturns the bit value at offset in the string value stored at...
redisGETRANGEGet a substring of the string stored at a key
redisGETSETSet the string value of a key and return its old value
redisHDELDelete one or more hash fields
redisHEXISTSDetermine if a hash field exists
redisHGETGet the value of a hash field
redisHGETALLGet all the fields and values in a hash
redisHINCRBYIncrement the integer value of a hash field by the given...
redisHINCRBYFLOATIncrement the float value of a hash field by the given amount
redisHKEYSGet all the fields in a hash
redisHLENGet the number of fields in a hash
redisHMGETGet the values of all the given hash fields
redisHMSETSet multiple hash fields to multiple values
redisHSETSet the string value of a hash field
redisHSETNXSet the value of a hash field, only if the field does not...
redisHVALSGet all the values in a hash
redisINCRIncrement the integer value of a key by one
redisINCRBYIncrement the integer value of a key by the given amount
redisINCRBYFLOATIncrement the float value of a key by the given amount
redisINFOGet information and statistics about the server
redisKEYSFind all keys matching the given pattern
redisLASTSAVEGet the UNIX time stamp of the last successful save to disk
redisLINDEXGet an element from a list by its index
redisLINSERTInsert an element before or after another element in a list
redisLLENGet the length of a list
redisLPOPRemove and get the first element in a list
redisLPUSHPrepend one or multiple values to a list
redisLPUSHXPrepend a value to a list, only if the list exists
redisLRANGEGet a range of elements from a list
redisLREMRemove elements from a list
redisLSETSet the value of an element in a list by its index
redisLTRIMTrim a list to the specified range
redisMGETGet the values of all the given keys
redisMIGRATEAtomically transfer a key from a Redis instance to another...
redisMONITORListen for all requests received by the server in real time
redisMOVEMove a key to another database
redisMSETSet multiple keys to multiple values
redisMSETNXSet multiple keys to multiple values, only if none of the...
redisMULTIMark the start of a transaction block
redisOBJECTInspect the internals of Redis objects
redisPERSISTRemove the expiration from a key
redisPEXPIRESet a key's time to live in milliseconds
redisPEXPIREATSet the expiration for a key as a UNIX timestamp specified in...
redisPINGPing the server
redisPSETEXSet the value and expiration in milliseconds of a key
redisPSUBSCRIBEListen for messages published to channels matching the given...
redisPTTLGet the time to live for a key in milliseconds
redisPUBLISHPost a message to a channel
redisPUBSUBInspect the state of the Pub/Sub subsystem
redisPUNSUBSCRIBEStop listening for messages posted to channels matching the...
redisQUITClose the connection
redisRANDOMKEYReturn a random key from the keyspace
redisRENAMERename a key
redisRENAMENXRename a key, only if the new key does not exist
redisRESTORECreate a key using the provided serialized value, previously...
redisRPOPRemove and get the last element in a list
redisRPOPLPUSHRemove the last element in a list, append it to another list...
redisRPUSHAppend one or multiple values to a list
redisRPUSHXAppend a value to a list, only if the list exists
redisSADDAdd one or more members to a set
redisSAVESynchronously save the dataset to disk
redisSCARDGet the number of members in a set
redisSCRIPT_EXISTSCheck existence of scripts in the script cache.
redisSCRIPT_FLUSHRemove all the scripts from the script cache.
redisSCRIPT_KILLKill the script currently in execution.
redisSCRIPT_LOADLoad the specified Lua script into the script cache.
redisSDIFFSubtract multiple sets
redisSDIFFSTORESubtract multiple sets and store the resulting set in a key
redisSELECTChange the selected database for the current connection
redisSETSet the string value of a key
redisSETBITSets or clears the bit at offset in the string value stored...
redisSETEXSet the value and expiration of a key
redisSETNXSet the value of a key, only if the key does not exist
redisSETRANGEOverwrite part of a string at key starting at the specified...
redisSHUTDOWNSynchronously save the dataset to disk and then shut down the...
redisSINTERIntersect multiple sets
redisSINTERSTOREIntersect multiple sets and store the resulting set in a key
redisSISMEMBERDetermine if a given value is a member of a set
redisSLAVEOFMake the server a slave of another instance, or promote it as...
redisSLOWLOGManages the Redis slow queries log
redisSMEMBERSGet all the members in a set
redisSMOVEMove a member from one set to another
redisSORTSort the elements in a list, set or sorted set
redisSPOPRemove and return a random member from a set
redisSRANDMEMBERGet one or multiple random members from a set
redisSREMRemove one or more members from a set
redisSTRLENGet the length of the value stored in a key
redisSUBSCRIBEListen for messages published to the given channels
redisSUNIONAdd multiple sets
redisSUNIONSTOREAdd multiple sets and store the resulting set in a key
redisSYNCInternal command used for replication
redisTIMEReturn the current server time
redisTTLGet the time to live for a key
redisTYPEDetermine the type stored at key
redisUNSUBSCRIBEStop listening for messages posted to the given channels
redisUNWATCHForget about all watched keys
redisWATCHWatch the given keys to determine execution of the MULTI/EXEC...
redisZADDAdd one or more members to a sorted set, or update its score...
redisZCARDGet the number of members in a sorted set
redisZCOUNTCount the members in a sorted set with scores within the...
redisZINCRBYIncrement the score of a member in a sorted set
redisZINTERSTOREIntersect multiple sorted sets and store the resulting sorted...
redisZRANGEReturn a range of members in a sorted set, by index
redisZRANGEBYSCOREReturn a range of members in a sorted set, by score
redisZRANKDetermine the index of a member in a sorted set
redisZREMRemove one or more members from a sorted set
redisZREMRANGEBYRANKRemove all members in a sorted set within the given indexes
redisZREMRANGEBYSCORERemove all members in a sorted set within the given scores
redisZREVRANGEReturn a range of members in a sorted set, by index, with...
redisZREVRANGEBYSCOREReturn a range of members in a sorted set, by score, with...
redisZREVRANKDetermine the index of a member in a sorted set, with scores...
redisZSCOREGet the score associated with the given member in a sorted...
redisZUNIONSTOREAdd multiple sorted sets and store the resulting sorted set...
wush978/Rhiredis documentation built on May 4, 2019, 12:01 p.m.