حتى الآن باستخدام "القوائم والمجموعات" ، رأينا كيفية ربط مفتاح بقيمة ، أو مجموعة من القيم.
تسمح لنا التجزئة بربط أكثر من قيمة بمفتاح واحد ، وهي مثالية لتخزين العناصر التي تشبه الكائنات.
على سبيل المثال ، الشخص له اسم وعمر.
يمكننا إنشاء ملفperson:1
التجزئة:
HMSET person:1 name "Flavio" age 37To get all the properties of a user, use HGETALL
:
HGETALL person:1
You can update a hash property using HSET
:
HSET person:1 age 38You can increment a value stored in a hash using HINCRBY
:
HINCRBY person:1 age 2See all the hash commands here.
More redis tutorials:
- Introduction to Redis
- How to install Redis
- First steps with Redis
- Redis Lists
- Using Redis Sets
- How to use Redis Sorted Lists
- How to use Redis Hashes
- Redis Publish/subscribe