Tectonica Commons

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

License

License

GroupId

GroupId

com.tectonica
ArtifactId

ArtifactId

tectonica-kvs
Last Version

Last Version

0.6.1
Release Date

Release Date

Type

Type

jar
Description

Description

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

Project URL

https://github.com/zach-m/tectonica-commons
Project Organization

Project Organization

Tectonica Labs
Source Code Management

Source Code Management

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

Download tectonica-kvs

How to add to project

<!-- 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"]

Dependencies

compile (2)

Group / Artifact Type Version
org.slf4j : slf4j-api jar 1.7.9
com.tectonica : tectonica-commons jar 0.6.1

provided (3)

Group / Artifact Type Version
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)

Group / Artifact Type Version
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

Project Modules

There are no modules declared in this project.

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>

Versions

Version
0.6.1
0.6.0