Skip to content

Commit

Permalink
Adding implementation to the Redis event repository
Browse files Browse the repository at this point in the history
  • Loading branch information
snavanageri committed Mar 7, 2017
1 parent 2c3c936 commit 1c60e98
Show file tree
Hide file tree
Showing 4 changed files with 526 additions and 301 deletions.
15 changes: 7 additions & 8 deletions ff4j-store-redis/src/main/java/org/ff4j/redis/RedisContants.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,26 @@
* @author Cedrick Lunven (@clunven)
*/
public class RedisContants {

/** prefix of keys. */
public static final String KEY_FEATURE = "FF4J_FEATURE_";

/** prefix of keys. */
public static final String KEY_PROPERTY = "FF4J_PROPERTY_";

/** prefix of keys. */
public static final String KEY_EVENT = "FF4J_EVENT_";

/** prefix of keys. */
public static final String KEY_EVENT_AUDIT = "AUDITRAIL_";
public static final String KEY_EVENT_AUDIT = "AUDITRAIL";

/** default ttl. */
public static int DEFAULT_TTL = 900000000;

/**
* Hide contructor for constants.
*/
private RedisContants() {
}


}
Loading

0 comments on commit 1c60e98

Please sign in to comment.