rediscl

v0.1.7

  • Pages
  • Modules
  • Mix Tasks

    rediscl v0.1.7 Rediscl.Query.Api View Source

    Query api funcs

    Link to this section Summary

    Functions

    del(keys)
    get(key)
    lpush(key, values)
    lrange(key, start, stop)
    lrem(key, count, value)
    lset(key, index, value)
    mget(keys)
    mset(key_and_values)
    rpush(key, values)
    set(key, value)

    Link to this section Functions

    Link to this function del(keys) View Source
    del(List.t()) :: List.t()
    Link to this function get(key) View Source
    get(String.t()) :: List.t()
    Link to this function lpush(key, values) View Source
    lpush(String.t(), List.t()) :: List.t()
    Link to this function lrange(key, start, stop) View Source
    lrange(String.t(), Integer.t(), Integer.t()) :: List.t()
    Link to this function lrem(key, count, value) View Source
    lrem(String.t(), Integer.t(), String.t()) :: List.t()
    Link to this function lset(key, index, value) View Source
    lset(String.t(), Integer.t(), String.t()) :: List.t()
    Link to this function mget(keys) View Source
    mget(List.t()) :: List.t()
    Link to this function mset(key_and_values) View Source
    mset(List.t()) :: List.t()
    Link to this function rpush(key, values) View Source
    rpush(String.t(), List.t()) :: List.t()
    Link to this function set(key, value) View Source
    set(String.t(), String.t()) :: List.t()

    Built using ExDoc (v0.18.4), designed by Friedel Ziegelmayer.