redis.clients.jedis.timeseries.TSCreateParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis_preview Show documentation
Show all versions of jedis_preview Show documentation
Jedis is a blazingly small and sane Redis java client.
The newest version!
package redis.clients.jedis.timeseries;
import static redis.clients.jedis.Protocol.toByteArray;
import static redis.clients.jedis.timeseries.TimeSeriesProtocol.TimeSeriesKeyword.*;
import java.util.LinkedHashMap;
import java.util.Map;
import redis.clients.jedis.CommandArguments;
import redis.clients.jedis.params.IParams;
/**
* Represents optional arguments of TS.CREATE command.
*/
public class TSCreateParams implements IParams {
private Long retentionPeriod;
private boolean uncompressed;
private boolean compressed;
private Long chunkSize;
private DuplicatePolicy duplicatePolicy;
private Map labels;
public TSCreateParams() {
}
public static TSCreateParams createParams() {
return new TSCreateParams();
}
public TSCreateParams retention(long retentionPeriod) {
this.retentionPeriod = retentionPeriod;
return this;
}
public TSCreateParams uncompressed() {
this.uncompressed = true;
return this;
}
public TSCreateParams compressed() {
this.compressed = true;
return this;
}
public TSCreateParams chunkSize(long chunkSize) {
this.chunkSize = chunkSize;
return this;
}
public TSCreateParams duplicatePolicy(DuplicatePolicy duplicatePolicy) {
this.duplicatePolicy = duplicatePolicy;
return this;
}
/**
* Set label-value pairs
*
* @param labels label-value pairs
* @return the object itself
*/
public TSCreateParams labels(Map labels) {
this.labels = labels;
return this;
}
/**
* Add label-value pair. Multiple pairs can be added through chaining.
*/
public TSCreateParams label(String label, String value) {
if (this.labels == null) {
this.labels = new LinkedHashMap<>();
}
this.labels.put(label, value);
return this;
}
@Override
public void addParams(CommandArguments args) {
if (retentionPeriod != null) {
args.add(RETENTION).add(toByteArray(retentionPeriod));
}
if (uncompressed) {
args.add(ENCODING).add(UNCOMPRESSED);
} else if (compressed) {
args.add(ENCODING).add(COMPRESSED);
}
if (chunkSize != null) {
args.add(CHUNK_SIZE).add(toByteArray(chunkSize));
}
if (duplicatePolicy != null) {
args.add(DUPLICATE_POLICY).add(duplicatePolicy);
}
if (labels != null) {
args.add(LABELS);
labels.entrySet().forEach((entry) -> args.add(entry.getKey()).add(entry.getValue()));
}
}
}