{eval=Array;=+count(Array);}
OnceDB是基于Redis實現(xiàn)的全文搜索數(shù)據(jù)庫,可以像SQL數(shù)據(jù)庫那樣創(chuàng)建輔助索引,提高條件搜索的性能。
OnceDB并不改變Redis的數(shù)據(jù)存儲結(jié)構(gòu),Redis數(shù)據(jù)庫文件可以直接在OnceDB中操作,然后再返回Redis中使用。
全文搜索的性能比較差,可通過創(chuàng)建索引的辦法提高性能,辦法是為索引字段創(chuàng)建一個有序列表,然后在條件查詢時,對這些有序列表做交集查詢操作。
# 創(chuàng)建4條 Hash 數(shù)據(jù)
hmset article:001 poster dota visit 21 key js
hmset article:002 poster dota visit 11 key c
hmset article:003 poster like visit 34 key js
hmset article:004 poster like visit 44 key c
然后我們?yōu)樯厦娴淖侄蝿?chuàng)建索引,權(quán)重分數(shù)設為: 202000201,一個關于時間的整數(shù),值為article的ID值
# 維護索引
zadd *article.poster:dota 20200201 001 20200201 002
zadd *article.poster:like 20200201 003 20200201 004
zadd *article.key:js 20200201 001 20200201 003
zadd *article.key:c 20200201 002 20200201 004
# visit 的索引直接使用其值為權(quán)重分數(shù)
zadd *article.visit 21 001 11 002 34 003 44 004
```
求 *article.key:js 和 *article.poster:dota 兩個索引的交集,并存放在 *tmp1 有序列表中:
```
zinterstore *tmp1 2 *article.key:js *article.poster:dota
> 1
```
然后 *tmp1 存放的就是 滿足 key = js 和 poster = dota 條件的 ID集合:
```
zrange *tmp1 0 -1
> 001
```
可使用zrangehmget指令打印相應的HASH值:
```
zrangehmget *tmp1 0 -1 article: key poster
1) 001
2) 40400402
3) js
4) dota
5)
6)
```
其結(jié)果與直接全文搜索 key = js 和 poster = dota 的搜索結(jié)果相同
```
hsearch article:* key = js poster = dota
1) article:001
2) js
3) dota
```
比如要搜索 visit 數(shù)量在 20 到 30 之間,key = js 的數(shù)據(jù),可通過控制權(quán)重的方法實現(xiàn)
創(chuàng)建臨時索引,只取 *article.visit 的權(quán)重 和 key = js 的數(shù)據(jù)
```
zinterstore *tmp2 2 *article.key:js *article.visit weights 0 1
> 2
```
取 20 ~ 30 之間的數(shù)據(jù)
```
zrangebyscore *tmp2 20 30
> 001
```
可使用 zrangehmgetbyscore 打印出對應的hash數(shù)據(jù):
```
zrangehmgetbyscore *tmp2 20 30 article: key visit
1) 001
2) 21
3) js
4) 21
5)
6)
```
其結(jié)果與使用全文搜索的結(jié)果一致:
```
hsearch article:* visit >= 20 visit <= 30 key = js
1) article:001
2) 21
3)
4) js
```
因為里面有兩個相同的字段,visit >= 20 visit <= 30,搜索結(jié)果只會輸出一個,第3行重復的字段會輸出空。
OnceDB更多擴展指令可查看: [OnceDB 搜索、查詢、計算、求和指令
https://oncedb.com/wiki/view/oncedb-server.zh-CN/data_instruction
Redis索引的創(chuàng)建和維護并不十分方便,OnceDB 在數(shù)據(jù)修改時可選擇自動創(chuàng)建輔助索引。
使用 upsert/insert/update 指令和特殊的操作符可自動創(chuàng)建索引:
如上文的例子可寫成:
```
upsert article id @ 001 poster ? dota visit / 21 key ? js
upsert article id @ 002 poster ? dota visit / 11 key ? c
upsert article id @ 003 poster ? like visit / 34 key ? js
upsert article id @ 004 poster ? like visit / 44 key ? c
```
操作符:
> @ : 主鍵
> ? : 分組索引
> / : 排序索引
操作后會自動創(chuàng)建: *article *article.poster:dota *article.poster:like *article.visit *article.key:js *article.key:c 等索引。
含有索引的字段,可使用 find 命令通過索引字段查詢出來,比如查詢:key = js 和 poster = dota 的數(shù)據(jù),可通過 "?" 指明這兩個字段是分組索引:
```
find article 0 -1 key ? js poster ? dota
1) 1
2) article:001
3) js
4) dota
```
1: 代表符合條件的數(shù)據(jù)總數(shù),如果是 -1 則代表使用了全文搜索,性能較差。
可添加 @ 指定索引范圍,并使用 + 指定使用哪個索引字段的分數(shù)權(quán)重范圍。
```
find article 0@20 -1@30 key ? js visit /+ *
1) 1
2) article:001
3) js
4) 21
```
OnceDB不存儲索引定義,刪除時需要手動指出哪些字段含有索引,需要指定字段名和索引操作符即可。
```
remove article @ 001 key ? poster ? visit /
```
還可以自定義索引名稱,權(quán)重分數(shù),更多說明可查看:
OnceDB數(shù)據(jù)修改和查詢幫助文檔
https://oncedb.com/wiki/view/oncedb-server.zh-CN/data_modify_and_query
0
回答1
回答2
回答0
回答0
回答0
回答0
回答0
回答0
回答1
回答