Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
MySQL-backed storage driver for sessions, memory, and culture
npm install mysql2
import { MySQLStorage } from "@agentium/core"; const storage = new MySQLStorage({ host: "localhost", port: 3306, user: "root", password: "password", database: "agentium", }); // Or use a connection string const storage = new MySQLStorage({ connectionString: "mysql://root:password@localhost:3306/agentium", });
host
string
"localhost"
port
number
3306
user
"root"
password
""
database
"agentium"
connectionString
tableName
"kv_store"
(namespace VARCHAR(255), key VARCHAR(255), value JSON, PRIMARY KEY(namespace, key))