@LIUHUAN
2022-01-16T12:15:31.000000Z
字数 200
阅读 399
未分类
db_set(){ echo "$1,$2" >> database}db_get(){ grep '^$1,' database | sed -e 's/^$1,//g' | tail -n 1}
db_set(){
echo "$1,$2" >> database
}
db_get(){
grep '^$1,' database | sed -e 's/^$1,//g' | tail -n 1
改进的存储于检索引擎,很少有超过这个写入效率的
索引方式:哈希索引