changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / examples/db/tao.lisp

changeset 37: c6d0a37a046a
parent: f54f7cc7458b
child: 1ef551e24009
author: ellis <ellis@rwest.io>
date: Sun, 24 Dec 2023 19:24:39 -0500
permissions: -rw-r--r--
description: mini-redis and vegadat
1 ;;; examples/db/tao.lisp --- Common Lisp implementation of the TAO data model
2 
3 ;; https://research.facebook.com/publications/tao-facebooks-distributed-data-store-for-the-social-graph/
4 
5 ;; a minimal Lisp implementation of TAO.
6 
7 ;;; Code:
8 (defpackage :examples/tao
9  (:use :cl :std :cli :rdb)
10  (:export :main))
11 
12 (in-package :examples/tao)
13 
14 (defmain ())