A simple and lightweight key-value in memory store built on top of https://github.com/D3adspaceEnterprises/skylla - Seraphim uses https://github.com/D3adspaceEnterprises/hawkings for local consumer management. The intention is to provide an easy to use in memory store for little network applications. You can also take a look at https://github.com/D3adspaceEnterprises/heimdall if youre searching for a pub sub service.
- Install Maven
- Clone this repo
- Install:
mvn clean install
Maven dependencies
Repositories:
<repositories>
<repository>
<id>klauke-enterprises-maven-releases</id>
<name>Klauke Enterprises Maven Releases</name>
<url>https://repository.klauke-enterprises.com/repository/maven-releases/</url>
</repository>
<repository>
<id>klauke-enterprises-maven-snapshots</id>
<name>Klauke Enterprises Maven Snapshots</name>
<url>https://repository.klauke-enterprises.com/repository/maven-snapshots/</url>
</repository>
</repositories>
Client:
<dependency>
<groupId>de.d3adspace</groupId>
<artifactId>seraphim-client</artifactId>
<version>1.0.0</version>
</dependency>
Server:
<dependency>
<groupId>de.d3adspace</groupId>
<artifactId>seraphim-server</artifactId>
<version>1.0.0</version>
</dependency>
Commons:
<dependency>
<groupId>de.d3adspace</groupId>
<artifactId>seraphim-commons</artifactId>
<version>1.0.0</version>
</dependency>
package de.d3adspace.seraphim.example;
import de.d3adspace.seraphim.server.SeraphimServer;
/**
* @author Felix 'SasukeKawaii' Klauke
*/
public class SeraphimServerExample {
public static void main(String[] args) {
SeraphimServer seraphimServer = SeraphimServerFactory.createServer("localhost", 8080);
seraphimServer.start();
}
}
package de.d3adspace.seraphim.example;
import de.d3adspace.seraphim.CacheFactory;
import de.d3adspace.seraphim.cache.Cache;
import java.util.UUID;
/**
* @author Felix 'SasukeKawaii' Klauke
*/
public class SeraphimClientExample {
public static void main(String[] args) {
Cache<UUID, UUID> cache = CacheFactory.connectToRemoteCache("localhost", 8080);
UUID uniqueIdKey = UUID.randomUUID();
UUID uniqueIdValue = UUID.randomUUID();
cache.put(uniqueIdKey, uniqueIdValue);
System.out.println(cache.get(uniqueIdKey));
cache.get(uniqueIdKey, new Consumer<UUID>() {
@Override
public void accept(UUID uuid) {
System.out.println(uuid);
}
});
}
}