Codebase list emacs-db / 9abbbb9
better description Sean Whitton 6 years ago
1 changed file(s) with 7 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
1717 Enhances: emacs,
1818 emacs24,
1919 emacs25
20 Description: A database for EmacsLisp
21 This is a simple database interface and implementation.
20 Description: database interface for Emacs Lisp
21 This library provides
22 - a database interface for Emacs Lisp
23 - a sample Emacs hashtable implementation of this interface
24 (not for production)
2225 .
23 It should be possible to specify any kind of key/value database
24 with this interface.
25 .
26 The supplied implementation is an Emacs hash-table implementation
27 backed with serializing objects. It is NOT intended for anything
28 other than very simple use cases and will not scale very well at
29 all.
30 .
31 However, other implementations (mongodb, redis or PostgreSQL
32 hstore) would be easy to implement and fit in here.
26 It should be possible to specify any kind of key/value database with
27 this interface.