BinaryRedis.sort

Sort a Set or a List accordingly to the specified parameters and store the result at dstkey. @see #sort(const(ubyte)[], SortingParams) @see #sort(const(ubyte)[]) @see #sort(const(ubyte)[], const(ubyte)[]) @param key @param sortingParameters @param dstkey @return The number of elements of the list at dstkey.

  1. List!(const(ubyte)[]) sort(const(ubyte)[] key)
  2. List!(const(ubyte)[]) sort(const(ubyte)[] key, SortingParams sortingParameters)
  3. Long sort(const(ubyte)[] key, SortingParams sortingParameters, const(ubyte)[] dstkey)
    class BinaryRedis
    Long
    sort
    (
    const(ubyte)[] key
    ,,
    const(ubyte)[] dstkey
    )
  4. Long sort(const(ubyte)[] key, const(ubyte)[] dstkey)

Meta