redis hash批量插入数据
时间: 2023-11-29 17:47:27 浏览: 125
redis集群批量插入
5星 · 资源好评率100%
可以使用Redis的pipeline机制来实现Redis hash批量插入数据,具体步骤如下:
1.创建一个pipeline对象
```python
pipe = redis_three.pipeline()
```
2.使用pipeline的hmset方法批量插入数据
```python
data = {'key1': {'field1': 'value1', 'field2': 'value2'},
'key2': {'field1': 'value1', 'field2': 'value2'}}
for key, value in data.items():
pipe.hmset(key, value)
```
3.执行pipeline
```python
pipe.execute()
```
这样就可以一次性将多个请求提交给Redis server,性能会有很大提升。
阅读全文