摘要: 阅读全文
posted @ 2022-05-07 23:35 ascertain 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 删除Cluster所有key: #!/bin/bash host=192.168.8.105 port=6365 user=default password=default nodes=$(redis-cli -c -h $host -p $port --user $user --pass $pas 阅读全文
posted @ 2022-05-07 23:27 ascertain 阅读(23) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE tr ( id INT, name VARCHAR(50), purchased DATE ) PARTITION BY RANGE( YEAR(purchased) ) ( PARTITION p0 VALUES LESS THAN (1990), PARTITION p 阅读全文
posted @ 2022-05-07 15:32 ascertain 阅读(38) 评论(0) 推荐(0) 编辑