Universal storage, edition 4
Storage library with unified interface and multiple storage providers.
Supported providers:
- Mongodb
- Flat files: yaml, json
- Redis
- Sqlite
- PostgreSQL
- AWS DynamoDB
- AWS S3
- GCP Datastore
Dependencies:
repositories {
maven {
url "https://mvn.universal-development.com/public"
}
}
dependencies {
implementation 'com.unidev.polydata4:polydata-factory:0.0.6'
}
Usage in Java code:
BasicPoly config = new BasicPoly();
config.put("type", "mongodb");
config.put("uri", "mongodb://localhost:27017");
Polydata polydata = polydataFactory.create(config).get();
Mongodb:
type: mongodb
uri: mongodb://localhost:27017
Flatfile Yaml:
type: flat-file-yaml
root: /data/polydata
JSON:
type: flat-file-json
root: /data/polydata
SQLite:
type: "sqlite"
root: "/data/sqlite"
Cache integration:
cache:
data:
type: jcache
provider: org.ehcache.jsr107.EhcacheCachingProvider
implementationUri: "file://./ehcache.xml"
name: "polydata"
The MIT License (MIT)
Copyright (c) 2022 UNIVERSAL DEVELOPMENT PTE. LTD.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.