Guy P
Guy P

Reputation: 1423

A simple clojure implementation of data base

I'm learning Clojure and I'm looking for some existing project (github,etc.) that implements a simple data base principles (CRUD) to learn from.

There is no need of users access, and even saved files, just the basics of implementation of lists\maps as tables and parsing queries for it.

thanks.

EDIT:

This is the final work: QuickDB

Upvotes: 3

Views: 262

Answers (1)

ponzao
ponzao

Reputation: 20934

FleetDB is a simple database implemented in Clojure.

Upvotes: 3

Related Questions