Flowdock
method

delete_matched

Importance_1
v6.1.3.1 - Show latest stable - 0 notes - Class: RedisCacheStore
delete_matched(matcher, options = nil) public

Cache Store API implementation.

Supports Redis KEYS glob patterns:

h?llo matches hello, hallo and hxllo
h*llo matches hllo and heeeello
h[ae]llo matches hello and hallo, but not hillo
h[^e]llo matches hallo, hbllo, ... but not hello
h[a-b]llo matches hallo and hbllo

Use \ to escape special characters if you want to match them verbatim.

See redis.io/commands/KEYS for more.

Failsafe: Raises errors.

Show source
Register or log in to add new notes.