changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > demo / examples/db/tao.lisp

revision 35: f54f7cc7458b
child 37: c6d0a37a046a
     1.1--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2+++ b/examples/db/tao.lisp	Tue Dec 19 16:46:55 2023 -0500
     1.3@@ -0,0 +1,13 @@
     1.4+;;; tao.lisp --- Common Lisp implementation of the TAO data model
     1.5+
     1.6+;; https://research.facebook.com/publications/tao-facebooks-distributed-data-store-for-the-social-graph/
     1.7+
     1.8+;;; Code:
     1.9+(defpackage :examples/rdb/tao
    1.10+  (:nicknames :tao)
    1.11+  (:use :cl :std :cli :rdb)
    1.12+  (:export :main))
    1.13+
    1.14+(in-package :tao)
    1.15+
    1.16+(defmain ())