Summary of common commands for php-redis
This article mainly introduces to you a summary of common commands of php-redis. I hope it will be helpful to friends in need!
Keys
del
, delete
- Delete key
dump
- Returns the serialized version of the value stored at the specified key.
exists
- Determine if the key exists
expire
, setTimeout
, pexpire
- Set the key Time to live (in seconds)
expireAt
, pexpireAt
- Sets the key's expiration time to a UNIX timestamp
keys
, getKeys
- Find all keys matching the given pattern
scan
- Scan the keyspace for keys (Redis> = 2.8. 0)
migrate
- Atomic transfer of keys from a Redis instance to another instance
move
- Move keys to another database
object
- Check the internals of a Redis object
persist
- Remove expired
randomKey ## from the key #- Return a random key from the keyspace
rename,
renameKey - Rename a key
renameNx - Rename key, only if the new key does not exist
type - Determines the type stored on the key
sort - For elements in the list, Collection or sorted set to sort
ttl,
pttl - Get time for a key to live
restore - Use provided Create the key from the serialized value, previously obtained via dump.
scan
Description: Scan the key space for keys Returns: Array, boolean: If there are no more keys, this function will return a Array of keys or FALSE append- Append a value to a key
bitCount - Count the set bits in a string
- Perform a bitwise operation between strings
, decrBy
- Decrement the value of a key
get
- Get the value of the key
- Return the bit value at the offset in the string value stored at key
- Get a substring of the string stored on a key
- Set the string value of a key and return its old value
, incrBy
- Increments the value of a key
incrByFloat
- Increases the floating point value of a key by the given amount
, getMultiple
- Get all values for a given key
mSet
, mSetNX
- Set multiple keys to multiple value
set
- Sets the string value of the key
- Sets or clears the offset stored in the string value of the key The bits of
, pSetEx
- Set the value and expiration time of the key
setNx
- Set the value of the key, Only if key does not exist
- Overwrites a portion of the string at the key starting at the specified offset
- Gets storage The length of the value in the key
Description: PSETEX uses TTL in milliseconds
$it = NULL; /* Initialize our iterator to NULL */ $redis->setOption(Redis::OPT_SCAN, Redis::SCAN_RETRY); /* retry when we get no keys back */ while($arr_keys = $redis->scan($it)) { foreach($arr_keys as $str_key) { echo "Here is a key: $str_key\n"; } echo "No more keys to scan!\n"; }
setNx
Description: If the key does not exist in the database, set the string value in the parameter to the value of the key.
$ redis-> pSetEx('key',100,'value'); //设置键→值,0.1秒TTL。
incr, incrBy
Description: Increment the number stored on the key by 1. If the second argument is populated, it will be used as the integer value to increment.
$redis->setNx('key', 'value'); /* return TRUE */ $redis->setNx('key', 'value'); /* return FALSE */
incrByFloat
Description: Increment key using floating point precision
$redis->incr('key1'); / * key1不存在,在增加前设置为0 * / / *,现在的值为1 * / $redis->incr('key1'); /* 2 */ $redis->incr('key1'); /* 3 */ $redis->incr('key1'); /* 4 */ $redis->incrBy('key1', 10); /* 14 */
mGet, getMultiple
Description: Get the values of all specified keys. If one or more keys do not exist, the array will contain FALSE in the key's position.
$redis->incrByFloat('key1', 1.5); /* key1 didn't exist, so it will now be 1.5 */ $redis->incrByFloat('key1', 1.5); /* 3 */ $redis->incrByFloat('key1', -1.5); /* 1.5 */ $redis->incrByFloat('key1', 2.5); /* 4 */
getSet
Description: Sets a value and returns the previous entry on that key.
$redis->set('key1', 'value1'); $redis->set('key2', 'value2'); $redis->set('key3', 'value3'); $redis->mGet(array('key1', 'key2', 'key3')); /* array('value1', 'value2', 'value3'); $redis->mGet(array('key0', 'key1', 'key5')); /* array(`FALSE`, 'value1', `FALSE`);
move
Description: Move keys to other databases.
$redis->set('x', '42'); $exValue = $redis->getSet('x', 'lol'); // return '42', replaces x by 'lol' $newValue = $redis->get('x')' // return 'lol'
rename, renameKey
Description:
$redis->select(0); // switch to DB 0 $redis->set('x', '42'); // write 42 to x $redis->move('x', 1); // move to DB 1 $redis->select(1); // switch to DB 1 $redis->get('x'); // will return 42
renameNx
Description: Same as rename , but if the target already exists, the key will not be replaced. This is the same behavior as setNx.
$redis->set('x', '42'); $redis->rename('x', 'y'); $redis->get('y'); // → 42 $redis->get('x'); // → `FALSE
expireAt, pexpireAt
This is suitable for setting the Unix timestamp. The key's death date, in seconds since epoch time.
Description: Set the expiration date (timestamp) on the item. pexpireAt requires a timestamp in milliseconds. The above is the detailed content of Summary of common commands for php-redis. For more information, please follow other related articles on the PHP Chinese website!$redis->set('x', '42');
$redis->setTimeout('x', 3); // x will disappear in 3 seconds.
sleep(5); // wait 5 seconds
$redis->get('x'); // will return `FALSE`, as 'x' has expired.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

PHP is used to build dynamic websites, and its core functions include: 1. Generate dynamic content and generate web pages in real time by connecting with the database; 2. Process user interaction and form submissions, verify inputs and respond to operations; 3. Manage sessions and user authentication to provide a personalized experience; 4. Optimize performance and follow best practices to improve website efficiency and security.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP uses MySQLi and PDO extensions to interact in database operations and server-side logic processing, and processes server-side logic through functions such as session management. 1) Use MySQLi or PDO to connect to the database and execute SQL queries. 2) Handle HTTP requests and user status through session management and other functions. 3) Use transactions to ensure the atomicity of database operations. 4) Prevent SQL injection, use exception handling and closing connections for debugging. 5) Optimize performance through indexing and cache, write highly readable code and perform error handling.

The core benefits of PHP include ease of learning, strong web development support, rich libraries and frameworks, high performance and scalability, cross-platform compatibility, and cost-effectiveness. 1) Easy to learn and use, suitable for beginners; 2) Good integration with web servers and supports multiple databases; 3) Have powerful frameworks such as Laravel; 4) High performance can be achieved through optimization; 5) Support multiple operating systems; 6) Open source to reduce development costs.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip
