Skip to content

marcluque/Phenix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.