There are 8 cards with this tag.
There are 1 decks with cards that have this tag.
redis - what does this do?
hset soulmate-data:tasks 1 "{\"term\":\"Take out the trash\"}"
saves value (here a json object) into a soulmate-data:tasks at key 1
- View
- 0 likes
redis - what does this do?
HMGET soulmate-data:tasks 1 2
HMGET = Hash Multiple Get
Gets values at keys 1 and 2 in soulmate-data:tasks
- View
- 0 likes
redis - what does this set name communicate (convention)
soulmate-cache:tasks:ta|bus
intersection of what would be inside soulmate-cache:tasks and soulmate-cache:bus
- View
- 0 likes
redis - what does this do:
ZRANGE soulmate-index:tasks 0 -1
Lists all elements from the set soulmate-index:tasks
(0 means start from the first element, and -1 means continue until the end)
- View
- 0 likes