Skip to content

Distributed world and agent state for Bluest Eel models

License

Notifications You must be signed in to change notification settings

bluest-eel/state

Repository files navigation

state

Build Status Project Status Go Report Card gopherbadger-tag-do-not-edit Tagged Version

Project Logo

Distributed world and agent state for Bluest Eel models

Getting Started

$ make up
$ make sqlsh
CREATE DATABASE state;
CREATE TABLE state.world (id INT PRIMARY KEY, name VARCHAR);
INSERT INTO state.world VALUES (1, 'test world');
SELECT * FROM state.world;

Then connect to a different node and perform the same select query:

NODE=db3 make sqlsh
SELECT * FROM state.world;
  id |    name
+----+------------+
   1 | test world
(1 row)

Time: 3.2932ms

About

Distributed world and agent state for Bluest Eel models

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages