All Projects → afiskon → erlang-simplicitydb

afiskon / erlang-simplicitydb

Licence: other
SimplicityDB, simple file based key-value storage in pure Erlang

Programming Languages

erlang
1774 projects

erlang-simplicitydb

SimplicityDB, simple file based key-value storage in pure Erlang

$ ./rebar compile
$ vim test.config
$ erl -pa ./apps/simplicitydb/ebin -config test.config
1> application:ensure_all_started(simplicitydb). % will take a few seconds
{ok,[simplicitydb]}
2> simplicitydb:write([some,key], [ {k1, v1}, {k2, v2} ]).
ok
3> simplicitydb:read([ some, key ]).
{ok,[{k1,v1},{k2,v2}]}
4> simplicitydb:delete([ some, key ]).
ok
5>

For more details see https://eax.me/erlang-simplicitydb/ and https://redd.it/20mo39

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].