Php-redis command Hash (hashes)

Source: Internet
Author: User

Two, hash (hashes)

1.hset: Set the value of the hash

$redis->hset (' Myhas ', ' field1 ', ' hello ');

$redis->hset (' Myhas ', ' field2 ', ' world ');

2.hget: Returns the value associated with the field in the hash set specified by key

$redis->hget (' Myhas ', ' field1 ');//output ' Hello ' $redis->hget (' Myhas ', ' field2 ');//Output ' world '

3.hgetall: Returns all fields and values in the hash set specified by key. The return value, the next of each field name, is its value, so the length of the return value is twice times the size of the hash set

$redis->hgetall (' Myhas ');//output Array (2) {["Field1"]=> string (5) "Hello" ["Field2"]=> string (5) "World"}

4.hkeys: Returns the name of all fields in the hash set specified by key.

$redis->hkeys (' Myhas ');//output Array (2) {[0]=> string (6) "Field1" [1]=> string (6) "Field2"}

5.hexists: Returns the hash field exists

$redis->hexists (' Myhas ', ' field1 ');

Php-redis command Hash (hashes)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.