Behaviours: gen_server.
| code_change/3 | |
| handle_call/3 | |
| handle_cast/2 | |
| handle_info/2 | |
| init/1 | |
| lookup/1 | |
| lookup/2 | |
| lookup_many/2 | |
| query_preparation_failed/2 | |
| query_was_prepared/2 | |
| remove/1 | |
| start_link/0 | |
| terminate/2 |
code_change(OldVsn, State, Extra) -> any()
handle_call(Request, From, State) -> any()
handle_cast(Msg, State) -> any()
handle_info(Info, State) -> any()
init(Args) -> any()
lookup(Query::#cql_query{}) -> queued | uncached | #cqerl_cached_query{}
lookup(ClientPid, Cql_query) -> any()
lookup_many(ClientPid, Queries) -> any()
query_preparation_failed(Query, Reason) -> any()
query_was_prepared(Key, Result) -> any()
remove(Q::#cql_query{} | [#cql_query{}]) -> ok
start_link() -> any()
terminate(Reason, State) -> any()
Generated by EDoc