php-redis Chinese Document No. 5
This article is the fifth part of the php-redis Chinese documentation. Friends in need can refer to it.
This article is the fifth part of the php-redis Chinese documentation. Friends in need can refer to it. Hash operation hSet $redis->hSet('h', 'key1', 'hello'); Add element key1—>hello to the hash named h hGet $redis->hGet('h', 'key1'); Returns the value (hello) corresponding to key1 in the hash named h hL $redis->hLen('h'); Returns the number of elements in the hash named h hD $redis->hDel('h', 'key1'); Delete the domain with key1 in the hash named h hKeys $redis->hKeys('h'); Returns all keys in the hash named key hVals $redis->hVals('h') Returns the values corresponding to all keys in the hash named h hGetAll $redis->hGetAll('h'); Returns all keys (fields) and their corresponding values in the hash named h hExists $redis->hExists('h', 'a'); Whether there is a domain with key name a in the hash named h hIncrBy $redis->hIncrBy('h', 'x', 2); Increase the value of x in the hash named h by 2 hMset $redis->hMset('user:1', array('name' => 'Joe', 'salary' => 2000)); Add elements in batches to the hash named key hmG $redis->hmGet('h', array('field1', 'field2')); Returns the value corresponding to field1 and field2 in the hash named h redis operation related flushDB Clear current database flushAll Clear all databases randomKey Randomly returns a key in the key space $key = $redis->randomKey(); select Choose a database move Transfer a key to another database $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 rename, renameKey Rename key $redis->set('x', '42'); $redis->rename('x', 'y'); $redis->get('y'); // → 42 $redis->get('x'); // → `FALSE` renameNx Similar to remane, but if the renamed name already exists, the replacement will not succeed. setTimeout, expire Set the activity time of a key (s) $redis->setTimeout('x', 3); expireAt key survives until a unix timestamp $redis->expireAt('x', time() + 3); keys, getKeys Returns all keys that satisfy the given pattern $keyWithUserPrefix = $redis->keys('user*'); dbSize Check how many keys there are in the database now $count = $redis->dbSize(); auth Password authentication $redis->auth('foobared'); bgrewriteaof Use aof for database persistence $redis->bgrewriteaof(); slaveof Select slave server $redis->slaveof('10.0.1.7', 6379); save Synchronously save data to disk bgsave Asynchronously save data to disk lastSave Returns the Unix timestamp of the last successful save of data to disk info Returns redis version information and other details type Returns the type value of key string: Redis::REDIS_STRING set: Redis::REDIS_SET list: Redis::REDIS_LIST zset: Redis::REDIS_ZSET hash: Redis::REDIS_HASH other: Redis::REDIS_NOT_FOUND |

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

AI Hentai Generator
Generate AI Hentai for free.

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

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove
