Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/clojj/functionaldb
https://github.com/clojj/functionaldb
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/clojj/functionaldb
- Owner: clojj
- Created: 2015-11-16T21:57:34.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-16T23:02:39.000Z (about 9 years ago)
- Last Synced: 2023-08-04T08:54:53.936Z (over 1 year ago)
- Language: Clojure
- Size: 537 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FDB
CircleDB is an in-memory, no-sql functional database, written in Clojure.
It is a modest attempt to provide part of the functionality that the Datomic database provides (the main omitted functionality is the durability part).
The core idea is to add the notion of time to the data, and provide on top of the standard CRUD operations, a set of time related operations.
The database itself is a collection of datums. A datum is built of an entity (think of a row in a table)that has its attributes (a column) and the value of that entity's attribute at a given time.
Any update does not overwrite the prvious value, but addes another datum to the database.The database supports both DB "modifying" (modifying as in creating a new DB value) transactions and what-if actions.