All Projects → artipie → asto

artipie / asto

Licence: MIT License
Abstract Storage for All Artipie Slices

Programming Languages

java
68154 projects - #9 most used programming language

Labels

Projects that are alternatives of or similar to asto

infinitree
Scalable and encrypted embedded database with 3-tier caching
Stars: ✭ 80 (+400%)
Mutual labels:  storage
persistence
💾 Persistence provides a pretty easy API to handle Storage's implementations.
Stars: ✭ 18 (+12.5%)
Mutual labels:  storage
pvc-autoresizer
Auto-resize PersistentVolumeClaim objects based on Prometheus metrics
Stars: ✭ 124 (+675%)
Mutual labels:  storage
web
realness.online
Stars: ✭ 15 (-6.25%)
Mutual labels:  storage
taucmdr
Performance engineering for the rest of us.
Stars: ✭ 26 (+62.5%)
Mutual labels:  storage
syncr
A rolling, append-only, local and remote data stream library for Go
Stars: ✭ 16 (+0%)
Mutual labels:  storage
xfsvol
Local Docker Volumes with XFS Project Quota
Stars: ✭ 24 (+50%)
Mutual labels:  storage
selectel-storage-php-class
PHP class for Selectel storage
Stars: ✭ 42 (+162.5%)
Mutual labels:  storage
alluxio-py
Alluxio Python client - Access Any Data Source with Python
Stars: ✭ 18 (+12.5%)
Mutual labels:  storage
Less3
Less3 is an S3-compatible object storage server that runs on your laptop, servers, just about anywhere!
Stars: ✭ 16 (+0%)
Mutual labels:  storage
snowfs
SnowFS - a fast, scalable version control file storage for graphic files 🎨
Stars: ✭ 1,101 (+6781.25%)
Mutual labels:  storage
PhantasmaChain
Blockchain with native storage and smart contract integration.
Stars: ✭ 74 (+362.5%)
Mutual labels:  storage
vue-web-storage
Vue.js plugin for local storage and session storage (1.8 kb min+gz) 💾
Stars: ✭ 85 (+431.25%)
Mutual labels:  storage
xayah
WEB文件管理器
Stars: ✭ 19 (+18.75%)
Mutual labels:  storage
elara
Elara DB is an easy to use, lightweight key-value database that can also be used as a fast in-memory cache. Manipulate data structures in-memory, encrypt database files and export data. 🎯
Stars: ✭ 93 (+481.25%)
Mutual labels:  storage
gasper
Gasper is a CLI for safe, privacy-aware file storage based on Shamir's Secret Sharing
Stars: ✭ 37 (+131.25%)
Mutual labels:  storage
incache
Powerful key/value in-memory storage or on disk to persist data
Stars: ✭ 16 (+0%)
Mutual labels:  storage
DTC
DTC is a high performance Distributed Table Cache system designed by JD.com that offering hotspot data cache for databases in order to reduce pressure of database and improve QPS.
Stars: ✭ 21 (+31.25%)
Mutual labels:  storage
FireFiles
Powerful Android File Manager for everything that runs on Android OS (Android TV, Android Watch, Mobile, etc)
Stars: ✭ 37 (+131.25%)
Mutual labels:  storage
todo-list
TodoList using Ionic2/3 & Firebase: * PWA * SSO Google plus. * Share list via QRcode. * Upload image from Camera or Storage. * Speech Recognition.
Stars: ✭ 18 (+12.5%)
Mutual labels:  storage

EO principles respected here DevOps By Rultor.com We recommend IntelliJ IDEA

Build Status Javadoc License codecov Hits-of-Code Maven Central PDD status

Asto stands for Abstract Storage, an abstraction over physical data storage system. The main entity of the library is an interface com.artipie.asto.Storage, a contract which requires to implement the following functionalities:

  • put/get operations
  • transaction support
  • list files in a directory
  • check if a file/directory exists

Dictionary used for ASTO:

  • Storage - key-value based storage
  • Key - storage keys, could be converted to strings
  • Content - storage data, reactive publisher with optional size attribute
  • SubStorage - isolated storage based on origin storage

The list of back-ends supported:

  • FileStorage - file-system based storage, uses paths as keys, stores content in files
  • S3Storage - uses S3 compatible HTTP web-server as storage, uses keys as names and blobs for content
  • EtcdStorage - uses ETCD cluster as storage back-end
  • InMemoryStorage - storage uses HashMap to store data

This is the dependency you need:

<dependency>
  <groupId>com.artipie</groupId>
  <artifactId>asto</artifactId>
  <version>[...]</version>
</dependency>

Read the Javadoc for more technical details.

Usage

The main types here are:

  • Storage interface provides API for key-value storage
  • Key represents storage key
  • Content represents storage binary value

Storage Key and other types are documented in javadoc.

TO DO: add more details

How to contribute

Fork repository, make changes, send us a pull request. We will review your changes and apply them to the master branch shortly, provided they don't violate our quality standards. To avoid frustration, before sending us your pull request please run full Maven build:

$ mvn clean install -Pqulice

To avoid build errors use Maven 3.2+.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].