web123456

SpringBoot Practical Development (VI)--RedisTemplate processes Hash-type data

Table of contents

1. Add key-value pairs in the form of map collection

2. Get key-value pairs in variables

3. Check whether the specified field in the hash table exists

4. Get whether the specified map key in the variable has a value. If the map key exists, get the value. If there is no, return null.

5. Add hashMap value

6. Set only if hashKey does not exist

7. Delete one or more hash table fields

8. Add incremental increment to the integer value of the specified field in the hash table key

9. Get all fields in hash table

10. Get the number of fields in the hash table

11. Get multiple values ​​present in the hash table

12. Match to get key-value pairs, in order to get all key pairs


  1. @SpringBootTest
  2. class SpringBootQuick01ApplicationTests {
  3. @Autowired
  4. private RedisTemplate redisTemplate;
  5. @Test
  6. void get() {
  7. HashOperations hashOperations = ();
  8. }
  9. }

Redishash is aStringA mapping table of type field and value, hash is particularly suitable for storing objects;


Each hash in Redis can store 2^32 - 1Key-value pairs(More than 4 billion);

1. Add key-value pairs in the form of map collection

().putAll(key, maps); // Map<String, String> maps

 

2. Get key-value pairs in variables

Map<Object, Object> ().entries(key);

3. Viewhash tableWhether the specified field exists

Boolean ().hasKey(key, field);

4. Get whether the specified map key in the variable has a value. If the map key exists, get the value. If there is no, return null.

().get(key, field);

5. Add hashMap value

().put(key, hashKey, value);

6. Set only if hashKey does not exist

Boolean ().putIfAbsent(key, hashKey, value);

7. Delete one or more hash table fields

Long ().delete(key, fields); // Object... fields

8. Add incremental increment to the integer value of the specified field in the hash table key

  1. public Double hIncrByDouble(String key, Object field, double delta) {
  2. return ().increment(key, field, delta);
  3. }
  4. public Long hashIncrBy(String key, Object field, long increment) {
  5. return ().increment(key, field, increment);
  6. }

9. Get all fields in hash table

().keys(key);

10. Get the number of fields in the hash table

().size(key);

11. Get multiple values ​​present in the hash table

List<Object> ().values(key);

12. Match to get key-value pairs, in order to get all key pairs

  1. public Cursor<Entry<Object, Object>> hashScan(String key, ScanOptions options) {
  2. return ().scan(key, options);
  3. }

If it is helpful to you, please help me click on it so that I can be motivated to continue creating, thank you!