All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.redis.lettucemod.bloom.TopKInfo Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package com.redis.lettucemod.bloom;

public class TopKInfo {

	private long k;
	private long width;
	private long depth;
	private double decay;

	public long getK() {
		return k;
	}

	public void setK(long k) {
		this.k = k;
	}

	public long getWidth() {
		return width;
	}

	public void setWidth(long width) {
		this.width = width;
	}

	public long getDepth() {
		return depth;
	}

	public void setDepth(long depth) {
		this.depth = depth;
	}

	public double getDecay() {
		return decay;
	}

	public void setDecay(double decay) {
		this.decay = decay;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy