欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Mnesia
来自开放百科 - 灰狐
(版本间的差异)
小 (→功能) |
小 (→项目) |
||
第23行: | 第23行: | ||
==项目== | ==项目== | ||
+ | |||
+ | ==文档== | ||
+ | *[http://docs.huihoo.com/erlang/conference/euc2015/mnesia%2Bleveldb-liberating-mnesia-from-the-limitations-of-DETS.pdf mnesia+leveldb liberating mnesia from the limitations of DETS (and more)] | ||
==图集== | ==图集== |
2017年10月14日 (六) 09:17的版本
您可以在Wikipedia上了解到此条目的英文信息 Mnesia Thanks, Wikipedia. |
mnesia - A distributed telecommunications DBMS
目录 |
简介
Mnesia 是 Erlang 开发的分布式、实时、高可用数据库系统。
功能
ets
ets: Built-in term storage.
dets
dets: A disk-based term storage.
1> dets:open_file(abc, [{type, bag}]). {ok,abc} 2> dets:insert(abc, {1,2,3}). ok 3> dets:insert(abc, {1,3,4}). ok 4> dets:lookup(abc, 1). [{1,2,3},{1,3,4}]
项目
文档
图集
链接
分享您的观点