redis 執行filter 過濾

2021-07-14 13:48:29 字數 1358 閱讀 4816

關於redis的基礎知識就不扯了,今天來聊聊redis 中怎樣執行過濾語句。
127.0

.0.1:6379> sadd myset1 a a1 b1 c1 d1 ""

(integer) 6

127.0

.0.1:6379>

127.0

.0.1:6379>

127.0

.0.1:6379> sscan myset1 match a*

(error) err invalid cursor

127.0

.0.1:6379> sscan myset1 0 match a*

1) "0"

2) 1) "a1"

2) "a"

127.0

.0.1:6379> sscan myset1 0 match b*

1) "0"

2) 1) "b1"

sscan 支援三個引數cursor=0, match=none, count=none

具體用法看**:

#先新增兩個數字

127.0.0.1:6379> sadd myset1 998, 123

# 用正則匹配大於100的值

127.0.0.1:6379> sscan myset1 0 match "[1-9][0-9][0-9]*"

1) "0"

2) 1) "123"

2) "998,"

#指定count 為1,返回乙個

127.0.0.1:6379> sscan myset1 0 match "[1-9][0-9][0-9]*" count 1

1) "2"

2) 1) "123"

127.0.0.1:6379> sadd myset1 189

(integer) 1

127.0.0.1:6379> sadd myset1 89

127.0.0.1:6379> sscan myset1 0 match "[1-9][0-9][1-9]*"

1) "3"

2) 1) "123"

2) "998,"

3) "189"

#指定cursor

127.0.0.1:6379> sscan myset1 1 match "[1-9][0-9][1-9]*"

1) "0"

2) 1) "189"

# 匹配更複雜的

127.0.0.1:6379> sscan myset1 0 match ""

1) "3"

2) 1) ""

這裡只做簡單介紹,詳細請檢視官網:

filter執行先後問題 Filter執行順序

asp.net mvc framework支援四種不同型別的filter authorization filters 實現iauthorizationfilter介面的屬性.action filters 實現iactionfilter介面的屬性.result filters 實現iresultfil...

filter只過濾jsp不過濾action解決方法

修改在web.xml中的配置,將過濾的配置放到struts前面,如下 checkloginfilter com.alpha.web.filter.checkloginfilter 檢查失敗後需要定向到的頁面 redirecturl login login.jsp 不用檢查使用者的頁面列表,用 分隔 ...

Lucene使用Filter搜尋過濾

排序查詢 param querystr 查詢匹配的字串 param domain 查詢內容的域 param filter 過濾器 public void searchbyfilter string querystr,string domain,filter filter else 輸出資訊 scor...