org.rojo.repository.DefaultGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rojo Show documentation
Show all versions of rojo Show documentation
rojo is a orm lib for redis . this release is a enhancement fork from https://github.com/giulio/rojo .
/**
* default generator
*/
package org.rojo.repository;
import redis.clients.jedis.Jedis;
/**
*
* @author beykery
*/
public class DefaultGenerator extends IdGenerator
{
public DefaultGenerator()
{
}
@Override
public String id(Class claz, String table, Jedis je)
{
return je.incr(table + ":::id").toString();
}
}