Module proto4j.redis
Package org.proto4j.redis
Proto4j-Redis turn your database API from a Java interface into a usable
implementation.
@SQL(SQLiteFactory.FACTORY) public interface UserStorage { @SQL.Select("select * from {table}") public List<User> fetchUsersFrom(@Param("table") String tb); }
- Version:
- 1.0
- Author:
- MatrixEditor, Proto4j
-
Interface Summary Interface Description RedisExtractor<T> A specific type of extractor used by the utility classExtractors
to filter registered extractors and create new instances based on the given type; -
Class Summary Class Description Extractors A utility class used to register newSQLExtractor
instances and get a defined one from the given type.Extractors.ListExtractor Extractors.PrimitiveExtractor Extractors.RawExtractor FactoryManager The basic service for managing a set of SQLFactories.Redis Redis adapts a Java interface into calls to a connected database by using annotations on the declared methods and its parameters.