struct Redis::TDigest

Defined in:

tdigest.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(redis : Redis::Commands) #

[View source]

Instance Method Detail

def add(key : String, values : Enumerable(String)) #

[View source]
def add(key : String, *values : String) #

[View source]
def byrank(key : String, values : Enumerable(String)) #

[View source]
def byrank(key : String, *values : String) #

[View source]
def byrevrank(key : String, values : Enumerable(String)) #

[View source]
def byrevrank(key : String, *values : String) #

[View source]
def cdf(key : String, values : Enumerable(String)) #

[View source]
def cdf(key : String, *values : String) #

[View source]
def create(key : String, compression : Int | String | Nil = nil) #

[View source]
def max(key : String) #

[View source]
def merge(destination_key : String, source_keys : Array(String), compression : String | Int | Nil = nil, override : Bool = false) #

[View source]
def min(key : String) #

[View source]
def quantile(key : String, quantiles : Enumerable(String)) #

[View source]
def quantile(key : String, *quantiles : String) #

[View source]
def rank(key : String, values : Enumerable(String)) #

[View source]
def rank(key : String, *values : String) #

[View source]
def reset(key : String) #

[View source]
def revrank(key : String, values : Enumerable(String)) #

[View source]
def revrank(key : String, *values : String) #

[View source]
def trimmed_mean(key : String, low_cut_quantile : String, high_cut_quantile : String) #

[View source]