> To isolate the problem, can you verify the base case, connect two > images to a fresh db?
Here's one for SQLite: (asdf:oos 'asdf:load-op 'elephant) (defpackage #:ele-test (:use :cl :elephant)) (in-package :ele-test) (defpclass myclass () ((testslot :accessor testslot :initarg testslot :index t))) (open-store '(:CLSQL (:SQLITE3 "/tmp/db1.sqlite"))) (setf item (make-instance 'myclass)) (dotimes (i 100000) (write-char #\*)(SB-INT:FLUSH-STANDARD-OUTPUT-STREAMS) (setf (testslot item) 5)) The second image failed already at MAKE-INSTANCE. Leslie _______________________________________________ elephant-devel site list elephant-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/elephant-devel