No description
Find a file
2025-02-16 00:22:38 +05:30
dev initial commit 2025-02-10 19:32:26 +05:30
doc initial commit 2025-02-10 19:32:26 +05:30
resources initial commit 2025-02-10 19:32:26 +05:30
src/dedukt Update Readme 2025-02-15 15:46:27 +05:30
test/dedukt initial commit 2025-02-10 19:32:26 +05:30
.gitignore initial commit 2025-02-10 19:32:26 +05:30
build.clj initial commit 2025-02-10 19:32:26 +05:30
CHANGELOG.md initial commit 2025-02-10 19:32:26 +05:30
deps.edn initial commit 2025-02-10 19:32:26 +05:30
LICENSE initial commit 2025-02-10 19:32:26 +05:30
README.md Add blog link to README 2025-02-16 00:22:38 +05:30

dedukt

A simple datalog query engine.

Based on Domain Modeling With Datalog by Norbert Wojtowicz.

I made this to run the examples in the above talk.

Blog: Making a simple Datalog engine in Clojure

It's currently very basic. It supports variables, joins and not much else. It does not support rules and recursively querying yet.

Run Locally

Make sure Clojure is installed.

clojure -M:repl # starts up a nREPL server

References