Package modelarium.attributes.results.databases
package modelarium.attributes.results.databases
Database-backed storage for attribute-based simulation results.
This package contains implementations that persist attribute result data using database-backed storage mechanisms. These components are intended for scenarios where result volumes are large, long-running simulations are used, or in-memory storage would be impractical.
The database layer abstracts over the underlying persistence technology, allowing result recording and querying to be expressed in terms of attributes rather than database-specific concerns.
Users typically interact with these components through higher-level results abstractions, and should not need to manage database connections or schemas directly.
-
ClassesClassDescriptionAbstract base class representing a database for storing and retrieving simulation results related to attribute sets, including properties and event values.Factory class for creating instances of
AttributeSetResultsDatabase.Concrete implementation ofAttributeSetResultsDatabasethat stores results in an SQLite database file.An in-memory implementation ofAttributeSetResultsDatabase.