简体   繁体   中英

Get values by key pattern in StackExchange.Redis

I'm trying to use a pattern to retrieve all keys matching a pattern by Stackexchange.Redis .

Code

KEYS *o*

On the project homepage is linked Where are KEYS , SCAN , FLUSHDB etc? which gives full details on how to access this, and why it isn't on IDatabase . I should point out that you should avoid KEYS on a production server. The library will automatically try to use SCAN instead if it is available - which is less harmful but should still be treated with some caution. It would be preferable to explicitly store related keys in a set or hash.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM