Redisデータベースの知識ポイント
834 ワード
Redisの知識点:
redisの一般的なデータ型:
Redis持続化のメカニズム:
redisクラスタ:redis 3.0バージョン以降、中心ノードのないクラスタが開始されました.
redis FAQ:
FROM
https://blog.csdn.net/Butterfly_resting/article/details/89668661
redisの一般的なデータ型:
1、string set key value; , ,
2、hash hmset name key1 value1 key2 value2; , , 。
3、list lpush name value;
4、set sadd name value; , 。
5、zset zadd name score value; ,
Redis持続化のメカニズム:
1、RDB redis-DB , , ,
2、AOF , Redis Write ,
redisクラスタ:redis 3.0バージョン以降、中心ノードのないクラスタが開始されました.
redis FAQ:
: redis , MySQL , , , ,random 。
: redis , , , 。 , , , 。
FROM
https://blog.csdn.net/Butterfly_resting/article/details/89668661