Tectonica Commons

Simple yet powerful facade for Key-Value store engine, capable of supporting many underlying data-stores

Лицензия

Лицензия

Группа

Группа

com.tectonica
Идентификатор

Идентификатор

tectonica-kvs
Последняя версия

Последняя версия

0.6.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

Tectonica Commons
Simple yet powerful facade for Key-Value store engine, capable of supporting many underlying data-stores
Ссылка на сайт

Ссылка на сайт

https://github.com/zach-m/tectonica-commons
Организация-разработчик

Организация-разработчик

Tectonica Labs
Система контроля версий

Система контроля версий

https://github.com/zach-m/tectonica-kvs.git

Скачать tectonica-kvs

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.tectonica/tectonica-kvs/ -->
<dependency>
    <groupId>com.tectonica</groupId>
    <artifactId>tectonica-kvs</artifactId>
    <version>0.6.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.tectonica/tectonica-kvs/
implementation 'com.tectonica:tectonica-kvs:0.6.1'
// https://jarcasting.com/artifacts/com.tectonica/tectonica-kvs/
implementation ("com.tectonica:tectonica-kvs:0.6.1")
'com.tectonica:tectonica-kvs:jar:0.6.1'
<dependency org="com.tectonica" name="tectonica-kvs" rev="0.6.1">
  <artifact name="tectonica-kvs" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.tectonica', module='tectonica-kvs', version='0.6.1')
)
libraryDependencies += "com.tectonica" % "tectonica-kvs" % "0.6.1"
[com.tectonica/tectonica-kvs "0.6.1"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.slf4j : slf4j-api jar 1.7.9
com.tectonica : tectonica-commons jar 0.6.1

provided (3)

Идентификатор библиотеки Тип Версия
com.google.appengine : appengine-api-1.0-sdk jar 1.9.18
org.xerial : sqlite-jdbc jar 3.8.7
com.google.guava : guava jar 18.0

test (5)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.11
org.slf4j : slf4j-jdk14 jar 1.7.9
com.google.appengine : appengine-testing jar 1.9.18
com.google.appengine : appengine-api-stubs jar 1.9.18
com.google.appengine : appengine-api-labs jar 1.9.18

Модули Проекта

Данный проект не имеет модулей.

tectonica-kvs

Simple, yet powerful, framework (and approach) for handling a key-value store. It allows for multiple concurrent readers but a single concurrent writer to access each entry. It also provides a read-before-update mechanism which makes life simpler and keeps data consistent. Indexing and caching are also supported as part of the framework. The interface is intuitive and straightforward. This framework provides a base class, and a set of subclasses implementing it on several backend persistence engines, including in-memory (which is great for development).

The usage of this framework would probably yield the most benefit when used to prototype a data model, where changes are frequent and not backwards-compatible. However, in more than a few scenarios, this framework can be used in production. The heavy-lifting is done by the backend database and cache either way.

To use in your project, add the following to your pom.xml:

<dependency>
	<groupId>com.tectonica</groupId>
	<artifactId>tectonica-kvs</artifactId>
	<version>0.6.0</version>
</dependency>

Версии библиотеки

Версия
0.6.1
0.6.0