marcluque / Phenix

Phenix is an in-memory key-value caching system

Home Page:https://marcluque.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Phenix

Phenix is an in-memory key-value caching system

Description

Installing

  • Install Maven 3
  • Clone/Download this repo
  • Install it with: mvn clean install

Maven local dependency

<dependency>
    <groupId>de.datasec</groupId>
    <artifactId>phenix</artifactId>
    <version>1.0.2-SNAPSHOT</version>
</dependency>

Maven central

It is planned to push this project into the maven central.

If you don't use maven you can download a release version and include it in your project.

Examples

Client

PhenixClient phenixClient = new PhenixClient("localhost", 8888);

This is an easy example of how to create a Phenix client. For detailed information and examples see the client example.

Server

PhenixServer phenixServer = new PhenixServer("localhost", 8888);

This here is an example of how to create a Phenix server. For detailed information and examples see the server example.

License

Licensed under the GNU General Public License, Version 3.0 - see the LICENSE file for details.

About

Phenix is an in-memory key-value caching system

https://marcluque.com

License:GNU General Public License v3.0


Languages

Language:Java 100.0%