ex_sider v0.1.3 RedisMap

Implements Collectable and Access. Doesn’t implement Enumerable, since Redis Key/Value sets should rather not be enumerated. (Its just one big map)

Summary

Functions

Standard delete/2, uses drop/2 under the hood

Drops several keys and their associated values at once. Used by get_and_update

Access implementation

Delegates to Access

See Access.get/3

Access implementation

Access implementation

Standard put/3, based on Access implementation of put_in/2

Functions

delete(container, key)

Standard delete/2, uses drop/2 under the hood

drop(container, keys)

Drops several keys and their associated values at once. Used by get_and_update

fetch(container, key)

Access implementation

get(container, key)

Delegates to Access

get(container, key, default)

See Access.get/3.

get_and_update(container, key, fun)

Access implementation

new(opts \\ [])
pop(container, key)

Access implementation

put(container, key, value)

Standard put/3, based on Access implementation of put_in/2

take(container, keys)