Skip to content

Instantly share code, notes, and snippets.

View alndvz's full-sized avatar

Allan Davies alndvz

  • Gauteng, South Africa
View GitHub Profile
@alndvz
alndvz / core.clj
Created November 2, 2021 19:35
XTDB History Example
(ns vid9.core
(:require [xtdb.api :as xt]))
(def node (xt/start-node {:xtdb.jdbc/connection-pool {:dialect {:xtdb/module 'xtdb.jdbc.mysql/->dialect}
:db-spec {:host "localhost"
:dbname "xtdbdb"
:user "root"
:password "password"}}
:xtdb/tx-log {:xtdb/module 'xtdb.jdbc/->tx-log
:connection-pool :xtdb.jdbc/connection-pool}