Tags
Creators
Details
1.0.0+1.21.1
Compatibility
Required content
Changes
StorageManager API 1.0.0+1.21.1
StorageManager API is a lightweight server-side library mod for Fabric that provides a simple and structured way to store persistent data in Minecraft using SQLite.
It is designed for mod developers who need reliable data storage without reinventing database logic.
š¦ Features
- SQLite-based persistent storage
- Simple table & row abstraction
- Batched writes with automatic caching
- Immediate write support for critical data
- Safe server-side checks to prevent crashes
- Designed to be used as a dependency by other mods
āļø Supported Environment
- Server: Required
- Client: Not supported (loads safely but provides no functionality)
This mod is not intended for client-side usage.
ā ļø Important Notes
- Do not use classes under the
.internalpackage - The API will log warnings if used too early or on the client side
- All database operations are executed on the server
š§© Intended Use
This mod is meant to be used as:
- A dependency for other Fabric server mods
- A backend storage solution for configs, player data, or mod state
š License
MIT
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:PZsESNgE:SUDQpQNJ"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:PZsESNgE:SUDQpQNJ"
}

