[PYTHON] How to use redis-py Dictionaries

pip install redis

In python it looks like this

import redis
r = redis.Redis(host='localhost', port=6379, db=0)

#Erase everything
r.flushall()

#Save hash
#key_You can set dict to name
r.hmset(key_name, dict)

#When saving one by one
r.hset(key_name, field_name, val)

#Get hash
r.hgetall(key_name)

#hash key only
r.hkeys(key_name)

#hash value only
r.hvals(key_name)

#Only the specified field
r.hget(key_name, field_name)

#Increment the specified key and field
r.hincrby(key_name, field_name, value)

#Existence check of field
r.hexists(key_name,field_name)

#List of keys
r.keys()

It's good to be able to use it with almost the same interface as the interactive type. If you touch the list while looking at the document, you can easily remember it.

Recommended Posts

How to use redis-py Dictionaries
How to use xml.etree.ElementTree
How to use Python-shell
How to use tf.data
How to use virtualenv
How to use Seaboan
How to use image-match
How to use Pandas 2
How to use Virtualenv
How to use pytest_report_header
How to use Bio.Phylo
How to use SymPy
How to use x-means
How to use WikiExtractor.py
How to use IPython
How to use virtualenv
How to use Matplotlib
How to use iptables
How to use numpy
How to use TokyoTechFes2015
How to use venv
How to use dictionary {}
How to use Pyenv
How to use list []
How to use python-kabusapi
How to use OptParse
How to use return
How to use dotenv
How to use pyenv-virtualenv
How to use Go.mod
How to use imutils
How to use import
How to use lists, tuples, dictionaries, and sets
How to use Qt Designer
How to use search sorted
[gensim] How to use Doc2Vec
python3: How to use bottle (2)
Understand how to use django-filter
[Python] How to use list 1
How to use FastAPI ③ OpenAPI
How to use IPython Notebook
How to use Pandas Rolling
[Note] How to use virtualenv
Python: How to use pydub
[Python] How to use checkio
[Go] How to use "... (3 periods)"
How to use Django's GeoIp2
[Python] How to use input ()
How to use the decorator
[Introduction] How to use open3d
How to use Python lambda
How to use Jupyter Notebook
[Python] How to use virtualenv
python3: How to use bottle (3)
python3: How to use bottle
How to use Google Colaboratory
How to use Python bytes
How to use cron (personal memo)
Python: How to use async with
How to use the zip function
How to use the optparse module