References
| close/1 | Close a ets data store. |
| delete/2 | Delete an object from the ets. |
| first/1 | Retrieve a first record from the ets. |
| get/2 | Retrieve an object from the ets. |
| open/1 | Open a new ets datastore. |
| open/2 | |
| prefix_search/4 | Retrieve objects from ets by a keyword. |
| put/3 | Insert an object into ets. |
| status/1 | Get the status information for this ets. |
close(Table) -> ok
Close a ets data store
delete(Table, Key) -> ok | not_found | {error, any()}
Delete an object from the ets
first(Table) -> {ok, any()} | not_found | {error, any()}
Retrieve a first record from the ets
get(Table, Key) -> not_found | {ok, binary()} | {error, any()}
Retrieve an object from the ets.
open(Table) -> ok
Open a new ets datastore
open(Table, Option) -> ok
prefix_search(Table, Key, Fun, MaxKeys) -> {ok, list()} | not_found | {error, any()}
Retrieve objects from ets by a keyword.
put(Table, Key, Value) -> ok | {error, any()}
Insert an object into ets.
status(Table) -> [any()] | undefined
Get the status information for this ets.
Generated by EDoc