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
-
@SpringBootTest
-
class SpringBootQuick01ApplicationTests {
-
-
@Autowired
-
private RedisTemplate redisTemplate;
-
-
@Test
-
void get() {
-
HashOperations hashOperations = ();
-
}
-
-
}
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
-
public Double hIncrByDouble(String key, Object field, double delta) {
-
return ().increment(key, field, delta);
-
}
-
-
public Long hashIncrBy(String key, Object field, long increment) {
-
return ().increment(key, field, increment);
-
}
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
-
public Cursor<Entry<Object, Object>> hashScan(String key, ScanOptions options) {
-
return ().scan(key, options);
-
}
If it is helpful to you, please help me click on it so that I can be motivated to continue creating, thank you!