https://github.com/krangelov/daison
A NoSQL database in Haskell and Python
https://github.com/krangelov/daison
database haskell nosql python storage
Last synced: about 1 month ago
JSON representation
A NoSQL database in Haskell and Python
- Host: GitHub
- URL: https://github.com/krangelov/daison
- Owner: krangelov
- License: bsd-3-clause
- Created: 2018-12-13T06:46:48.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-06-04T11:12:54.000Z (8 months ago)
- Last Synced: 2025-06-04T19:02:16.634Z (8 months ago)
- Topics: database, haskell, nosql, python, storage
- Language: C
- Homepage:
- Size: 721 KB
- Stars: 4
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Daison
Daison (DAta lISt comprehensiON) is an experiment to create a database
which natively stores Haskell data types, instead of using
the traditional SQL tables. The backend storage is SQLite from which
I have stripped all SQL related features. The result is a
simple key-value storage. On top of that there is a Haskell API
which replaces the SQL language. For instance, Queries are simple
list comprehensions generalized to a special monad.
For more details read the [tutorial](doc/tutorial.md).