Packages

Gleam Redis client

Retired package: Release invalid - Broken pending fix

Current section

Files

Jump to
gledis src gledis_ffi.erl
Raw

src/gledis_ffi.erl

-module(gledis_ffi).
-export([null/0, coerce/1, connect/0, close/1, query/2]).
null() ->
null.
coerce(Value) ->
Value.
connect() -> eredis:start_link().
close(pid) -> eredis:stop(pid).
query(client, command) -> eredis:q(client, command).