I want to use TopBraid Composer with the Lisp Edition of AllegroGraph, how do I get started?
TopBraid Composer communicates with AllegroGraph through a server. You first need to install both products. Make sure you have the latest version of TopBraid Composer and all of the patches installed in AllegroGraph. (described in other FAQ answers). First start the AllegroGraph Server. The Lisp editions support the AllegroGraph server in the agraph module. This module includes the function start-agj-server. This function starts the server that allows TBC to access AllegroGraph. At the lisp prompt, after you have loaded AllegroGraph: CG-USER(1) (require :update) CG-USER(2) (system.update:install-allegrograph) CG-USER(3) (require :agraph) type the following: CG-USER(4): (in-package #:db.agraph.user) ; to specify the right package, then type TRIPLE-STORE-USER(5): (start-ag-server) ; to run the function and start the server More detailed information on the AllegroGraph server can be found here, find the function name: /agraph/support/documentation/current/reference-guide.html Then, in Top