cmds

package
v0.0.100 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 15, 2023 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

View Source
const (

	// InitSlot indicates that the command be sent to any redis node in cluster
	InitSlot = uint16(1 << 14)
	// NoSlot indicates that the command has no key slot specified
	NoSlot = uint16(1 << 15)
)
View Source
const ErrBuiltTwice = "a command should not be built twice"
View Source
const ErrUnfinished = "a command should be finished by calling Build() or Cache()"

Variables

View Source
var (
	// OptInCmd is predefined CLIENT CACHING YES
	OptInCmd = Completed{
				// contains filtered or unexported fields
	}
	// MultiCmd is predefined MULTI
	MultiCmd = Completed{
				// contains filtered or unexported fields
	}
	// ExecCmd is predefined EXEC
	ExecCmd = Completed{
			// contains filtered or unexported fields
	}
	// RoleCmd is predefined ROLE
	RoleCmd = Completed{
			// contains filtered or unexported fields
	}
	// QuitCmd is predefined QUIT
	QuitCmd = Completed{
			// contains filtered or unexported fields
	}
	// UnsubscribeCmd is predefined UNSUBSCRIBE
	UnsubscribeCmd = Completed{
					// contains filtered or unexported fields
	}
	// PUnsubscribeCmd is predefined PUNSUBSCRIBE
	PUnsubscribeCmd = Completed{
					// contains filtered or unexported fields
	}
	// SUnsubscribeCmd is predefined SUNSUBSCRIBE
	SUnsubscribeCmd = Completed{
					// contains filtered or unexported fields
	}
	// PingCmd is predefined PING
	PingCmd = Completed{
			// contains filtered or unexported fields
	}
	// SlotCmd is predefined CLUSTER SLOTS
	SlotCmd = Completed{
			// contains filtered or unexported fields
	}
	// AskingCmd is predefined CLUSTER ASKING
	AskingCmd = Completed{
				// contains filtered or unexported fields
	}
	// SentinelSubscribe is predefined SUBSCRIBE ASKING
	SentinelSubscribe = Completed{
						// contains filtered or unexported fields
	}
)

Functions

func CacheKey added in v0.0.99

func CacheKey(c Cacheable) (key, command string)

CacheKey returns the cache key used by the server-assisted client side caching

func JsonMGets added in v0.0.65

func JsonMGets(keys []string, path string) map[uint16]Completed

JsonMGets groups keys by their slot and returns multi JSON.MGET commands

func MGetCacheCmd added in v0.0.99

func MGetCacheCmd(c Cacheable) string

MGetCacheCmd returns the cache command of the MGET singular command

func MGetCacheKey added in v0.0.99

func MGetCacheKey(c Cacheable, i int) string

MGetCacheKey returns the cache key of the MGET singular command

func MGets added in v0.0.65

func MGets(keys []string) map[uint16]Completed

MGets groups keys by their slot and returns multi MGET commands

func MSetNXs added in v0.0.98

func MSetNXs(kvs map[string]string) map[uint16]Completed

MSetNXs groups keys by their slot and returns multi MSETNX commands

func MSets added in v0.0.98

func MSets(kvs map[string]string) map[uint16]Completed

MSets groups keys by their slot and returns multi MSET commands

func Put added in v0.0.34

func Put(cs *CommandSlice)

func PutCacheable added in v0.0.99

func PutCacheable(c Cacheable)

PutCacheable recycles the Cacheable

func PutCompleted added in v0.0.99

func PutCompleted(c Completed)

PutCompleted recycles the Completed

func ToBlock added in v0.0.99

func ToBlock(c *Completed)

ToBlock marks the command with blockTag

Types

type AclCat

type AclCat Completed

func (AclCat) Build

func (c AclCat) Build() Completed

func (AclCat) Categoryname

func (c AclCat) Categoryname(categoryname string) AclCatCategoryname

type AclCatCategoryname

type AclCatCategoryname Completed

func (AclCatCategoryname) Build

func (c AclCatCategoryname) Build() Completed

type AclDeluser

type AclDeluser Completed

func (AclDeluser) Username

func (c AclDeluser) Username(username ...string) AclDeluserUsername

type AclDeluserUsername

type AclDeluserUsername Completed

func (AclDeluserUsername) Build

func (c AclDeluserUsername) Build() Completed

func (AclDeluserUsername) Username

func (c AclDeluserUsername) Username(username ...string) AclDeluserUsername

type AclDryrun added in v0.0.34

type AclDryrun Completed

func (AclDryrun) Username added in v0.0.34

func (c AclDryrun) Username(username string) AclDryrunUsername

type AclDryrunArg added in v0.0.34

type AclDryrunArg Completed

func (AclDryrunArg) Arg added in v0.0.34

func (c AclDryrunArg) Arg(arg ...string) AclDryrunArg

func (AclDryrunArg) Build added in v0.0.34

func (c AclDryrunArg) Build() Completed

type AclDryrunCommand added in v0.0.34

type AclDryrunCommand Completed

func (AclDryrunCommand) Arg added in v0.0.34

func (c AclDryrunCommand) Arg(arg ...string) AclDryrunArg

func (AclDryrunCommand) Build added in v0.0.34

func (c AclDryrunCommand) Build() Completed

type AclDryrunUsername added in v0.0.34

type AclDryrunUsername Completed

func (AclDryrunUsername) Command added in v0.0.34

func (c AclDryrunUsername) Command(command string) AclDryrunCommand

type AclGenpass

type AclGenpass Completed

func (AclGenpass) Bits

func (c AclGenpass) Bits(bits int64) AclGenpassBits

func (AclGenpass) Build

func (c AclGenpass) Build() Completed

type AclGenpassBits

type AclGenpassBits Completed

func (AclGenpassBits) Build

func (c AclGenpassBits) Build() Completed

type AclGetuser

type AclGetuser Completed

func (AclGetuser) Username

func (c AclGetuser) Username(username string) AclGetuserUsername

type AclGetuserUsername

type AclGetuserUsername Completed

func (AclGetuserUsername) Build

func (c AclGetuserUsername) Build() Completed

type AclHelp

type AclHelp Completed

func (AclHelp) Build

func (c AclHelp) Build() Completed

type AclList

type AclList Completed

func (AclList) Build

func (c AclList) Build() Completed

type AclLoad

type AclLoad Completed

func (AclLoad) Build

func (c AclLoad) Build() Completed

type AclLog

type AclLog Completed

func (AclLog) Count added in v0.0.55

func (c AclLog) Count(count int64) AclLogCountCount

func (AclLog) Reset added in v0.0.55

func (c AclLog) Reset() AclLogCountReset

type AclLogCountCount added in v0.0.55

type AclLogCountCount Completed

func (AclLogCountCount) Build added in v0.0.55

func (c AclLogCountCount) Build() Completed

func (AclLogCountCount) Reset added in v0.0.55

type AclLogCountReset added in v0.0.55

type AclLogCountReset Completed

func (AclLogCountReset) Build added in v0.0.55

func (c AclLogCountReset) Build() Completed

type AclSave

type AclSave Completed

func (AclSave) Build

func (c AclSave) Build() Completed

type AclSetuser

type AclSetuser Completed

func (AclSetuser) Username

func (c AclSetuser) Username(username string) AclSetuserUsername

type AclSetuserRule

type AclSetuserRule Completed

func (AclSetuserRule) Build

func (c AclSetuserRule) Build() Completed

func (AclSetuserRule) Rule

func (c AclSetuserRule) Rule(rule ...string) AclSetuserRule

type AclSetuserUsername

type AclSetuserUsername Completed

func (AclSetuserUsername) Build

func (c AclSetuserUsername) Build() Completed

func (AclSetuserUsername) Rule

func (c AclSetuserUsername) Rule(rule ...string) AclSetuserRule

type AclUsers

type AclUsers Completed

func (AclUsers) Build

func (c AclUsers) Build() Completed

type AclWhoami

type AclWhoami Completed

func (AclWhoami) Build

func (c AclWhoami) Build() Completed

type AiModeldel added in v0.0.37

type AiModeldel Completed

func (AiModeldel) Key added in v0.0.37

func (c AiModeldel) Key(key string) AiModeldelKey

type AiModeldelKey added in v0.0.37

type AiModeldelKey Completed

func (AiModeldelKey) Build added in v0.0.37

func (c AiModeldelKey) Build() Completed

type AiModelexecute added in v0.0.37

type AiModelexecute Completed

func (AiModelexecute) Key added in v0.0.37

type AiModelexecuteInputsInput added in v0.0.37

type AiModelexecuteInputsInput Completed

func (AiModelexecuteInputsInput) Input added in v0.0.37

func (AiModelexecuteInputsInput) Outputs added in v0.0.37

type AiModelexecuteInputsInputs added in v0.0.37

type AiModelexecuteInputsInputs Completed

func (AiModelexecuteInputsInputs) Input added in v0.0.37

type AiModelexecuteKey added in v0.0.37

type AiModelexecuteKey Completed

func (AiModelexecuteKey) Inputs added in v0.0.37

func (c AiModelexecuteKey) Inputs(inputCount int64) AiModelexecuteInputsInputs

type AiModelexecuteOutputsOutput added in v0.0.37

type AiModelexecuteOutputsOutput Completed

func (AiModelexecuteOutputsOutput) Build added in v0.0.37

func (AiModelexecuteOutputsOutput) Cache added in v0.0.37

func (AiModelexecuteOutputsOutput) Output added in v0.0.37

func (AiModelexecuteOutputsOutput) Timeout added in v0.0.37

type AiModelexecuteOutputsOutputs added in v0.0.37

type AiModelexecuteOutputsOutputs Completed

func (AiModelexecuteOutputsOutputs) Output added in v0.0.37

type AiModelexecuteTimeout added in v0.0.37

type AiModelexecuteTimeout Completed

func (AiModelexecuteTimeout) Build added in v0.0.37

func (c AiModelexecuteTimeout) Build() Completed

func (AiModelexecuteTimeout) Cache added in v0.0.37

func (c AiModelexecuteTimeout) Cache() Cacheable

type AiModelget added in v0.0.37

type AiModelget Completed

func (AiModelget) Key added in v0.0.37

func (c AiModelget) Key(key string) AiModelgetKey

type AiModelgetBlob added in v0.0.37

type AiModelgetBlob Completed

func (AiModelgetBlob) Build added in v0.0.37

func (c AiModelgetBlob) Build() Completed

func (AiModelgetBlob) Cache added in v0.0.37

func (c AiModelgetBlob) Cache() Cacheable

type AiModelgetKey added in v0.0.37

type AiModelgetKey Completed

func (AiModelgetKey) Blob added in v0.0.37

func (c AiModelgetKey) Blob() AiModelgetBlob

func (AiModelgetKey) Build added in v0.0.37

func (c AiModelgetKey) Build() Completed

func (AiModelgetKey) Cache added in v0.0.37

func (c AiModelgetKey) Cache() Cacheable

func (AiModelgetKey) Meta added in v0.0.37

func (c AiModelgetKey) Meta() AiModelgetMeta

type AiModelgetMeta added in v0.0.37

type AiModelgetMeta Completed

func (AiModelgetMeta) Blob added in v0.0.37

func (c AiModelgetMeta) Blob() AiModelgetBlob

func (AiModelgetMeta) Build added in v0.0.37

func (c AiModelgetMeta) Build() Completed

func (AiModelgetMeta) Cache added in v0.0.37

func (c AiModelgetMeta) Cache() Cacheable

type AiModelstore added in v0.0.37

type AiModelstore Completed

func (AiModelstore) Key added in v0.0.37

func (c AiModelstore) Key(key string) AiModelstoreKey

type AiModelstoreBackendOnnx added in v0.0.37

type AiModelstoreBackendOnnx Completed

func (AiModelstoreBackendOnnx) Cpu added in v0.0.37

func (AiModelstoreBackendOnnx) Gpu added in v0.0.37

type AiModelstoreBackendTf added in v0.0.37

type AiModelstoreBackendTf Completed

func (AiModelstoreBackendTf) Cpu added in v0.0.37

func (AiModelstoreBackendTf) Gpu added in v0.0.37

type AiModelstoreBackendTorch added in v0.0.37

type AiModelstoreBackendTorch Completed

func (AiModelstoreBackendTorch) Cpu added in v0.0.37

func (AiModelstoreBackendTorch) Gpu added in v0.0.37

type AiModelstoreBatchsize added in v0.0.37

type AiModelstoreBatchsize Completed

func (AiModelstoreBatchsize) Blob added in v0.0.37

func (AiModelstoreBatchsize) Build added in v0.0.37

func (c AiModelstoreBatchsize) Build() Completed

func (AiModelstoreBatchsize) Inputs added in v0.0.37

func (AiModelstoreBatchsize) Minbatchsize added in v0.0.37

func (c AiModelstoreBatchsize) Minbatchsize(minbatchsize int64) AiModelstoreMinbatchsize

func (AiModelstoreBatchsize) Minbatchtimeout added in v0.0.37

func (c AiModelstoreBatchsize) Minbatchtimeout(minbatchtimeout int64) AiModelstoreMinbatchtimeout

func (AiModelstoreBatchsize) Outputs added in v0.0.37

type AiModelstoreBlob added in v0.0.37

type AiModelstoreBlob Completed

func (AiModelstoreBlob) Build added in v0.0.37

func (c AiModelstoreBlob) Build() Completed

type AiModelstoreDeviceCpu added in v0.0.37

type AiModelstoreDeviceCpu Completed

func (AiModelstoreDeviceCpu) Batchsize added in v0.0.37

func (c AiModelstoreDeviceCpu) Batchsize(batchsize int64) AiModelstoreBatchsize

func (AiModelstoreDeviceCpu) Blob added in v0.0.37

func (AiModelstoreDeviceCpu) Build added in v0.0.37

func (c AiModelstoreDeviceCpu) Build() Completed

func (AiModelstoreDeviceCpu) Inputs added in v0.0.37

func (AiModelstoreDeviceCpu) Minbatchsize added in v0.0.37

func (c AiModelstoreDeviceCpu) Minbatchsize(minbatchsize int64) AiModelstoreMinbatchsize

func (AiModelstoreDeviceCpu) Minbatchtimeout added in v0.0.37

func (c AiModelstoreDeviceCpu) Minbatchtimeout(minbatchtimeout int64) AiModelstoreMinbatchtimeout

func (AiModelstoreDeviceCpu) Outputs added in v0.0.37

func (AiModelstoreDeviceCpu) Tag added in v0.0.37

type AiModelstoreDeviceGpu added in v0.0.37

type AiModelstoreDeviceGpu Completed

func (AiModelstoreDeviceGpu) Batchsize added in v0.0.37

func (c AiModelstoreDeviceGpu) Batchsize(batchsize int64) AiModelstoreBatchsize

func (AiModelstoreDeviceGpu) Blob added in v0.0.37

func (AiModelstoreDeviceGpu) Build added in v0.0.37

func (c AiModelstoreDeviceGpu) Build() Completed

func (AiModelstoreDeviceGpu) Inputs added in v0.0.37

func (AiModelstoreDeviceGpu) Minbatchsize added in v0.0.37

func (c AiModelstoreDeviceGpu) Minbatchsize(minbatchsize int64) AiModelstoreMinbatchsize

func (AiModelstoreDeviceGpu) Minbatchtimeout added in v0.0.37

func (c AiModelstoreDeviceGpu) Minbatchtimeout(minbatchtimeout int64) AiModelstoreMinbatchtimeout

func (AiModelstoreDeviceGpu) Outputs added in v0.0.37

func (AiModelstoreDeviceGpu) Tag added in v0.0.37

type AiModelstoreInputsInput added in v0.0.37

type AiModelstoreInputsInput Completed

func (AiModelstoreInputsInput) Blob added in v0.0.37

func (AiModelstoreInputsInput) Build added in v0.0.37

func (AiModelstoreInputsInput) Input added in v0.0.37

func (AiModelstoreInputsInput) Outputs added in v0.0.37

type AiModelstoreInputsInputs added in v0.0.37

type AiModelstoreInputsInputs Completed

func (AiModelstoreInputsInputs) Input added in v0.0.37

type AiModelstoreKey added in v0.0.37

type AiModelstoreKey Completed

func (AiModelstoreKey) Onnx added in v0.0.37

func (AiModelstoreKey) Tf added in v0.0.37

func (AiModelstoreKey) Torch added in v0.0.37

type AiModelstoreMinbatchsize added in v0.0.37

type AiModelstoreMinbatchsize Completed

func (AiModelstoreMinbatchsize) Blob added in v0.0.37

func (AiModelstoreMinbatchsize) Build added in v0.0.37

func (AiModelstoreMinbatchsize) Inputs added in v0.0.37

func (AiModelstoreMinbatchsize) Minbatchtimeout added in v0.0.37

func (c AiModelstoreMinbatchsize) Minbatchtimeout(minbatchtimeout int64) AiModelstoreMinbatchtimeout

func (AiModelstoreMinbatchsize) Outputs added in v0.0.37

type AiModelstoreMinbatchtimeout added in v0.0.37

type AiModelstoreMinbatchtimeout Completed

func (AiModelstoreMinbatchtimeout) Blob added in v0.0.37

func (AiModelstoreMinbatchtimeout) Build added in v0.0.37

func (AiModelstoreMinbatchtimeout) Inputs added in v0.0.37

func (AiModelstoreMinbatchtimeout) Outputs added in v0.0.37

type AiModelstoreOutputsOutput added in v0.0.37

type AiModelstoreOutputsOutput Completed

func (AiModelstoreOutputsOutput) Blob added in v0.0.37

func (AiModelstoreOutputsOutput) Build added in v0.0.37

func (AiModelstoreOutputsOutput) Output added in v0.0.37

type AiModelstoreOutputsOutputs added in v0.0.37

type AiModelstoreOutputsOutputs Completed

func (AiModelstoreOutputsOutputs) Output added in v0.0.37

type AiModelstoreTag added in v0.0.37

type AiModelstoreTag Completed

func (AiModelstoreTag) Batchsize added in v0.0.37

func (c AiModelstoreTag) Batchsize(batchsize int64) AiModelstoreBatchsize

func (AiModelstoreTag) Blob added in v0.0.37

func (AiModelstoreTag) Build added in v0.0.37

func (c AiModelstoreTag) Build() Completed

func (AiModelstoreTag) Inputs added in v0.0.37

func (c AiModelstoreTag) Inputs(inputCount int64) AiModelstoreInputsInputs

func (AiModelstoreTag) Minbatchsize added in v0.0.37

func (c AiModelstoreTag) Minbatchsize(minbatchsize int64) AiModelstoreMinbatchsize

func (AiModelstoreTag) Minbatchtimeout added in v0.0.37

func (c AiModelstoreTag) Minbatchtimeout(minbatchtimeout int64) AiModelstoreMinbatchtimeout

func (AiModelstoreTag) Outputs added in v0.0.37

func (c AiModelstoreTag) Outputs(outputCount int64) AiModelstoreOutputsOutputs

type AiScriptdel added in v0.0.37

type AiScriptdel Completed

func (AiScriptdel) Key added in v0.0.37

func (c AiScriptdel) Key(key string) AiScriptdelKey

type AiScriptdelKey added in v0.0.37

type AiScriptdelKey Completed

func (AiScriptdelKey) Build added in v0.0.37

func (c AiScriptdelKey) Build() Completed

type AiScriptexecute added in v0.0.37

type AiScriptexecute Completed

func (AiScriptexecute) Key added in v0.0.37

type AiScriptexecuteArgsArg added in v0.0.37

type AiScriptexecuteArgsArg Completed

func (AiScriptexecuteArgsArg) Arg added in v0.0.37

func (AiScriptexecuteArgsArg) Build added in v0.0.37

func (AiScriptexecuteArgsArg) Outputs added in v0.0.37

func (AiScriptexecuteArgsArg) Timeout added in v0.0.37

type AiScriptexecuteArgsArgs added in v0.0.37

type AiScriptexecuteArgsArgs Completed

func (AiScriptexecuteArgsArgs) Arg added in v0.0.37

type AiScriptexecuteFunction added in v0.0.37

type AiScriptexecuteFunction Completed

func (AiScriptexecuteFunction) Args added in v0.0.37

func (AiScriptexecuteFunction) Build added in v0.0.37

func (AiScriptexecuteFunction) Inputs added in v0.0.37

func (AiScriptexecuteFunction) Keys added in v0.0.37

func (AiScriptexecuteFunction) Outputs added in v0.0.37

func (AiScriptexecuteFunction) Timeout added in v0.0.37

type AiScriptexecuteInputsInput added in v0.0.37

type AiScriptexecuteInputsInput Completed

func (AiScriptexecuteInputsInput) Args added in v0.0.37

func (AiScriptexecuteInputsInput) Build added in v0.0.37

func (AiScriptexecuteInputsInput) Input added in v0.0.37

func (AiScriptexecuteInputsInput) Outputs added in v0.0.37

func (AiScriptexecuteInputsInput) Timeout added in v0.0.37

type AiScriptexecuteInputsInputs added in v0.0.37

type AiScriptexecuteInputsInputs Completed

func (AiScriptexecuteInputsInputs) Input added in v0.0.37

type AiScriptexecuteKey added in v0.0.37

type AiScriptexecuteKey Completed

func (AiScriptexecuteKey) Function added in v0.0.37

func (c AiScriptexecuteKey) Function(function string) AiScriptexecuteFunction

type AiScriptexecuteKeysKey added in v0.0.37

type AiScriptexecuteKeysKey Completed

func (AiScriptexecuteKeysKey) Args added in v0.0.37

func (AiScriptexecuteKeysKey) Build added in v0.0.37

func (AiScriptexecuteKeysKey) Inputs added in v0.0.37

func (AiScriptexecuteKeysKey) Key added in v0.0.37

func (AiScriptexecuteKeysKey) Outputs added in v0.0.37

func (AiScriptexecuteKeysKey) Timeout added in v0.0.37

type AiScriptexecuteKeysKeys added in v0.0.37

type AiScriptexecuteKeysKeys Completed

func (AiScriptexecuteKeysKeys) Key added in v0.0.37

type AiScriptexecuteOutputsOutput added in v0.0.37

type AiScriptexecuteOutputsOutput Completed

func (AiScriptexecuteOutputsOutput) Build added in v0.0.37

func (AiScriptexecuteOutputsOutput) Output added in v0.0.37

func (AiScriptexecuteOutputsOutput) Timeout added in v0.0.37

type AiScriptexecuteOutputsOutputs added in v0.0.37

type AiScriptexecuteOutputsOutputs Completed

func (AiScriptexecuteOutputsOutputs) Output added in v0.0.37

type AiScriptexecuteTimeout added in v0.0.37

type AiScriptexecuteTimeout Completed

func (AiScriptexecuteTimeout) Build added in v0.0.37

type AiScriptget added in v0.0.37

type AiScriptget Completed

func (AiScriptget) Key added in v0.0.37

func (c AiScriptget) Key(key string) AiScriptgetKey

type AiScriptgetKey added in v0.0.37

type AiScriptgetKey Completed

func (AiScriptgetKey) Build added in v0.0.37

func (c AiScriptgetKey) Build() Completed

func (AiScriptgetKey) Cache added in v0.0.37

func (c AiScriptgetKey) Cache() Cacheable

func (AiScriptgetKey) Meta added in v0.0.37

func (AiScriptgetKey) Source added in v0.0.37

func (c AiScriptgetKey) Source() AiScriptgetSource

type AiScriptgetMeta added in v0.0.37

type AiScriptgetMeta Completed

func (AiScriptgetMeta) Build added in v0.0.37

func (c AiScriptgetMeta) Build() Completed

func (AiScriptgetMeta) Cache added in v0.0.37

func (c AiScriptgetMeta) Cache() Cacheable

func (AiScriptgetMeta) Source added in v0.0.37

type AiScriptgetSource added in v0.0.37

type AiScriptgetSource Completed

func (AiScriptgetSource) Build added in v0.0.37

func (c AiScriptgetSource) Build() Completed

func (AiScriptgetSource) Cache added in v0.0.37

func (c AiScriptgetSource) Cache() Cacheable

type AiScriptstore added in v0.0.37

type AiScriptstore Completed

func (AiScriptstore) Key added in v0.0.37

type AiScriptstoreDeviceCpu added in v0.0.37

type AiScriptstoreDeviceCpu Completed

func (AiScriptstoreDeviceCpu) EntryPoints added in v0.0.37

func (c AiScriptstoreDeviceCpu) EntryPoints(entryPointCount int64) AiScriptstoreEntryPointsEntryPoints

func (AiScriptstoreDeviceCpu) Tag added in v0.0.37

type AiScriptstoreDeviceGpu added in v0.0.37

type AiScriptstoreDeviceGpu Completed

func (AiScriptstoreDeviceGpu) EntryPoints added in v0.0.37

func (c AiScriptstoreDeviceGpu) EntryPoints(entryPointCount int64) AiScriptstoreEntryPointsEntryPoints

func (AiScriptstoreDeviceGpu) Tag added in v0.0.37

type AiScriptstoreEntryPointsEntryPoint added in v0.0.37

type AiScriptstoreEntryPointsEntryPoint Completed

func (AiScriptstoreEntryPointsEntryPoint) Build added in v0.0.37

func (AiScriptstoreEntryPointsEntryPoint) EntryPoint added in v0.0.37

type AiScriptstoreEntryPointsEntryPoints added in v0.0.37

type AiScriptstoreEntryPointsEntryPoints Completed

func (AiScriptstoreEntryPointsEntryPoints) EntryPoint added in v0.0.37

type AiScriptstoreKey added in v0.0.37

type AiScriptstoreKey Completed

func (AiScriptstoreKey) Cpu added in v0.0.37

func (AiScriptstoreKey) Gpu added in v0.0.37

type AiScriptstoreTag added in v0.0.37

type AiScriptstoreTag Completed

func (AiScriptstoreTag) EntryPoints added in v0.0.37

func (c AiScriptstoreTag) EntryPoints(entryPointCount int64) AiScriptstoreEntryPointsEntryPoints

type AiTensorget added in v0.0.37

type AiTensorget Completed

func (AiTensorget) Key added in v0.0.37

func (c AiTensorget) Key(key string) AiTensorgetKey

type AiTensorgetFormatBlob added in v0.0.37

type AiTensorgetFormatBlob Completed

func (AiTensorgetFormatBlob) Build added in v0.0.37

func (c AiTensorgetFormatBlob) Build() Completed

func (AiTensorgetFormatBlob) Cache added in v0.0.37

func (c AiTensorgetFormatBlob) Cache() Cacheable

type AiTensorgetFormatValues added in v0.0.37

type AiTensorgetFormatValues Completed

func (AiTensorgetFormatValues) Build added in v0.0.37

func (AiTensorgetFormatValues) Cache added in v0.0.37

type AiTensorgetKey added in v0.0.37

type AiTensorgetKey Completed

func (AiTensorgetKey) Meta added in v0.0.37

type AiTensorgetMeta added in v0.0.37

type AiTensorgetMeta Completed

func (AiTensorgetMeta) Blob added in v0.0.37

func (AiTensorgetMeta) Build added in v0.0.37

func (c AiTensorgetMeta) Build() Completed

func (AiTensorgetMeta) Cache added in v0.0.37

func (c AiTensorgetMeta) Cache() Cacheable

func (AiTensorgetMeta) Values added in v0.0.37

type AiTensorset added in v0.0.37

type AiTensorset Completed

func (AiTensorset) Key added in v0.0.37

func (c AiTensorset) Key(key string) AiTensorsetKey

type AiTensorsetBlob added in v0.0.37

type AiTensorsetBlob Completed

func (AiTensorsetBlob) Build added in v0.0.37

func (c AiTensorsetBlob) Build() Completed

func (AiTensorsetBlob) Values added in v0.0.37

func (c AiTensorsetBlob) Values(value ...string) AiTensorsetValues

type AiTensorsetKey added in v0.0.37

type AiTensorsetKey Completed

func (AiTensorsetKey) Bool added in v0.0.37

func (AiTensorsetKey) Double added in v0.0.37

func (AiTensorsetKey) Float added in v0.0.37

func (AiTensorsetKey) Int16 added in v0.0.37

func (AiTensorsetKey) Int32 added in v0.0.37

func (AiTensorsetKey) Int64 added in v0.0.37

func (AiTensorsetKey) Int8 added in v0.0.37

func (AiTensorsetKey) String added in v0.0.37

func (AiTensorsetKey) Uint16 added in v0.0.37

func (AiTensorsetKey) Uint8 added in v0.0.37

type AiTensorsetShape added in v0.0.37

type AiTensorsetShape Completed

func (AiTensorsetShape) Blob added in v0.0.37

func (AiTensorsetShape) Build added in v0.0.37

func (c AiTensorsetShape) Build() Completed

func (AiTensorsetShape) Shape added in v0.0.37

func (c AiTensorsetShape) Shape(shape ...int64) AiTensorsetShape

func (AiTensorsetShape) Values added in v0.0.37

func (c AiTensorsetShape) Values(value ...string) AiTensorsetValues

type AiTensorsetTypeBool added in v0.0.37

type AiTensorsetTypeBool Completed

func (AiTensorsetTypeBool) Shape added in v0.0.37

func (c AiTensorsetTypeBool) Shape(shape ...int64) AiTensorsetShape

type AiTensorsetTypeDouble added in v0.0.37

type AiTensorsetTypeDouble Completed

func (AiTensorsetTypeDouble) Shape added in v0.0.37

func (c AiTensorsetTypeDouble) Shape(shape ...int64) AiTensorsetShape

type AiTensorsetTypeFloat added in v0.0.37

type AiTensorsetTypeFloat Completed

func (AiTensorsetTypeFloat) Shape added in v0.0.37

func (c AiTensorsetTypeFloat) Shape(shape ...int64) AiTensorsetShape

type AiTensorsetTypeInt16 added in v0.0.37

type AiTensorsetTypeInt16 Completed

func (AiTensorsetTypeInt16) Shape added in v0.0.37

func (c AiTensorsetTypeInt16) Shape(shape ...int64) AiTensorsetShape

type AiTensorsetTypeInt32 added in v0.0.37

type AiTensorsetTypeInt32 Completed

func (AiTensorsetTypeInt32) Shape added in v0.0.37

func (c AiTensorsetTypeInt32) Shape(shape ...int64) AiTensorsetShape

type AiTensorsetTypeInt64 added in v0.0.37

type AiTensorsetTypeInt64 Completed

func (AiTensorsetTypeInt64) Shape added in v0.0.37

func (c AiTensorsetTypeInt64) Shape(shape ...int64) AiTensorsetShape

type AiTensorsetTypeInt8 added in v0.0.37

type AiTensorsetTypeInt8 Completed

func (AiTensorsetTypeInt8) Shape added in v0.0.37

func (c AiTensorsetTypeInt8) Shape(shape ...int64) AiTensorsetShape

type AiTensorsetTypeString added in v0.0.37

type AiTensorsetTypeString Completed

func (AiTensorsetTypeString) Shape added in v0.0.37

func (c AiTensorsetTypeString) Shape(shape ...int64) AiTensorsetShape

type AiTensorsetTypeUint16 added in v0.0.37

type AiTensorsetTypeUint16 Completed

func (AiTensorsetTypeUint16) Shape added in v0.0.37

func (c AiTensorsetTypeUint16) Shape(shape ...int64) AiTensorsetShape

type AiTensorsetTypeUint8 added in v0.0.37

type AiTensorsetTypeUint8 Completed

func (AiTensorsetTypeUint8) Shape added in v0.0.37

func (c AiTensorsetTypeUint8) Shape(shape ...int64) AiTensorsetShape

type AiTensorsetValues added in v0.0.37

type AiTensorsetValues Completed

func (AiTensorsetValues) Build added in v0.0.37

func (c AiTensorsetValues) Build() Completed

func (AiTensorsetValues) Values added in v0.0.37

func (c AiTensorsetValues) Values(value ...string) AiTensorsetValues

type Append

type Append Completed

func (Append) Key

func (c Append) Key(key string) AppendKey

type AppendKey

type AppendKey Completed

func (AppendKey) Value

func (c AppendKey) Value(value string) AppendValue

type AppendValue

type AppendValue Completed

func (AppendValue) Build

func (c AppendValue) Build() Completed

type Arbitrary added in v0.0.38

type Arbitrary Completed

Arbitrary allows user to build an arbitrary redis command with Builder.Arbitrary

func (Arbitrary) Args added in v0.0.38

func (c Arbitrary) Args(args ...string) Arbitrary

Args is used to construct non-key parts of the command.

func (Arbitrary) Blocking added in v0.0.38

func (c Arbitrary) Blocking() Completed

Blocking is used to complete constructing a command and mark it as blocking command. Blocking command will occupy a connection from a separated connection pool.

func (Arbitrary) Build added in v0.0.38

func (c Arbitrary) Build() Completed

Build is used to complete constructing a command

func (Arbitrary) IsZero added in v0.0.68

func (c Arbitrary) IsZero() bool

IsZero is used to test if Arbitrary is initialized

func (Arbitrary) Keys added in v0.0.38

func (c Arbitrary) Keys(keys ...string) Arbitrary

Keys calculate which key slot the command belongs to. Users must use Keys to construct the key part of the command, otherwise the command will not be sent to correct redis node.

func (Arbitrary) MultiGet added in v0.0.68

func (c Arbitrary) MultiGet() Completed

MultiGet is used to complete constructing a command and mark it as mtGetTag command.

func (Arbitrary) ReadOnly added in v0.0.38

func (c Arbitrary) ReadOnly() Completed

ReadOnly is used to complete constructing a command and mark it as readonly command. ReadOnly will be retried under network issues.

type Asking

type Asking Completed

func (Asking) Build

func (c Asking) Build() Completed

type Auth

type Auth Completed

func (Auth) Password

func (c Auth) Password(password string) AuthPassword

func (Auth) Username

func (c Auth) Username(username string) AuthUsername

type AuthPassword

type AuthPassword Completed

func (AuthPassword) Build

func (c AuthPassword) Build() Completed

type AuthUsername

type AuthUsername Completed

func (AuthUsername) Password

func (c AuthUsername) Password(password string) AuthPassword

type BfAdd added in v0.0.2

type BfAdd Completed

func (BfAdd) Key added in v0.0.2

func (c BfAdd) Key(key string) BfAddKey

type BfAddItem added in v0.0.2

type BfAddItem Completed

func (BfAddItem) Build added in v0.0.2

func (c BfAddItem) Build() Completed

type BfAddKey added in v0.0.2

type BfAddKey Completed

func (BfAddKey) Item added in v0.0.2

func (c BfAddKey) Item(item string) BfAddItem

type BfCard added in v0.0.91

type BfCard Completed

func (BfCard) Key added in v0.0.91

func (c BfCard) Key(key string) BfCardKey

type BfCardKey added in v0.0.91

type BfCardKey Completed

func (BfCardKey) Build added in v0.0.91

func (c BfCardKey) Build() Completed

type BfExists added in v0.0.2

type BfExists Completed

func (BfExists) Key added in v0.0.2

func (c BfExists) Key(key string) BfExistsKey

type BfExistsItem added in v0.0.2

type BfExistsItem Completed

func (BfExistsItem) Build added in v0.0.2

func (c BfExistsItem) Build() Completed

func (BfExistsItem) Cache added in v0.0.2

func (c BfExistsItem) Cache() Cacheable

type BfExistsKey added in v0.0.2

type BfExistsKey Completed

func (BfExistsKey) Item added in v0.0.2

func (c BfExistsKey) Item(item string) BfExistsItem

type BfInfo added in v0.0.2

type BfInfo Completed

func (BfInfo) Key added in v0.0.2

func (c BfInfo) Key(key string) BfInfoKey

type BfInfoKey added in v0.0.2

type BfInfoKey Completed

func (BfInfoKey) Build added in v0.0.2

func (c BfInfoKey) Build() Completed

func (BfInfoKey) Cache added in v0.0.2

func (c BfInfoKey) Cache() Cacheable

func (BfInfoKey) Capacity added in v0.0.81

func (c BfInfoKey) Capacity() BfInfoSingleValueCapacity

func (BfInfoKey) Expansion added in v0.0.81

func (c BfInfoKey) Expansion() BfInfoSingleValueExpansion

func (BfInfoKey) Filters added in v0.0.81

func (c BfInfoKey) Filters() BfInfoSingleValueFilters

func (BfInfoKey) Items added in v0.0.81

func (BfInfoKey) Size added in v0.0.81

type BfInfoSingleValueCapacity added in v0.0.81

type BfInfoSingleValueCapacity Completed

func (BfInfoSingleValueCapacity) Build added in v0.0.81

func (BfInfoSingleValueCapacity) Cache added in v0.0.81

type BfInfoSingleValueExpansion added in v0.0.81

type BfInfoSingleValueExpansion Completed

func (BfInfoSingleValueExpansion) Build added in v0.0.81

func (BfInfoSingleValueExpansion) Cache added in v0.0.81

type BfInfoSingleValueFilters added in v0.0.81

type BfInfoSingleValueFilters Completed

func (BfInfoSingleValueFilters) Build added in v0.0.81

func (BfInfoSingleValueFilters) Cache added in v0.0.81

type BfInfoSingleValueItems added in v0.0.81

type BfInfoSingleValueItems Completed

func (BfInfoSingleValueItems) Build added in v0.0.81

func (BfInfoSingleValueItems) Cache added in v0.0.81

type BfInfoSingleValueSize added in v0.0.81

type BfInfoSingleValueSize Completed

func (BfInfoSingleValueSize) Build added in v0.0.81

func (c BfInfoSingleValueSize) Build() Completed

func (BfInfoSingleValueSize) Cache added in v0.0.81

func (c BfInfoSingleValueSize) Cache() Cacheable

type BfInsert added in v0.0.2

type BfInsert Completed

func (BfInsert) Key added in v0.0.2

func (c BfInsert) Key(key string) BfInsertKey

type BfInsertCapacity added in v0.0.2

type BfInsertCapacity Completed

func (BfInsertCapacity) Error added in v0.0.2

func (c BfInsertCapacity) Error(error float64) BfInsertError

func (BfInsertCapacity) Expansion added in v0.0.2

func (c BfInsertCapacity) Expansion(expansion int64) BfInsertExpansion

func (BfInsertCapacity) Items added in v0.0.2

func (c BfInsertCapacity) Items() BfInsertItems

func (BfInsertCapacity) Nocreate added in v0.0.2

func (c BfInsertCapacity) Nocreate() BfInsertNocreate

func (BfInsertCapacity) Nonscaling added in v0.0.2

func (c BfInsertCapacity) Nonscaling() BfInsertNonscaling

type BfInsertError added in v0.0.2

type BfInsertError Completed

func (BfInsertError) Expansion added in v0.0.2

func (c BfInsertError) Expansion(expansion int64) BfInsertExpansion

func (BfInsertError) Items added in v0.0.2

func (c BfInsertError) Items() BfInsertItems

func (BfInsertError) Nocreate added in v0.0.2

func (c BfInsertError) Nocreate() BfInsertNocreate

func (BfInsertError) Nonscaling added in v0.0.2

func (c BfInsertError) Nonscaling() BfInsertNonscaling

type BfInsertExpansion added in v0.0.2

type BfInsertExpansion Completed

func (BfInsertExpansion) Items added in v0.0.2

func (c BfInsertExpansion) Items() BfInsertItems

func (BfInsertExpansion) Nocreate added in v0.0.2

func (c BfInsertExpansion) Nocreate() BfInsertNocreate

func (BfInsertExpansion) Nonscaling added in v0.0.2

func (c BfInsertExpansion) Nonscaling() BfInsertNonscaling

type BfInsertItem added in v0.0.2

type BfInsertItem Completed

func (BfInsertItem) Build added in v0.0.2

func (c BfInsertItem) Build() Completed

func (BfInsertItem) Item added in v0.0.2

func (c BfInsertItem) Item(item ...string) BfInsertItem

type BfInsertItems added in v0.0.2

type BfInsertItems Completed

func (BfInsertItems) Item added in v0.0.2

func (c BfInsertItems) Item(item ...string) BfInsertItem

type BfInsertKey added in v0.0.2

type BfInsertKey Completed

func (BfInsertKey) Capacity added in v0.0.2

func (c BfInsertKey) Capacity(capacity int64) BfInsertCapacity

func (BfInsertKey) Error added in v0.0.2

func (c BfInsertKey) Error(error float64) BfInsertError

func (BfInsertKey) Expansion added in v0.0.2

func (c BfInsertKey) Expansion(expansion int64) BfInsertExpansion

func (BfInsertKey) Items added in v0.0.2

func (c BfInsertKey) Items() BfInsertItems

func (BfInsertKey) Nocreate added in v0.0.2

func (c BfInsertKey) Nocreate() BfInsertNocreate

func (BfInsertKey) Nonscaling added in v0.0.2

func (c BfInsertKey) Nonscaling() BfInsertNonscaling

type BfInsertNocreate added in v0.0.2

type BfInsertNocreate Completed

func (BfInsertNocreate) Items added in v0.0.2

func (c BfInsertNocreate) Items() BfInsertItems

func (BfInsertNocreate) Nonscaling added in v0.0.2

func (c BfInsertNocreate) Nonscaling() BfInsertNonscaling

type BfInsertNonscaling added in v0.0.2

type BfInsertNonscaling Completed

func (BfInsertNonscaling) Items added in v0.0.2

type BfLoadchunk added in v0.0.2

type BfLoadchunk Completed

func (BfLoadchunk) Key added in v0.0.2

func (c BfLoadchunk) Key(key string) BfLoadchunkKey

type BfLoadchunkData added in v0.0.2

type BfLoadchunkData Completed

func (BfLoadchunkData) Build added in v0.0.2

func (c BfLoadchunkData) Build() Completed

type BfLoadchunkIterator added in v0.0.2

type BfLoadchunkIterator Completed

func (BfLoadchunkIterator) Data added in v0.0.2

type BfLoadchunkKey added in v0.0.2

type BfLoadchunkKey Completed

func (BfLoadchunkKey) Iterator added in v0.0.2

func (c BfLoadchunkKey) Iterator(iterator int64) BfLoadchunkIterator

type BfMadd added in v0.0.2

type BfMadd Completed

func (BfMadd) Key added in v0.0.2

func (c BfMadd) Key(key string) BfMaddKey

type BfMaddItem added in v0.0.2

type BfMaddItem Completed

func (BfMaddItem) Build added in v0.0.2

func (c BfMaddItem) Build() Completed

func (BfMaddItem) Item added in v0.0.2

func (c BfMaddItem) Item(item ...string) BfMaddItem

type BfMaddKey added in v0.0.2

type BfMaddKey Completed

func (BfMaddKey) Item added in v0.0.2

func (c BfMaddKey) Item(item ...string) BfMaddItem

type BfMexists added in v0.0.2

type BfMexists Completed

func (BfMexists) Key added in v0.0.2

func (c BfMexists) Key(key string) BfMexistsKey

type BfMexistsItem added in v0.0.2

type BfMexistsItem Completed

func (BfMexistsItem) Build added in v0.0.2

func (c BfMexistsItem) Build() Completed

func (BfMexistsItem) Item added in v0.0.2

func (c BfMexistsItem) Item(item ...string) BfMexistsItem

type BfMexistsKey added in v0.0.2

type BfMexistsKey Completed

func (BfMexistsKey) Item added in v0.0.2

func (c BfMexistsKey) Item(item ...string) BfMexistsItem

type BfReserve added in v0.0.2

type BfReserve Completed

func (BfReserve) Key added in v0.0.2

func (c BfReserve) Key(key string) BfReserveKey

type BfReserveCapacity added in v0.0.2

type BfReserveCapacity Completed

func (BfReserveCapacity) Build added in v0.0.2

func (c BfReserveCapacity) Build() Completed

func (BfReserveCapacity) Expansion added in v0.0.2

func (c BfReserveCapacity) Expansion(expansion int64) BfReserveExpansion

func (BfReserveCapacity) Nonscaling added in v0.0.2

func (c BfReserveCapacity) Nonscaling() BfReserveNonscaling

type BfReserveErrorRate added in v0.0.2

type BfReserveErrorRate Completed

func (BfReserveErrorRate) Capacity added in v0.0.2

func (c BfReserveErrorRate) Capacity(capacity int64) BfReserveCapacity

type BfReserveExpansion added in v0.0.2

type BfReserveExpansion Completed

func (BfReserveExpansion) Build added in v0.0.2

func (c BfReserveExpansion) Build() Completed

func (BfReserveExpansion) Nonscaling added in v0.0.2

func (c BfReserveExpansion) Nonscaling() BfReserveNonscaling

type BfReserveKey added in v0.0.2

type BfReserveKey Completed

func (BfReserveKey) ErrorRate added in v0.0.2

func (c BfReserveKey) ErrorRate(errorRate float64) BfReserveErrorRate

type BfReserveNonscaling added in v0.0.2

type BfReserveNonscaling Completed

func (BfReserveNonscaling) Build added in v0.0.2

func (c BfReserveNonscaling) Build() Completed

type BfScandump added in v0.0.2

type BfScandump Completed

func (BfScandump) Key added in v0.0.2

func (c BfScandump) Key(key string) BfScandumpKey

type BfScandumpIterator added in v0.0.2

type BfScandumpIterator Completed

func (BfScandumpIterator) Build added in v0.0.2

func (c BfScandumpIterator) Build() Completed

type BfScandumpKey added in v0.0.2

type BfScandumpKey Completed

func (BfScandumpKey) Iterator added in v0.0.2

func (c BfScandumpKey) Iterator(iterator int64) BfScandumpIterator

type Bgrewriteaof

type Bgrewriteaof Completed

func (Bgrewriteaof) Build

func (c Bgrewriteaof) Build() Completed

type Bgsave

type Bgsave Completed

func (Bgsave) Build

func (c Bgsave) Build() Completed

func (Bgsave) Schedule

func (c Bgsave) Schedule() BgsaveSchedule

type BgsaveSchedule added in v0.0.2

type BgsaveSchedule Completed

func (BgsaveSchedule) Build added in v0.0.2

func (c BgsaveSchedule) Build() Completed

type Bitcount

type Bitcount Completed

func (Bitcount) Key

func (c Bitcount) Key(key string) BitcountKey

type BitcountIndexEnd added in v0.0.2

type BitcountIndexEnd Completed

func (BitcountIndexEnd) Bit added in v0.0.2

func (BitcountIndexEnd) Build added in v0.0.2

func (c BitcountIndexEnd) Build() Completed

func (BitcountIndexEnd) Byte added in v0.0.2

func (BitcountIndexEnd) Cache added in v0.0.2

func (c BitcountIndexEnd) Cache() Cacheable

type BitcountIndexIndexUnitBit added in v0.0.2

type BitcountIndexIndexUnitBit Completed

func (BitcountIndexIndexUnitBit) Build added in v0.0.2

func (BitcountIndexIndexUnitBit) Cache added in v0.0.2

type BitcountIndexIndexUnitByte added in v0.0.2

type BitcountIndexIndexUnitByte Completed

func (BitcountIndexIndexUnitByte) Build added in v0.0.2

func (BitcountIndexIndexUnitByte) Cache added in v0.0.2

type BitcountIndexStart added in v0.0.2

type BitcountIndexStart Completed

func (BitcountIndexStart) End added in v0.0.2

type BitcountKey

type BitcountKey Completed

func (BitcountKey) Build

func (c BitcountKey) Build() Completed

func (BitcountKey) Cache

func (c BitcountKey) Cache() Cacheable

func (BitcountKey) Start added in v0.0.2

func (c BitcountKey) Start(start int64) BitcountIndexStart

type Bitfield

type Bitfield Completed

func (Bitfield) Key

func (c Bitfield) Key(key string) BitfieldKey

type BitfieldKey

type BitfieldKey Completed

func (BitfieldKey) Build

func (c BitfieldKey) Build() Completed

func (BitfieldKey) Get

func (c BitfieldKey) Get(encoding string, offset int64) BitfieldOperationGet

func (BitfieldKey) Incrby

func (c BitfieldKey) Incrby(encoding string, offset int64, increment int64) BitfieldOperationWriteSetIncrby

func (BitfieldKey) OverflowFail added in v0.0.2

func (BitfieldKey) OverflowSat added in v0.0.2

func (BitfieldKey) OverflowWrap added in v0.0.2

func (BitfieldKey) Set

func (c BitfieldKey) Set(encoding string, offset int64, value int64) BitfieldOperationWriteSetSet

type BitfieldOperationGet added in v0.0.54

type BitfieldOperationGet Completed

func (BitfieldOperationGet) Incrby added in v0.0.54

func (c BitfieldOperationGet) Incrby(encoding string, offset int64, increment int64) BitfieldOperationWriteSetIncrby

func (BitfieldOperationGet) OverflowFail added in v0.0.54

func (BitfieldOperationGet) OverflowSat added in v0.0.54

func (BitfieldOperationGet) OverflowWrap added in v0.0.54

func (BitfieldOperationGet) Set added in v0.0.54

func (c BitfieldOperationGet) Set(encoding string, offset int64, value int64) BitfieldOperationWriteSetSet

type BitfieldOperationWriteOverflowFail added in v0.0.54

type BitfieldOperationWriteOverflowFail Completed

func (BitfieldOperationWriteOverflowFail) Incrby added in v0.0.54

func (BitfieldOperationWriteOverflowFail) Set added in v0.0.54

type BitfieldOperationWriteOverflowSat added in v0.0.54

type BitfieldOperationWriteOverflowSat Completed

func (BitfieldOperationWriteOverflowSat) Incrby added in v0.0.54

func (BitfieldOperationWriteOverflowSat) Set added in v0.0.54

type BitfieldOperationWriteOverflowWrap added in v0.0.54

type BitfieldOperationWriteOverflowWrap Completed

func (BitfieldOperationWriteOverflowWrap) Incrby added in v0.0.54

func (BitfieldOperationWriteOverflowWrap) Set added in v0.0.54

type BitfieldOperationWriteSetIncrby added in v0.0.54

type BitfieldOperationWriteSetIncrby Completed

func (BitfieldOperationWriteSetIncrby) Build added in v0.0.54

func (BitfieldOperationWriteSetIncrby) Get added in v0.0.54

func (BitfieldOperationWriteSetIncrby) Incrby added in v0.0.54

func (BitfieldOperationWriteSetIncrby) OverflowFail added in v0.0.54

func (BitfieldOperationWriteSetIncrby) OverflowSat added in v0.0.54

func (BitfieldOperationWriteSetIncrby) OverflowWrap added in v0.0.54

func (BitfieldOperationWriteSetIncrby) Set added in v0.0.54

type BitfieldOperationWriteSetSet added in v0.0.54

type BitfieldOperationWriteSetSet Completed

func (BitfieldOperationWriteSetSet) Build added in v0.0.54

func (BitfieldOperationWriteSetSet) Get added in v0.0.54

func (BitfieldOperationWriteSetSet) Incrby added in v0.0.54

func (c BitfieldOperationWriteSetSet) Incrby(encoding string, offset int64, increment int64) BitfieldOperationWriteSetIncrby

func (BitfieldOperationWriteSetSet) OverflowFail added in v0.0.54

func (BitfieldOperationWriteSetSet) OverflowSat added in v0.0.54

func (BitfieldOperationWriteSetSet) OverflowWrap added in v0.0.54

func (BitfieldOperationWriteSetSet) Set added in v0.0.54

type BitfieldRo

type BitfieldRo Completed

func (BitfieldRo) Key

func (c BitfieldRo) Key(key string) BitfieldRoKey

type BitfieldRoGet

type BitfieldRoGet Completed

func (BitfieldRoGet) Build

func (c BitfieldRoGet) Build() Completed

func (BitfieldRoGet) Cache

func (c BitfieldRoGet) Cache() Cacheable

func (BitfieldRoGet) Get added in v0.0.54

func (c BitfieldRoGet) Get(encoding string, offset int64) BitfieldRoGet

type BitfieldRoKey

type BitfieldRoKey Completed

func (BitfieldRoKey) Build added in v0.0.95

func (c BitfieldRoKey) Build() Completed

func (BitfieldRoKey) Cache added in v0.0.95

func (c BitfieldRoKey) Cache() Cacheable

func (BitfieldRoKey) Get

func (c BitfieldRoKey) Get() BitfieldRoGet

type Bitop

type Bitop Completed

func (Bitop) And added in v0.0.95

func (c Bitop) And() BitopOperationAnd

func (Bitop) Not added in v0.0.95

func (c Bitop) Not() BitopOperationNot

func (Bitop) Or added in v0.0.95

func (c Bitop) Or() BitopOperationOr

func (Bitop) Xor added in v0.0.95

func (c Bitop) Xor() BitopOperationXor

type BitopDestkey

type BitopDestkey Completed

func (BitopDestkey) Key

func (c BitopDestkey) Key(key ...string) BitopKey

type BitopKey

type BitopKey Completed

func (BitopKey) Build

func (c BitopKey) Build() Completed

func (BitopKey) Key

func (c BitopKey) Key(key ...string) BitopKey

type BitopOperationAnd added in v0.0.95

type BitopOperationAnd Completed

func (BitopOperationAnd) Destkey added in v0.0.95

func (c BitopOperationAnd) Destkey(destkey string) BitopDestkey

type BitopOperationNot added in v0.0.95

type BitopOperationNot Completed

func (BitopOperationNot) Destkey added in v0.0.95

func (c BitopOperationNot) Destkey(destkey string) BitopDestkey

type BitopOperationOr added in v0.0.95

type BitopOperationOr Completed

func (BitopOperationOr) Destkey added in v0.0.95

func (c BitopOperationOr) Destkey(destkey string) BitopDestkey

type BitopOperationXor added in v0.0.95

type BitopOperationXor Completed

func (BitopOperationXor) Destkey added in v0.0.95

func (c BitopOperationXor) Destkey(destkey string) BitopDestkey

type Bitpos

type Bitpos Completed

func (Bitpos) Key

func (c Bitpos) Key(key string) BitposKey

type BitposBit

type BitposBit Completed

func (BitposBit) Build

func (c BitposBit) Build() Completed

func (BitposBit) Cache

func (c BitposBit) Cache() Cacheable

func (BitposBit) Start

func (c BitposBit) Start(start int64) BitposIndexStart

type BitposIndexEndIndexEnd added in v0.0.2

type BitposIndexEndIndexEnd Completed

func (BitposIndexEndIndexEnd) Bit added in v0.0.2

func (BitposIndexEndIndexEnd) Build added in v0.0.2

func (BitposIndexEndIndexEnd) Byte added in v0.0.2

func (BitposIndexEndIndexEnd) Cache added in v0.0.2

type BitposIndexEndIndexIndexUnitBit added in v0.0.2

type BitposIndexEndIndexIndexUnitBit Completed

func (BitposIndexEndIndexIndexUnitBit) Build added in v0.0.2

func (BitposIndexEndIndexIndexUnitBit) Cache added in v0.0.2

type BitposIndexEndIndexIndexUnitByte added in v0.0.2

type BitposIndexEndIndexIndexUnitByte Completed

func (BitposIndexEndIndexIndexUnitByte) Build added in v0.0.2

func (BitposIndexEndIndexIndexUnitByte) Cache added in v0.0.2

type BitposIndexStart

type BitposIndexStart Completed

func (BitposIndexStart) Build

func (c BitposIndexStart) Build() Completed

func (BitposIndexStart) Cache

func (c BitposIndexStart) Cache() Cacheable

func (BitposIndexStart) End

type BitposKey

type BitposKey Completed

func (BitposKey) Bit

func (c BitposKey) Bit(bit int64) BitposBit

type Blmove

type Blmove Completed

func (Blmove) Source

func (c Blmove) Source(source string) BlmoveSource

type BlmoveDestination

type BlmoveDestination Completed

func (BlmoveDestination) Left

func (BlmoveDestination) Right

type BlmoveSource

type BlmoveSource Completed

func (BlmoveSource) Destination

func (c BlmoveSource) Destination(destination string) BlmoveDestination

type BlmoveTimeout

type BlmoveTimeout Completed

func (BlmoveTimeout) Build

func (c BlmoveTimeout) Build() Completed

type BlmoveWherefromLeft

type BlmoveWherefromLeft Completed

func (BlmoveWherefromLeft) Left

func (BlmoveWherefromLeft) Right

type BlmoveWherefromRight

type BlmoveWherefromRight Completed

func (BlmoveWherefromRight) Left

func (BlmoveWherefromRight) Right

type BlmoveWheretoLeft

type BlmoveWheretoLeft Completed

func (BlmoveWheretoLeft) Timeout

func (c BlmoveWheretoLeft) Timeout(timeout float64) BlmoveTimeout

type BlmoveWheretoRight

type BlmoveWheretoRight Completed

func (BlmoveWheretoRight) Timeout

func (c BlmoveWheretoRight) Timeout(timeout float64) BlmoveTimeout

type Blmpop

type Blmpop Completed

func (Blmpop) Timeout

func (c Blmpop) Timeout(timeout float64) BlmpopTimeout

type BlmpopCount

type BlmpopCount Completed

func (BlmpopCount) Build

func (c BlmpopCount) Build() Completed

type BlmpopKey

type BlmpopKey Completed

func (BlmpopKey) Key

func (c BlmpopKey) Key(key ...string) BlmpopKey

func (BlmpopKey) Left

func (c BlmpopKey) Left() BlmpopWhereLeft

func (BlmpopKey) Right

func (c BlmpopKey) Right() BlmpopWhereRight

type BlmpopNumkeys

type BlmpopNumkeys Completed

func (BlmpopNumkeys) Key

func (c BlmpopNumkeys) Key(key ...string) BlmpopKey

type BlmpopTimeout

type BlmpopTimeout Completed

func (BlmpopTimeout) Numkeys

func (c BlmpopTimeout) Numkeys(numkeys int64) BlmpopNumkeys

type BlmpopWhereLeft

type BlmpopWhereLeft Completed

func (BlmpopWhereLeft) Build

func (c BlmpopWhereLeft) Build() Completed

func (BlmpopWhereLeft) Count

func (c BlmpopWhereLeft) Count(count int64) BlmpopCount

type BlmpopWhereRight

type BlmpopWhereRight Completed

func (BlmpopWhereRight) Build

func (c BlmpopWhereRight) Build() Completed

func (BlmpopWhereRight) Count

func (c BlmpopWhereRight) Count(count int64) BlmpopCount

type Blpop

type Blpop Completed

func (Blpop) Key

func (c Blpop) Key(key ...string) BlpopKey

type BlpopKey

type BlpopKey Completed

func (BlpopKey) Key

func (c BlpopKey) Key(key ...string) BlpopKey

func (BlpopKey) Timeout

func (c BlpopKey) Timeout(timeout float64) BlpopTimeout

type BlpopTimeout

type BlpopTimeout Completed

func (BlpopTimeout) Build

func (c BlpopTimeout) Build() Completed

type Brpop

type Brpop Completed

func (Brpop) Key

func (c Brpop) Key(key ...string) BrpopKey

type BrpopKey

type BrpopKey Completed

func (BrpopKey) Key

func (c BrpopKey) Key(key ...string) BrpopKey

func (BrpopKey) Timeout

func (c BrpopKey) Timeout(timeout float64) BrpopTimeout

type BrpopTimeout

type BrpopTimeout Completed

func (BrpopTimeout) Build

func (c BrpopTimeout) Build() Completed

type Brpoplpush

type Brpoplpush Completed

func (Brpoplpush) Source

func (c Brpoplpush) Source(source string) BrpoplpushSource

type BrpoplpushDestination

type BrpoplpushDestination Completed

func (BrpoplpushDestination) Timeout

func (c BrpoplpushDestination) Timeout(timeout float64) BrpoplpushTimeout

type BrpoplpushSource

type BrpoplpushSource Completed

func (BrpoplpushSource) Destination

func (c BrpoplpushSource) Destination(destination string) BrpoplpushDestination

type BrpoplpushTimeout

type BrpoplpushTimeout Completed

func (BrpoplpushTimeout) Build

func (c BrpoplpushTimeout) Build() Completed

type Builder

type Builder struct {
	// contains filtered or unexported fields
}

Builder builds commands by reusing CommandSlice from the sync.Pool

func NewBuilder

func NewBuilder(initSlot uint16) Builder

NewBuilder creates a Builder and initializes the internal sync.Pool

func (Builder) AclCat

func (b Builder) AclCat() (c AclCat)

func (Builder) AclDeluser

func (b Builder) AclDeluser() (c AclDeluser)

func (Builder) AclDryrun added in v0.0.34

func (b Builder) AclDryrun() (c AclDryrun)

func (Builder) AclGenpass

func (b Builder) AclGenpass() (c AclGenpass)

func (Builder) AclGetuser

func (b Builder) AclGetuser() (c AclGetuser)

func (Builder) AclHelp

func (b Builder) AclHelp() (c AclHelp)

func (Builder) AclList

func (b Builder) AclList() (c AclList)

func (Builder) AclLoad

func (b Builder) AclLoad() (c AclLoad)

func (Builder) AclLog

func (b Builder) AclLog() (c AclLog)

func (Builder) AclSave

func (b Builder) AclSave() (c AclSave)

func (Builder) AclSetuser

func (b Builder) AclSetuser() (c AclSetuser)

func (Builder) AclUsers

func (b Builder) AclUsers() (c AclUsers)

func (Builder) AclWhoami

func (b Builder) AclWhoami() (c AclWhoami)

func (Builder) AiModeldel added in v0.0.37

func (b Builder) AiModeldel() (c AiModeldel)

func (Builder) AiModelexecute added in v0.0.37

func (b Builder) AiModelexecute() (c AiModelexecute)

func (Builder) AiModelget added in v0.0.37

func (b Builder) AiModelget() (c AiModelget)

func (Builder) AiModelstore added in v0.0.37

func (b Builder) AiModelstore() (c AiModelstore)

func (Builder) AiScriptdel added in v0.0.37

func (b Builder) AiScriptdel() (c AiScriptdel)

func (Builder) AiScriptexecute added in v0.0.37

func (b Builder) AiScriptexecute() (c AiScriptexecute)

func (Builder) AiScriptget added in v0.0.37

func (b Builder) AiScriptget() (c AiScriptget)

func (Builder) AiScriptstore added in v0.0.37

func (b Builder) AiScriptstore() (c AiScriptstore)

func (Builder) AiTensorget added in v0.0.37

func (b Builder) AiTensorget() (c AiTensorget)

func (Builder) AiTensorset added in v0.0.37

func (b Builder) AiTensorset() (c AiTensorset)

func (Builder) Append

func (b Builder) Append() (c Append)

func (Builder) Arbitrary added in v0.0.38

func (b Builder) Arbitrary(token ...string) (c Arbitrary)

Arbitrary allows user to build an arbitrary redis command by following Arbitrary.Keys and Arbitrary.Args

func (Builder) Asking

func (b Builder) Asking() (c Asking)

func (Builder) Auth

func (b Builder) Auth() (c Auth)

func (Builder) BfAdd added in v0.0.2

func (b Builder) BfAdd() (c BfAdd)

func (Builder) BfCard added in v0.0.91

func (b Builder) BfCard() (c BfCard)

func (Builder) BfExists added in v0.0.2

func (b Builder) BfExists() (c BfExists)

func (Builder) BfInfo added in v0.0.2

func (b Builder) BfInfo() (c BfInfo)

func (Builder) BfInsert added in v0.0.2

func (b Builder) BfInsert() (c BfInsert)

func (Builder) BfLoadchunk added in v0.0.2

func (b Builder) BfLoadchunk() (c BfLoadchunk)

func (Builder) BfMadd added in v0.0.2

func (b Builder) BfMadd() (c BfMadd)

func (Builder) BfMexists added in v0.0.2

func (b Builder) BfMexists() (c BfMexists)

func (Builder) BfReserve added in v0.0.2

func (b Builder) BfReserve() (c BfReserve)

func (Builder) BfScandump added in v0.0.2

func (b Builder) BfScandump() (c BfScandump)

func (Builder) Bgrewriteaof

func (b Builder) Bgrewriteaof() (c Bgrewriteaof)

func (Builder) Bgsave

func (b Builder) Bgsave() (c Bgsave)

func (Builder) Bitcount

func (b Builder) Bitcount() (c Bitcount)

func (Builder) Bitfield

func (b Builder) Bitfield() (c Bitfield)

func (Builder) BitfieldRo

func (b Builder) BitfieldRo() (c BitfieldRo)

func (Builder) Bitop

func (b Builder) Bitop() (c Bitop)

func (Builder) Bitpos

func (b Builder) Bitpos() (c Bitpos)

func (Builder) Blmove

func (b Builder) Blmove() (c Blmove)

func (Builder) Blmpop

func (b Builder) Blmpop() (c Blmpop)

func (Builder) Blpop

func (b Builder) Blpop() (c Blpop)

func (Builder) Brpop

func (b Builder) Brpop() (c Brpop)

func (Builder) Brpoplpush

func (b Builder) Brpoplpush() (c Brpoplpush)

func (Builder) Bzmpop added in v0.0.2

func (b Builder) Bzmpop() (c Bzmpop)

func (Builder) Bzpopmax

func (b Builder) Bzpopmax() (c Bzpopmax)

func (Builder) Bzpopmin

func (b Builder) Bzpopmin() (c Bzpopmin)

func (Builder) CfAdd added in v0.0.2

func (b Builder) CfAdd() (c CfAdd)

func (Builder) CfAddnx added in v0.0.2

func (b Builder) CfAddnx() (c CfAddnx)

func (Builder) CfCount added in v0.0.2

func (b Builder) CfCount() (c CfCount)

func (Builder) CfDel added in v0.0.2

func (b Builder) CfDel() (c CfDel)

func (Builder) CfExists added in v0.0.2

func (b Builder) CfExists() (c CfExists)

func (Builder) CfInfo added in v0.0.2

func (b Builder) CfInfo() (c CfInfo)

func (Builder) CfInsert added in v0.0.2

func (b Builder) CfInsert() (c CfInsert)

func (Builder) CfInsertnx added in v0.0.2

func (b Builder) CfInsertnx() (c CfInsertnx)

func (Builder) CfLoadchunk added in v0.0.2

func (b Builder) CfLoadchunk() (c CfLoadchunk)

func (Builder) CfMexists added in v0.0.2

func (b Builder) CfMexists() (c CfMexists)

func (Builder) CfReserve added in v0.0.2

func (b Builder) CfReserve() (c CfReserve)

func (Builder) CfScandump added in v0.0.2

func (b Builder) CfScandump() (c CfScandump)

func (Builder) ClientCaching

func (b Builder) ClientCaching() (c ClientCaching)

func (Builder) ClientGetname

func (b Builder) ClientGetname() (c ClientGetname)

func (Builder) ClientGetredir

func (b Builder) ClientGetredir() (c ClientGetredir)

func (Builder) ClientId

func (b Builder) ClientId() (c ClientId)

func (Builder) ClientInfo

func (b Builder) ClientInfo() (c ClientInfo)

func (Builder) ClientKill

func (b Builder) ClientKill() (c ClientKill)

func (Builder) ClientList

func (b Builder) ClientList() (c ClientList)

func (Builder) ClientNoEvict

func (b Builder) ClientNoEvict() (c ClientNoEvict)

func (Builder) ClientNoTouch added in v0.0.96

func (b Builder) ClientNoTouch() (c ClientNoTouch)

func (Builder) ClientPause

func (b Builder) ClientPause() (c ClientPause)

func (Builder) ClientReply

func (b Builder) ClientReply() (c ClientReply)

func (Builder) ClientSetinfo added in v0.0.96

func (b Builder) ClientSetinfo() (c ClientSetinfo)

func (Builder) ClientSetname

func (b Builder) ClientSetname() (c ClientSetname)

func (Builder) ClientTracking

func (b Builder) ClientTracking() (c ClientTracking)

func (Builder) ClientTrackinginfo

func (b Builder) ClientTrackinginfo() (c ClientTrackinginfo)

func (Builder) ClientUnblock

func (b Builder) ClientUnblock() (c ClientUnblock)

func (Builder) ClientUnpause

func (b Builder) ClientUnpause() (c ClientUnpause)

func (Builder) ClusterAddslots

func (b Builder) ClusterAddslots() (c ClusterAddslots)

func (Builder) ClusterAddslotsrange added in v0.0.2

func (b Builder) ClusterAddslotsrange() (c ClusterAddslotsrange)

func (Builder) ClusterBumpepoch

func (b Builder) ClusterBumpepoch() (c ClusterBumpepoch)

func (Builder) ClusterCountFailureReports

func (b Builder) ClusterCountFailureReports() (c ClusterCountFailureReports)

func (Builder) ClusterCountkeysinslot

func (b Builder) ClusterCountkeysinslot() (c ClusterCountkeysinslot)

func (Builder) ClusterDelslots

func (b Builder) ClusterDelslots() (c ClusterDelslots)

func (Builder) ClusterDelslotsrange added in v0.0.2

func (b Builder) ClusterDelslotsrange() (c ClusterDelslotsrange)

func (Builder) ClusterFailover

func (b Builder) ClusterFailover() (c ClusterFailover)

func (Builder) ClusterFlushslots

func (b Builder) ClusterFlushslots() (c ClusterFlushslots)

func (Builder) ClusterForget

func (b Builder) ClusterForget() (c ClusterForget)

func (Builder) ClusterGetkeysinslot

func (b Builder) ClusterGetkeysinslot() (c ClusterGetkeysinslot)

func (Builder) ClusterInfo

func (b Builder) ClusterInfo() (c ClusterInfo)

func (Builder) ClusterKeyslot

func (b Builder) ClusterKeyslot() (c ClusterKeyslot)
func (b Builder) ClusterLinks() (c ClusterLinks)

func (Builder) ClusterMeet

func (b Builder) ClusterMeet() (c ClusterMeet)

func (Builder) ClusterMyid

func (b Builder) ClusterMyid() (c ClusterMyid)

func (Builder) ClusterMyshardid added in v0.0.95

func (b Builder) ClusterMyshardid() (c ClusterMyshardid)

func (Builder) ClusterNodes

func (b Builder) ClusterNodes() (c ClusterNodes)

func (Builder) ClusterReplicas

func (b Builder) ClusterReplicas() (c ClusterReplicas)

func (Builder) ClusterReplicate

func (b Builder) ClusterReplicate() (c ClusterReplicate)

func (Builder) ClusterReset

func (b Builder) ClusterReset() (c ClusterReset)

func (Builder) ClusterSaveconfig

func (b Builder) ClusterSaveconfig() (c ClusterSaveconfig)

func (Builder) ClusterSetConfigEpoch

func (b Builder) ClusterSetConfigEpoch() (c ClusterSetConfigEpoch)

func (Builder) ClusterSetslot

func (b Builder) ClusterSetslot() (c ClusterSetslot)

func (Builder) ClusterShards added in v0.0.42

func (b Builder) ClusterShards() (c ClusterShards)

func (Builder) ClusterSlaves

func (b Builder) ClusterSlaves() (c ClusterSlaves)

func (Builder) ClusterSlots

func (b Builder) ClusterSlots() (c ClusterSlots)

func (Builder) CmsIncrby added in v0.0.2

func (b Builder) CmsIncrby() (c CmsIncrby)

func (Builder) CmsInfo added in v0.0.2

func (b Builder) CmsInfo() (c CmsInfo)

func (Builder) CmsInitbydim added in v0.0.2

func (b Builder) CmsInitbydim() (c CmsInitbydim)

func (Builder) CmsInitbyprob added in v0.0.2

func (b Builder) CmsInitbyprob() (c CmsInitbyprob)

func (Builder) CmsMerge added in v0.0.2

func (b Builder) CmsMerge() (c CmsMerge)

func (Builder) CmsQuery added in v0.0.2

func (b Builder) CmsQuery() (c CmsQuery)

func (Builder) Command

func (b Builder) Command() (c Command)

func (Builder) CommandCount

func (b Builder) CommandCount() (c CommandCount)

func (Builder) CommandDocs added in v0.0.34

func (b Builder) CommandDocs() (c CommandDocs)

func (Builder) CommandGetkeys

func (b Builder) CommandGetkeys() (c CommandGetkeys)

func (Builder) CommandGetkeysandflags added in v0.0.38

func (b Builder) CommandGetkeysandflags() (c CommandGetkeysandflags)

func (Builder) CommandInfo

func (b Builder) CommandInfo() (c CommandInfo)

func (Builder) CommandList added in v0.0.34

func (b Builder) CommandList() (c CommandList)

func (Builder) ConfigGet

func (b Builder) ConfigGet() (c ConfigGet)

func (Builder) ConfigResetstat

func (b Builder) ConfigResetstat() (c ConfigResetstat)

func (Builder) ConfigRewrite

func (b Builder) ConfigRewrite() (c ConfigRewrite)

func (Builder) ConfigSet

func (b Builder) ConfigSet() (c ConfigSet)

func (Builder) Copy

func (b Builder) Copy() (c Copy)

func (Builder) Dbsize

func (b Builder) Dbsize() (c Dbsize)

func (Builder) DebugObject

func (b Builder) DebugObject() (c DebugObject)

func (Builder) DebugSegfault

func (b Builder) DebugSegfault() (c DebugSegfault)

func (Builder) Decr

func (b Builder) Decr() (c Decr)

func (Builder) Decrby

func (b Builder) Decrby() (c Decrby)

func (Builder) Del

func (b Builder) Del() (c Del)

func (Builder) Discard

func (b Builder) Discard() (c Discard)

func (Builder) Dump

func (b Builder) Dump() (c Dump)

func (Builder) Echo

func (b Builder) Echo() (c Echo)

func (Builder) Eval

func (b Builder) Eval() (c Eval)

func (Builder) EvalRo

func (b Builder) EvalRo() (c EvalRo)

func (Builder) Evalsha

func (b Builder) Evalsha() (c Evalsha)

func (Builder) EvalshaRo

func (b Builder) EvalshaRo() (c EvalshaRo)

func (Builder) Exec

func (b Builder) Exec() (c Exec)

func (Builder) Exists

func (b Builder) Exists() (c Exists)

func (Builder) Expire

func (b Builder) Expire() (c Expire)

func (Builder) Expireat

func (b Builder) Expireat() (c Expireat)

func (Builder) Expiretime

func (b Builder) Expiretime() (c Expiretime)

func (Builder) Failover

func (b Builder) Failover() (c Failover)

func (Builder) Fcall added in v0.0.34

func (b Builder) Fcall() (c Fcall)

func (Builder) FcallRo added in v0.0.34

func (b Builder) FcallRo() (c FcallRo)

func (Builder) Flushall

func (b Builder) Flushall() (c Flushall)

func (Builder) Flushdb

func (b Builder) Flushdb() (c Flushdb)

func (Builder) FtAggregate added in v0.0.2

func (b Builder) FtAggregate() (c FtAggregate)

func (Builder) FtAliasadd added in v0.0.2

func (b Builder) FtAliasadd() (c FtAliasadd)

func (Builder) FtAliasdel added in v0.0.2

func (b Builder) FtAliasdel() (c FtAliasdel)

func (Builder) FtAliasupdate added in v0.0.2

func (b Builder) FtAliasupdate() (c FtAliasupdate)

func (Builder) FtAlter added in v0.0.2

func (b Builder) FtAlter() (c FtAlter)

func (Builder) FtConfigGet added in v0.0.2

func (b Builder) FtConfigGet() (c FtConfigGet)

func (Builder) FtConfigHelp added in v0.0.2

func (b Builder) FtConfigHelp() (c FtConfigHelp)

func (Builder) FtConfigSet added in v0.0.2

func (b Builder) FtConfigSet() (c FtConfigSet)

func (Builder) FtCreate added in v0.0.2

func (b Builder) FtCreate() (c FtCreate)

func (Builder) FtCursorDel added in v0.0.2

func (b Builder) FtCursorDel() (c FtCursorDel)

func (Builder) FtCursorRead added in v0.0.2

func (b Builder) FtCursorRead() (c FtCursorRead)

func (Builder) FtDictadd added in v0.0.2

func (b Builder) FtDictadd() (c FtDictadd)

func (Builder) FtDictdel added in v0.0.2

func (b Builder) FtDictdel() (c FtDictdel)

func (Builder) FtDictdump added in v0.0.2

func (b Builder) FtDictdump() (c FtDictdump)

func (Builder) FtDropindex added in v0.0.2

func (b Builder) FtDropindex() (c FtDropindex)

func (Builder) FtExplain added in v0.0.2

func (b Builder) FtExplain() (c FtExplain)

func (Builder) FtExplaincli added in v0.0.2

func (b Builder) FtExplaincli() (c FtExplaincli)

func (Builder) FtInfo added in v0.0.2

func (b Builder) FtInfo() (c FtInfo)

func (Builder) FtList added in v0.0.2

func (b Builder) FtList() (c FtList)

func (Builder) FtProfile added in v0.0.54

func (b Builder) FtProfile() (c FtProfile)

func (Builder) FtSearch added in v0.0.2

func (b Builder) FtSearch() (c FtSearch)

func (Builder) FtSpellcheck added in v0.0.2

func (b Builder) FtSpellcheck() (c FtSpellcheck)

func (Builder) FtSugadd added in v0.0.2

func (b Builder) FtSugadd() (c FtSugadd)

func (Builder) FtSugdel added in v0.0.2

func (b Builder) FtSugdel() (c FtSugdel)

func (Builder) FtSugget added in v0.0.2

func (b Builder) FtSugget() (c FtSugget)

func (Builder) FtSuglen added in v0.0.2

func (b Builder) FtSuglen() (c FtSuglen)

func (Builder) FtSyndump added in v0.0.2

func (b Builder) FtSyndump() (c FtSyndump)

func (Builder) FtSynupdate added in v0.0.2

func (b Builder) FtSynupdate() (c FtSynupdate)

func (Builder) FtTagvals added in v0.0.2

func (b Builder) FtTagvals() (c FtTagvals)

func (Builder) FunctionDelete added in v0.0.34

func (b Builder) FunctionDelete() (c FunctionDelete)

func (Builder) FunctionDump added in v0.0.34

func (b Builder) FunctionDump() (c FunctionDump)

func (Builder) FunctionFlush added in v0.0.34

func (b Builder) FunctionFlush() (c FunctionFlush)

func (Builder) FunctionHelp added in v0.0.34

func (b Builder) FunctionHelp() (c FunctionHelp)

func (Builder) FunctionKill added in v0.0.34

func (b Builder) FunctionKill() (c FunctionKill)

func (Builder) FunctionList added in v0.0.34

func (b Builder) FunctionList() (c FunctionList)

func (Builder) FunctionLoad added in v0.0.34

func (b Builder) FunctionLoad() (c FunctionLoad)

func (Builder) FunctionRestore added in v0.0.34

func (b Builder) FunctionRestore() (c FunctionRestore)

func (Builder) FunctionStats added in v0.0.34

func (b Builder) FunctionStats() (c FunctionStats)

func (Builder) Geoadd

func (b Builder) Geoadd() (c Geoadd)

func (Builder) Geodist

func (b Builder) Geodist() (c Geodist)

func (Builder) Geohash

func (b Builder) Geohash() (c Geohash)

func (Builder) Geopos

func (b Builder) Geopos() (c Geopos)

func (Builder) Georadius

func (b Builder) Georadius() (c Georadius)

func (Builder) GeoradiusRo

func (b Builder) GeoradiusRo() (c GeoradiusRo)

func (Builder) Georadiusbymember

func (b Builder) Georadiusbymember() (c Georadiusbymember)

func (Builder) GeoradiusbymemberRo

func (b Builder) GeoradiusbymemberRo() (c GeoradiusbymemberRo)

func (Builder) Geosearch

func (b Builder) Geosearch() (c Geosearch)

func (Builder) Geosearchstore

func (b Builder) Geosearchstore() (c Geosearchstore)

func (Builder) Get

func (b Builder) Get() (c Get)

func (Builder) Getbit

func (b Builder) Getbit() (c Getbit)

func (Builder) Getdel

func (b Builder) Getdel() (c Getdel)

func (Builder) Getex

func (b Builder) Getex() (c Getex)

func (Builder) Getrange

func (b Builder) Getrange() (c Getrange)

func (Builder) Getset

func (b Builder) Getset() (c Getset)

func (Builder) GraphConfigGet added in v0.0.3

func (b Builder) GraphConfigGet() (c GraphConfigGet)

func (Builder) GraphConfigSet added in v0.0.3

func (b Builder) GraphConfigSet() (c GraphConfigSet)

func (Builder) GraphDelete added in v0.0.3

func (b Builder) GraphDelete() (c GraphDelete)

func (Builder) GraphExplain added in v0.0.3

func (b Builder) GraphExplain() (c GraphExplain)

func (Builder) GraphList added in v0.0.3

func (b Builder) GraphList() (c GraphList)

func (Builder) GraphProfile added in v0.0.3

func (b Builder) GraphProfile() (c GraphProfile)

func (Builder) GraphQuery added in v0.0.3

func (b Builder) GraphQuery() (c GraphQuery)

func (Builder) GraphRoQuery added in v0.0.3

func (b Builder) GraphRoQuery() (c GraphRoQuery)

func (Builder) GraphSlowlog added in v0.0.3

func (b Builder) GraphSlowlog() (c GraphSlowlog)

func (Builder) Hdel

func (b Builder) Hdel() (c Hdel)

func (Builder) Hello

func (b Builder) Hello() (c Hello)

func (Builder) Hexists

func (b Builder) Hexists() (c Hexists)

func (Builder) Hget

func (b Builder) Hget() (c Hget)

func (Builder) Hgetall

func (b Builder) Hgetall() (c Hgetall)

func (Builder) Hincrby

func (b Builder) Hincrby() (c Hincrby)

func (Builder) Hincrbyfloat

func (b Builder) Hincrbyfloat() (c Hincrbyfloat)

func (Builder) Hkeys

func (b Builder) Hkeys() (c Hkeys)

func (Builder) Hlen

func (b Builder) Hlen() (c Hlen)

func (Builder) Hmget

func (b Builder) Hmget() (c Hmget)

func (Builder) Hmset

func (b Builder) Hmset() (c Hmset)

func (Builder) Hrandfield

func (b Builder) Hrandfield() (c Hrandfield)

func (Builder) Hscan

func (b Builder) Hscan() (c Hscan)

func (Builder) Hset

func (b Builder) Hset() (c Hset)

func (Builder) Hsetnx

func (b Builder) Hsetnx() (c Hsetnx)

func (Builder) Hstrlen

func (b Builder) Hstrlen() (c Hstrlen)

func (Builder) Hvals

func (b Builder) Hvals() (c Hvals)

func (Builder) Incr

func (b Builder) Incr() (c Incr)

func (Builder) Incrby

func (b Builder) Incrby() (c Incrby)

func (Builder) Incrbyfloat

func (b Builder) Incrbyfloat() (c Incrbyfloat)

func (Builder) Info

func (b Builder) Info() (c Info)

func (Builder) JsonArrappend added in v0.0.2

func (b Builder) JsonArrappend() (c JsonArrappend)

func (Builder) JsonArrindex added in v0.0.2

func (b Builder) JsonArrindex() (c JsonArrindex)

func (Builder) JsonArrinsert added in v0.0.2

func (b Builder) JsonArrinsert() (c JsonArrinsert)

func (Builder) JsonArrlen added in v0.0.2

func (b Builder) JsonArrlen() (c JsonArrlen)

func (Builder) JsonArrpop added in v0.0.2

func (b Builder) JsonArrpop() (c JsonArrpop)

func (Builder) JsonArrtrim added in v0.0.2

func (b Builder) JsonArrtrim() (c JsonArrtrim)

func (Builder) JsonClear added in v0.0.2

func (b Builder) JsonClear() (c JsonClear)

func (Builder) JsonDebugHelp added in v0.0.54

func (b Builder) JsonDebugHelp() (c JsonDebugHelp)

func (Builder) JsonDebugMemory added in v0.0.54

func (b Builder) JsonDebugMemory() (c JsonDebugMemory)

func (Builder) JsonDel added in v0.0.2

func (b Builder) JsonDel() (c JsonDel)

func (Builder) JsonForget added in v0.0.54

func (b Builder) JsonForget() (c JsonForget)

func (Builder) JsonGet added in v0.0.2

func (b Builder) JsonGet() (c JsonGet)

func (Builder) JsonMget added in v0.0.2

func (b Builder) JsonMget() (c JsonMget)

func (Builder) JsonNumincrby added in v0.0.2

func (b Builder) JsonNumincrby() (c JsonNumincrby)

func (Builder) JsonNummultby added in v0.0.54

func (b Builder) JsonNummultby() (c JsonNummultby)

func (Builder) JsonObjkeys added in v0.0.2

func (b Builder) JsonObjkeys() (c JsonObjkeys)

func (Builder) JsonObjlen added in v0.0.2

func (b Builder) JsonObjlen() (c JsonObjlen)

func (Builder) JsonResp added in v0.0.2

func (b Builder) JsonResp() (c JsonResp)

func (Builder) JsonSet added in v0.0.2

func (b Builder) JsonSet() (c JsonSet)

func (Builder) JsonStrappend added in v0.0.2

func (b Builder) JsonStrappend() (c JsonStrappend)

func (Builder) JsonStrlen added in v0.0.2

func (b Builder) JsonStrlen() (c JsonStrlen)

func (Builder) JsonToggle added in v0.0.2

func (b Builder) JsonToggle() (c JsonToggle)

func (Builder) JsonType added in v0.0.2

func (b Builder) JsonType() (c JsonType)

func (Builder) Keys

func (b Builder) Keys() (c Keys)

func (Builder) Lastsave

func (b Builder) Lastsave() (c Lastsave)

func (Builder) LatencyDoctor

func (b Builder) LatencyDoctor() (c LatencyDoctor)

func (Builder) LatencyGraph

func (b Builder) LatencyGraph() (c LatencyGraph)

func (Builder) LatencyHelp

func (b Builder) LatencyHelp() (c LatencyHelp)

func (Builder) LatencyHistogram added in v0.0.34

func (b Builder) LatencyHistogram() (c LatencyHistogram)

func (Builder) LatencyHistory

func (b Builder) LatencyHistory() (c LatencyHistory)

func (Builder) LatencyLatest

func (b Builder) LatencyLatest() (c LatencyLatest)

func (Builder) LatencyReset

func (b Builder) LatencyReset() (c LatencyReset)

func (Builder) Lcs added in v0.0.2

func (b Builder) Lcs() (c Lcs)

func (Builder) Lindex

func (b Builder) Lindex() (c Lindex)

func (Builder) Linsert

func (b Builder) Linsert() (c Linsert)

func (Builder) Llen

func (b Builder) Llen() (c Llen)

func (Builder) Lmove

func (b Builder) Lmove() (c Lmove)

func (Builder) Lmpop

func (b Builder) Lmpop() (c Lmpop)

func (Builder) Lolwut

func (b Builder) Lolwut() (c Lolwut)

func (Builder) Lpop

func (b Builder) Lpop() (c Lpop)

func (Builder) Lpos

func (b Builder) Lpos() (c Lpos)

func (Builder) Lpush

func (b Builder) Lpush() (c Lpush)

func (Builder) Lpushx

func (b Builder) Lpushx() (c Lpushx)

func (Builder) Lrange

func (b Builder) Lrange() (c Lrange)

func (Builder) Lrem

func (b Builder) Lrem() (c Lrem)

func (Builder) Lset

func (b Builder) Lset() (c Lset)

func (Builder) Ltrim

func (b Builder) Ltrim() (c Ltrim)

func (Builder) MemoryDoctor

func (b Builder) MemoryDoctor() (c MemoryDoctor)

func (Builder) MemoryHelp

func (b Builder) MemoryHelp() (c MemoryHelp)

func (Builder) MemoryMallocStats

func (b Builder) MemoryMallocStats() (c MemoryMallocStats)

func (Builder) MemoryPurge

func (b Builder) MemoryPurge() (c MemoryPurge)

func (Builder) MemoryStats

func (b Builder) MemoryStats() (c MemoryStats)

func (Builder) MemoryUsage

func (b Builder) MemoryUsage() (c MemoryUsage)

func (Builder) Mget

func (b Builder) Mget() (c Mget)

func (Builder) Migrate

func (b Builder) Migrate() (c Migrate)

func (Builder) ModuleList

func (b Builder) ModuleList() (c ModuleList)

func (Builder) ModuleLoad

func (b Builder) ModuleLoad() (c ModuleLoad)

func (Builder) ModuleLoadex added in v0.0.42

func (b Builder) ModuleLoadex() (c ModuleLoadex)

func (Builder) ModuleUnload

func (b Builder) ModuleUnload() (c ModuleUnload)

func (Builder) Monitor

func (b Builder) Monitor() (c Monitor)

func (Builder) Move

func (b Builder) Move() (c Move)

func (Builder) Mset

func (b Builder) Mset() (c Mset)

func (Builder) Msetnx

func (b Builder) Msetnx() (c Msetnx)

func (Builder) Multi

func (b Builder) Multi() (c Multi)

func (Builder) ObjectEncoding added in v0.0.2

func (b Builder) ObjectEncoding() (c ObjectEncoding)

func (Builder) ObjectFreq added in v0.0.2

func (b Builder) ObjectFreq() (c ObjectFreq)

func (Builder) ObjectHelp added in v0.0.2

func (b Builder) ObjectHelp() (c ObjectHelp)

func (Builder) ObjectIdletime added in v0.0.2

func (b Builder) ObjectIdletime() (c ObjectIdletime)

func (Builder) ObjectRefcount added in v0.0.2

func (b Builder) ObjectRefcount() (c ObjectRefcount)

func (Builder) Persist

func (b Builder) Persist() (c Persist)

func (Builder) Pexpire

func (b Builder) Pexpire() (c Pexpire)

func (Builder) Pexpireat

func (b Builder) Pexpireat() (c Pexpireat)

func (Builder) Pexpiretime

func (b Builder) Pexpiretime() (c Pexpiretime)

func (Builder) Pfadd

func (b Builder) Pfadd() (c Pfadd)

func (Builder) Pfcount

func (b Builder) Pfcount() (c Pfcount)

func (Builder) Pfmerge

func (b Builder) Pfmerge() (c Pfmerge)

func (Builder) Ping

func (b Builder) Ping() (c Ping)

func (Builder) Psetex

func (b Builder) Psetex() (c Psetex)

func (Builder) Psubscribe

func (b Builder) Psubscribe() (c Psubscribe)

func (Builder) Psync

func (b Builder) Psync() (c Psync)

func (Builder) Pttl

func (b Builder) Pttl() (c Pttl)

func (Builder) Publish

func (b Builder) Publish() (c Publish)

func (Builder) PubsubChannels added in v0.0.2

func (b Builder) PubsubChannels() (c PubsubChannels)

func (Builder) PubsubHelp added in v0.0.2

func (b Builder) PubsubHelp() (c PubsubHelp)

func (Builder) PubsubNumpat added in v0.0.2

func (b Builder) PubsubNumpat() (c PubsubNumpat)

func (Builder) PubsubNumsub added in v0.0.2

func (b Builder) PubsubNumsub() (c PubsubNumsub)

func (Builder) PubsubShardchannels added in v0.0.34

func (b Builder) PubsubShardchannels() (c PubsubShardchannels)

func (Builder) PubsubShardnumsub added in v0.0.34

func (b Builder) PubsubShardnumsub() (c PubsubShardnumsub)

func (Builder) Punsubscribe

func (b Builder) Punsubscribe() (c Punsubscribe)

func (Builder) Quit

func (b Builder) Quit() (c Quit)

func (Builder) Randomkey

func (b Builder) Randomkey() (c Randomkey)

func (Builder) Readonly

func (b Builder) Readonly() (c Readonly)

func (Builder) Readwrite

func (b Builder) Readwrite() (c Readwrite)

func (Builder) Rename

func (b Builder) Rename() (c Rename)

func (Builder) Renamenx

func (b Builder) Renamenx() (c Renamenx)

func (Builder) Replicaof

func (b Builder) Replicaof() (c Replicaof)

func (Builder) Reset

func (b Builder) Reset() (c Reset)

func (Builder) Restore

func (b Builder) Restore() (c Restore)

func (Builder) RgAbortexecution added in v0.0.40

func (b Builder) RgAbortexecution() (c RgAbortexecution)

func (Builder) RgConfigget added in v0.0.40

func (b Builder) RgConfigget() (c RgConfigget)

func (Builder) RgConfigset added in v0.0.40

func (b Builder) RgConfigset() (c RgConfigset)

func (Builder) RgDropexecution added in v0.0.40

func (b Builder) RgDropexecution() (c RgDropexecution)

func (Builder) RgDumpexecutions added in v0.0.40

func (b Builder) RgDumpexecutions() (c RgDumpexecutions)

func (Builder) RgDumpregistrations added in v0.0.40

func (b Builder) RgDumpregistrations() (c RgDumpregistrations)

func (Builder) RgGetexecution added in v0.0.40

func (b Builder) RgGetexecution() (c RgGetexecution)

func (Builder) RgGetresults added in v0.0.40

func (b Builder) RgGetresults() (c RgGetresults)

func (Builder) RgGetresultsblocking added in v0.0.40

func (b Builder) RgGetresultsblocking() (c RgGetresultsblocking)

func (Builder) RgInfocluster added in v0.0.40

func (b Builder) RgInfocluster() (c RgInfocluster)

func (Builder) RgPydumpreqs added in v0.0.40

func (b Builder) RgPydumpreqs() (c RgPydumpreqs)

func (Builder) RgPyexecute added in v0.0.40

func (b Builder) RgPyexecute() (c RgPyexecute)

func (Builder) RgPystats added in v0.0.40

func (b Builder) RgPystats() (c RgPystats)

func (Builder) RgRefreshcluster added in v0.0.40

func (b Builder) RgRefreshcluster() (c RgRefreshcluster)

func (Builder) RgTrigger added in v0.0.40

func (b Builder) RgTrigger() (c RgTrigger)

func (Builder) RgUnregister added in v0.0.40

func (b Builder) RgUnregister() (c RgUnregister)

func (Builder) Role

func (b Builder) Role() (c Role)

func (Builder) Rpop

func (b Builder) Rpop() (c Rpop)

func (Builder) Rpoplpush

func (b Builder) Rpoplpush() (c Rpoplpush)

func (Builder) Rpush

func (b Builder) Rpush() (c Rpush)

func (Builder) Rpushx

func (b Builder) Rpushx() (c Rpushx)

func (Builder) Sadd

func (b Builder) Sadd() (c Sadd)

func (Builder) Save

func (b Builder) Save() (c Save)

func (Builder) Scan

func (b Builder) Scan() (c Scan)

func (Builder) Scard

func (b Builder) Scard() (c Scard)

func (Builder) ScriptDebug

func (b Builder) ScriptDebug() (c ScriptDebug)

func (Builder) ScriptExists

func (b Builder) ScriptExists() (c ScriptExists)

func (Builder) ScriptFlush

func (b Builder) ScriptFlush() (c ScriptFlush)

func (Builder) ScriptKill

func (b Builder) ScriptKill() (c ScriptKill)

func (Builder) ScriptLoad

func (b Builder) ScriptLoad() (c ScriptLoad)

func (Builder) Sdiff

func (b Builder) Sdiff() (c Sdiff)

func (Builder) Sdiffstore

func (b Builder) Sdiffstore() (c Sdiffstore)

func (Builder) Select

func (b Builder) Select() (c Select)

func (Builder) SentinelFailover added in v0.0.30

func (b Builder) SentinelFailover() (c SentinelFailover)

func (Builder) SentinelGetMasterAddrByName added in v0.0.30

func (b Builder) SentinelGetMasterAddrByName() (c SentinelGetMasterAddrByName)

func (Builder) SentinelSentinels added in v0.0.30

func (b Builder) SentinelSentinels() (c SentinelSentinels)

func (Builder) Set

func (b Builder) Set() (c Set)

func (Builder) Setbit

func (b Builder) Setbit() (c Setbit)

func (Builder) Setex

func (b Builder) Setex() (c Setex)

func (Builder) Setnx

func (b Builder) Setnx() (c Setnx)

func (Builder) Setrange

func (b Builder) Setrange() (c Setrange)

func (Builder) Shutdown

func (b Builder) Shutdown() (c Shutdown)

func (Builder) Sinter

func (b Builder) Sinter() (c Sinter)

func (Builder) Sintercard

func (b Builder) Sintercard() (c Sintercard)

func (Builder) Sinterstore

func (b Builder) Sinterstore() (c Sinterstore)

func (Builder) Sismember

func (b Builder) Sismember() (c Sismember)

func (Builder) Slaveof

func (b Builder) Slaveof() (c Slaveof)

func (Builder) SlowlogGet added in v0.0.2

func (b Builder) SlowlogGet() (c SlowlogGet)

func (Builder) SlowlogHelp added in v0.0.2

func (b Builder) SlowlogHelp() (c SlowlogHelp)

func (Builder) SlowlogLen added in v0.0.2

func (b Builder) SlowlogLen() (c SlowlogLen)

func (Builder) SlowlogReset added in v0.0.2

func (b Builder) SlowlogReset() (c SlowlogReset)

func (Builder) Smembers

func (b Builder) Smembers() (c Smembers)

func (Builder) Smismember

func (b Builder) Smismember() (c Smismember)

func (Builder) Smove

func (b Builder) Smove() (c Smove)

func (Builder) Sort

func (b Builder) Sort() (c Sort)

func (Builder) SortRo

func (b Builder) SortRo() (c SortRo)

func (Builder) Spop

func (b Builder) Spop() (c Spop)

func (Builder) Spublish added in v0.0.34

func (b Builder) Spublish() (c Spublish)

func (Builder) Srandmember

func (b Builder) Srandmember() (c Srandmember)

func (Builder) Srem

func (b Builder) Srem() (c Srem)

func (Builder) Sscan

func (b Builder) Sscan() (c Sscan)

func (Builder) Ssubscribe added in v0.0.34

func (b Builder) Ssubscribe() (c Ssubscribe)

func (Builder) Strlen

func (b Builder) Strlen() (c Strlen)

func (Builder) Subscribe

func (b Builder) Subscribe() (c Subscribe)

func (Builder) Sunion

func (b Builder) Sunion() (c Sunion)

func (Builder) Sunionstore

func (b Builder) Sunionstore() (c Sunionstore)

func (Builder) Sunsubscribe added in v0.0.34

func (b Builder) Sunsubscribe() (c Sunsubscribe)

func (Builder) Swapdb

func (b Builder) Swapdb() (c Swapdb)

func (Builder) Sync

func (b Builder) Sync() (c Sync)

func (Builder) TdigestAdd added in v0.0.2

func (b Builder) TdigestAdd() (c TdigestAdd)

func (Builder) TdigestByrank added in v0.0.81

func (b Builder) TdigestByrank() (c TdigestByrank)

func (Builder) TdigestByrevrank added in v0.0.81

func (b Builder) TdigestByrevrank() (c TdigestByrevrank)

func (Builder) TdigestCdf added in v0.0.2

func (b Builder) TdigestCdf() (c TdigestCdf)

func (Builder) TdigestCreate added in v0.0.2

func (b Builder) TdigestCreate() (c TdigestCreate)

func (Builder) TdigestInfo added in v0.0.2

func (b Builder) TdigestInfo() (c TdigestInfo)

func (Builder) TdigestMax added in v0.0.2

func (b Builder) TdigestMax() (c TdigestMax)

func (Builder) TdigestMerge added in v0.0.2

func (b Builder) TdigestMerge() (c TdigestMerge)

func (Builder) TdigestMin added in v0.0.2

func (b Builder) TdigestMin() (c TdigestMin)

func (Builder) TdigestQuantile added in v0.0.2

func (b Builder) TdigestQuantile() (c TdigestQuantile)

func (Builder) TdigestRank added in v0.0.81

func (b Builder) TdigestRank() (c TdigestRank)

func (Builder) TdigestReset added in v0.0.2

func (b Builder) TdigestReset() (c TdigestReset)

func (Builder) TdigestRevrank added in v0.0.81

func (b Builder) TdigestRevrank() (c TdigestRevrank)

func (Builder) TdigestTrimmedMean added in v0.0.54

func (b Builder) TdigestTrimmedMean() (c TdigestTrimmedMean)

func (Builder) Time

func (b Builder) Time() (c Time)

func (Builder) TopkAdd added in v0.0.2

func (b Builder) TopkAdd() (c TopkAdd)

func (Builder) TopkCount added in v0.0.54

func (b Builder) TopkCount() (c TopkCount)

func (Builder) TopkIncrby added in v0.0.2

func (b Builder) TopkIncrby() (c TopkIncrby)

func (Builder) TopkInfo added in v0.0.2

func (b Builder) TopkInfo() (c TopkInfo)

func (Builder) TopkList added in v0.0.2

func (b Builder) TopkList() (c TopkList)

func (Builder) TopkQuery added in v0.0.2

func (b Builder) TopkQuery() (c TopkQuery)

func (Builder) TopkReserve added in v0.0.2

func (b Builder) TopkReserve() (c TopkReserve)

func (Builder) Touch

func (b Builder) Touch() (c Touch)

func (Builder) TsAdd added in v0.0.3

func (b Builder) TsAdd() (c TsAdd)

func (Builder) TsAlter added in v0.0.3

func (b Builder) TsAlter() (c TsAlter)

func (Builder) TsCreate added in v0.0.3

func (b Builder) TsCreate() (c TsCreate)

func (Builder) TsCreaterule added in v0.0.3

func (b Builder) TsCreaterule() (c TsCreaterule)

func (Builder) TsDecrby added in v0.0.3

func (b Builder) TsDecrby() (c TsDecrby)

func (Builder) TsDel added in v0.0.3

func (b Builder) TsDel() (c TsDel)

func (Builder) TsDeleterule added in v0.0.3

func (b Builder) TsDeleterule() (c TsDeleterule)

func (Builder) TsGet added in v0.0.3

func (b Builder) TsGet() (c TsGet)

func (Builder) TsIncrby added in v0.0.3

func (b Builder) TsIncrby() (c TsIncrby)

func (Builder) TsInfo added in v0.0.3

func (b Builder) TsInfo() (c TsInfo)

func (Builder) TsMadd added in v0.0.3

func (b Builder) TsMadd() (c TsMadd)

func (Builder) TsMget added in v0.0.3

func (b Builder) TsMget() (c TsMget)

func (Builder) TsMrange added in v0.0.3

func (b Builder) TsMrange() (c TsMrange)

func (Builder) TsMrevrange added in v0.0.3

func (b Builder) TsMrevrange() (c TsMrevrange)

func (Builder) TsQueryindex added in v0.0.3

func (b Builder) TsQueryindex() (c TsQueryindex)

func (Builder) TsRange added in v0.0.3

func (b Builder) TsRange() (c TsRange)

func (Builder) TsRevrange added in v0.0.3

func (b Builder) TsRevrange() (c TsRevrange)

func (Builder) Ttl

func (b Builder) Ttl() (c Ttl)

func (Builder) Type

func (b Builder) Type() (c Type)
func (b Builder) Unlink() (c Unlink)

func (Builder) Unsubscribe

func (b Builder) Unsubscribe() (c Unsubscribe)

func (Builder) Unwatch

func (b Builder) Unwatch() (c Unwatch)

func (Builder) Wait

func (b Builder) Wait() (c Wait)

func (Builder) Waitaof added in v0.0.96

func (b Builder) Waitaof() (c Waitaof)

func (Builder) Watch

func (b Builder) Watch() (c Watch)

func (Builder) Xack

func (b Builder) Xack() (c Xack)

func (Builder) Xadd

func (b Builder) Xadd() (c Xadd)

func (Builder) Xautoclaim

func (b Builder) Xautoclaim() (c Xautoclaim)

func (Builder) Xclaim

func (b Builder) Xclaim() (c Xclaim)

func (Builder) Xdel

func (b Builder) Xdel() (c Xdel)

func (Builder) XgroupCreate added in v0.0.2

func (b Builder) XgroupCreate() (c XgroupCreate)

func (Builder) XgroupCreateconsumer added in v0.0.2

func (b Builder) XgroupCreateconsumer() (c XgroupCreateconsumer)

func (Builder) XgroupDelconsumer added in v0.0.2

func (b Builder) XgroupDelconsumer() (c XgroupDelconsumer)

func (Builder) XgroupDestroy added in v0.0.2

func (b Builder) XgroupDestroy() (c XgroupDestroy)

func (Builder) XgroupHelp added in v0.0.2

func (b Builder) XgroupHelp() (c XgroupHelp)

func (Builder) XgroupSetid added in v0.0.2

func (b Builder) XgroupSetid() (c XgroupSetid)

func (Builder) XinfoConsumers added in v0.0.2

func (b Builder) XinfoConsumers() (c XinfoConsumers)

func (Builder) XinfoGroups added in v0.0.2

func (b Builder) XinfoGroups() (c XinfoGroups)

func (Builder) XinfoHelp added in v0.0.2

func (b Builder) XinfoHelp() (c XinfoHelp)

func (Builder) XinfoStream added in v0.0.2

func (b Builder) XinfoStream() (c XinfoStream)

func (Builder) Xlen

func (b Builder) Xlen() (c Xlen)

func (Builder) Xpending

func (b Builder) Xpending() (c Xpending)

func (Builder) Xrange

func (b Builder) Xrange() (c Xrange)

func (Builder) Xread

func (b Builder) Xread() (c Xread)

func (Builder) Xreadgroup

func (b Builder) Xreadgroup() (c Xreadgroup)

func (Builder) Xrevrange

func (b Builder) Xrevrange() (c Xrevrange)

func (Builder) Xsetid added in v0.0.38

func (b Builder) Xsetid() (c Xsetid)

func (Builder) Xtrim

func (b Builder) Xtrim() (c Xtrim)

func (Builder) Zadd

func (b Builder) Zadd() (c Zadd)

func (Builder) Zcard

func (b Builder) Zcard() (c Zcard)

func (Builder) Zcount

func (b Builder) Zcount() (c Zcount)

func (Builder) Zdiff

func (b Builder) Zdiff() (c Zdiff)

func (Builder) Zdiffstore

func (b Builder) Zdiffstore() (c Zdiffstore)

func (Builder) Zincrby

func (b Builder) Zincrby() (c Zincrby)

func (Builder) Zinter

func (b Builder) Zinter() (c Zinter)

func (Builder) Zintercard

func (b Builder) Zintercard() (c Zintercard)

func (Builder) Zinterstore

func (b Builder) Zinterstore() (c Zinterstore)

func (Builder) Zlexcount

func (b Builder) Zlexcount() (c Zlexcount)

func (Builder) Zmpop added in v0.0.2

func (b Builder) Zmpop() (c Zmpop)

func (Builder) Zmscore

func (b Builder) Zmscore() (c Zmscore)

func (Builder) Zpopmax

func (b Builder) Zpopmax() (c Zpopmax)

func (Builder) Zpopmin

func (b Builder) Zpopmin() (c Zpopmin)

func (Builder) Zrandmember

func (b Builder) Zrandmember() (c Zrandmember)

func (Builder) Zrange

func (b Builder) Zrange() (c Zrange)

func (Builder) Zrangebylex

func (b Builder) Zrangebylex() (c Zrangebylex)

func (Builder) Zrangebyscore

func (b Builder) Zrangebyscore() (c Zrangebyscore)

func (Builder) Zrangestore

func (b Builder) Zrangestore() (c Zrangestore)

func (Builder) Zrank

func (b Builder) Zrank() (c Zrank)

func (Builder) Zrem

func (b Builder) Zrem() (c Zrem)

func (Builder) Zremrangebylex

func (b Builder) Zremrangebylex() (c Zremrangebylex)

func (Builder) Zremrangebyrank

func (b Builder) Zremrangebyrank() (c Zremrangebyrank)

func (Builder) Zremrangebyscore

func (b Builder) Zremrangebyscore() (c Zremrangebyscore)

func (Builder) Zrevrange

func (b Builder) Zrevrange() (c Zrevrange)

func (Builder) Zrevrangebylex

func (b Builder) Zrevrangebylex() (c Zrevrangebylex)

func (Builder) Zrevrangebyscore

func (b Builder) Zrevrangebyscore() (c Zrevrangebyscore)

func (Builder) Zrevrank

func (b Builder) Zrevrank() (c Zrevrank)

func (Builder) Zscan

func (b Builder) Zscan() (c Zscan)

func (Builder) Zscore

func (b Builder) Zscore() (c Zscore)

func (Builder) Zunion

func (b Builder) Zunion() (c Zunion)

func (Builder) Zunionstore

func (b Builder) Zunionstore() (c Zunionstore)

type Bzmpop added in v0.0.2

type Bzmpop Completed

func (Bzmpop) Timeout added in v0.0.2

func (c Bzmpop) Timeout(timeout float64) BzmpopTimeout

type BzmpopCount added in v0.0.2

type BzmpopCount Completed

func (BzmpopCount) Build added in v0.0.2

func (c BzmpopCount) Build() Completed

type BzmpopKey added in v0.0.2

type BzmpopKey Completed

func (BzmpopKey) Key added in v0.0.2

func (c BzmpopKey) Key(key ...string) BzmpopKey

func (BzmpopKey) Max added in v0.0.2

func (c BzmpopKey) Max() BzmpopWhereMax

func (BzmpopKey) Min added in v0.0.2

func (c BzmpopKey) Min() BzmpopWhereMin

type BzmpopNumkeys added in v0.0.2

type BzmpopNumkeys Completed

func (BzmpopNumkeys) Key added in v0.0.2

func (c BzmpopNumkeys) Key(key ...string) BzmpopKey

type BzmpopTimeout added in v0.0.2

type BzmpopTimeout Completed

func (BzmpopTimeout) Numkeys added in v0.0.2

func (c BzmpopTimeout) Numkeys(numkeys int64) BzmpopNumkeys

type BzmpopWhereMax added in v0.0.2

type BzmpopWhereMax Completed

func (BzmpopWhereMax) Build added in v0.0.2

func (c BzmpopWhereMax) Build() Completed

func (BzmpopWhereMax) Count added in v0.0.2

func (c BzmpopWhereMax) Count(count int64) BzmpopCount

type BzmpopWhereMin added in v0.0.2

type BzmpopWhereMin Completed

func (BzmpopWhereMin) Build added in v0.0.2

func (c BzmpopWhereMin) Build() Completed

func (BzmpopWhereMin) Count added in v0.0.2

func (c BzmpopWhereMin) Count(count int64) BzmpopCount

type Bzpopmax

type Bzpopmax Completed

func (Bzpopmax) Key

func (c Bzpopmax) Key(key ...string) BzpopmaxKey

type BzpopmaxKey

type BzpopmaxKey Completed

func (BzpopmaxKey) Key

func (c BzpopmaxKey) Key(key ...string) BzpopmaxKey

func (BzpopmaxKey) Timeout

func (c BzpopmaxKey) Timeout(timeout float64) BzpopmaxTimeout

type BzpopmaxTimeout

type BzpopmaxTimeout Completed

func (BzpopmaxTimeout) Build

func (c BzpopmaxTimeout) Build() Completed

type Bzpopmin

type Bzpopmin Completed

func (Bzpopmin) Key

func (c Bzpopmin) Key(key ...string) BzpopminKey

type BzpopminKey

type BzpopminKey Completed

func (BzpopminKey) Key

func (c BzpopminKey) Key(key ...string) BzpopminKey

func (BzpopminKey) Timeout

func (c BzpopminKey) Timeout(timeout float64) BzpopminTimeout

type BzpopminTimeout

type BzpopminTimeout Completed

func (BzpopminTimeout) Build

func (c BzpopminTimeout) Build() Completed

type Cacheable

type Cacheable Completed

Cacheable represents a completed Redis command which supports server-assisted client side caching, and it should be created by the Cache() of command builder.

func (*Cacheable) Commands

func (c *Cacheable) Commands() []string

Commands returns the commands as []string. Note that the returned []string should not be modified and should not be read after passing into the Client interface, because it will be recycled.

func (*Cacheable) IsMGet added in v0.0.62

func (c *Cacheable) IsMGet() bool

IsMGet returns if the command is MGET

func (Cacheable) Pin added in v0.0.99

func (c Cacheable) Pin() Cacheable

Pin prevents a Cacheable to be recycled

func (*Cacheable) Slot added in v0.0.7

func (c *Cacheable) Slot() uint16

Slot returns the command key slot

type CfAdd added in v0.0.2

type CfAdd Completed

func (CfAdd) Key added in v0.0.2

func (c CfAdd) Key(key string) CfAddKey

type CfAddItem added in v0.0.2

type CfAddItem Completed

func (CfAddItem) Build added in v0.0.2

func (c CfAddItem) Build() Completed

type CfAddKey added in v0.0.2

type CfAddKey Completed

func (CfAddKey) Item added in v0.0.2

func (c CfAddKey) Item(item string) CfAddItem

type CfAddnx added in v0.0.2

type CfAddnx Completed

func (CfAddnx) Key added in v0.0.2

func (c CfAddnx) Key(key string) CfAddnxKey

type CfAddnxItem added in v0.0.2

type CfAddnxItem Completed

func (CfAddnxItem) Build added in v0.0.2

func (c CfAddnxItem) Build() Completed

type CfAddnxKey added in v0.0.2

type CfAddnxKey Completed

func (CfAddnxKey) Item added in v0.0.2

func (c CfAddnxKey) Item(item string) CfAddnxItem

type CfCount added in v0.0.2

type CfCount Completed

func (CfCount) Key added in v0.0.2

func (c CfCount) Key(key string) CfCountKey

type CfCountItem added in v0.0.2

type CfCountItem Completed

func (CfCountItem) Build added in v0.0.2

func (c CfCountItem) Build() Completed

func (CfCountItem) Cache added in v0.0.2

func (c CfCountItem) Cache() Cacheable

type CfCountKey added in v0.0.2

type CfCountKey Completed

func (CfCountKey) Item added in v0.0.2

func (c CfCountKey) Item(item string) CfCountItem

type CfDel added in v0.0.2

type CfDel Completed

func (CfDel) Key added in v0.0.2

func (c CfDel) Key(key string) CfDelKey

type CfDelItem added in v0.0.2

type CfDelItem Completed

func (CfDelItem) Build added in v0.0.2

func (c CfDelItem) Build() Completed

type CfDelKey added in v0.0.2

type CfDelKey Completed

func (CfDelKey) Item added in v0.0.2

func (c CfDelKey) Item(item string) CfDelItem

type CfExists added in v0.0.2

type CfExists Completed

func (CfExists) Key added in v0.0.2

func (c CfExists) Key(key string) CfExistsKey

type CfExistsItem added in v0.0.2

type CfExistsItem Completed

func (CfExistsItem) Build added in v0.0.2

func (c CfExistsItem) Build() Completed

func (CfExistsItem) Cache added in v0.0.2

func (c CfExistsItem) Cache() Cacheable

type CfExistsKey added in v0.0.2

type CfExistsKey Completed

func (CfExistsKey) Item added in v0.0.2

func (c CfExistsKey) Item(item string) CfExistsItem

type CfInfo added in v0.0.2

type CfInfo Completed

func (CfInfo) Key added in v0.0.2

func (c CfInfo) Key(key string) CfInfoKey

type CfInfoKey added in v0.0.2

type CfInfoKey Completed

func (CfInfoKey) Build added in v0.0.2

func (c CfInfoKey) Build() Completed

func (CfInfoKey) Cache added in v0.0.2

func (c CfInfoKey) Cache() Cacheable

type CfInsert added in v0.0.2

type CfInsert Completed

func (CfInsert) Key added in v0.0.2

func (c CfInsert) Key(key string) CfInsertKey

type CfInsertCapacity added in v0.0.2

type CfInsertCapacity Completed

func (CfInsertCapacity) Items added in v0.0.2

func (c CfInsertCapacity) Items() CfInsertItems

func (CfInsertCapacity) Nocreate added in v0.0.2

func (c CfInsertCapacity) Nocreate() CfInsertNocreate

type CfInsertItem added in v0.0.2

type CfInsertItem Completed

func (CfInsertItem) Build added in v0.0.2

func (c CfInsertItem) Build() Completed

func (CfInsertItem) Item added in v0.0.2

func (c CfInsertItem) Item(item ...string) CfInsertItem

type CfInsertItems added in v0.0.2

type CfInsertItems Completed

func (CfInsertItems) Item added in v0.0.2

func (c CfInsertItems) Item(item ...string) CfInsertItem

type CfInsertKey added in v0.0.2

type CfInsertKey Completed

func (CfInsertKey) Capacity added in v0.0.2

func (c CfInsertKey) Capacity(capacity int64) CfInsertCapacity

func (CfInsertKey) Items added in v0.0.2

func (c CfInsertKey) Items() CfInsertItems

func (CfInsertKey) Nocreate added in v0.0.2

func (c CfInsertKey) Nocreate() CfInsertNocreate

type CfInsertNocreate added in v0.0.2

type CfInsertNocreate Completed

func (CfInsertNocreate) Items added in v0.0.2

func (c CfInsertNocreate) Items() CfInsertItems

type CfInsertnx added in v0.0.2

type CfInsertnx Completed

func (CfInsertnx) Key added in v0.0.2

func (c CfInsertnx) Key(key string) CfInsertnxKey

type CfInsertnxCapacity added in v0.0.2

type CfInsertnxCapacity Completed

func (CfInsertnxCapacity) Items added in v0.0.2

func (CfInsertnxCapacity) Nocreate added in v0.0.2

type CfInsertnxItem added in v0.0.2

type CfInsertnxItem Completed

func (CfInsertnxItem) Build added in v0.0.2

func (c CfInsertnxItem) Build() Completed

func (CfInsertnxItem) Item added in v0.0.2

func (c CfInsertnxItem) Item(item ...string) CfInsertnxItem

type CfInsertnxItems added in v0.0.2

type CfInsertnxItems Completed

func (CfInsertnxItems) Item added in v0.0.2

func (c CfInsertnxItems) Item(item ...string) CfInsertnxItem

type CfInsertnxKey added in v0.0.2

type CfInsertnxKey Completed

func (CfInsertnxKey) Capacity added in v0.0.2

func (c CfInsertnxKey) Capacity(capacity int64) CfInsertnxCapacity

func (CfInsertnxKey) Items added in v0.0.2

func (c CfInsertnxKey) Items() CfInsertnxItems

func (CfInsertnxKey) Nocreate added in v0.0.2

func (c CfInsertnxKey) Nocreate() CfInsertnxNocreate

type CfInsertnxNocreate added in v0.0.2

type CfInsertnxNocreate Completed

func (CfInsertnxNocreate) Items added in v0.0.2

type CfLoadchunk added in v0.0.2

type CfLoadchunk Completed

func (CfLoadchunk) Key added in v0.0.2

func (c CfLoadchunk) Key(key string) CfLoadchunkKey

type CfLoadchunkData added in v0.0.2

type CfLoadchunkData Completed

func (CfLoadchunkData) Build added in v0.0.2

func (c CfLoadchunkData) Build() Completed

type CfLoadchunkIterator added in v0.0.2

type CfLoadchunkIterator Completed

func (CfLoadchunkIterator) Data added in v0.0.2

type CfLoadchunkKey added in v0.0.2

type CfLoadchunkKey Completed

func (CfLoadchunkKey) Iterator added in v0.0.2

func (c CfLoadchunkKey) Iterator(iterator int64) CfLoadchunkIterator

type CfMexists added in v0.0.2

type CfMexists Completed

func (CfMexists) Key added in v0.0.2

func (c CfMexists) Key(key string) CfMexistsKey

type CfMexistsItem added in v0.0.2

type CfMexistsItem Completed

func (CfMexistsItem) Build added in v0.0.2

func (c CfMexistsItem) Build() Completed

func (CfMexistsItem) Item added in v0.0.2

func (c CfMexistsItem) Item(item ...string) CfMexistsItem

type CfMexistsKey added in v0.0.2

type CfMexistsKey Completed

func (CfMexistsKey) Item added in v0.0.2

func (c CfMexistsKey) Item(item ...string) CfMexistsItem

type CfReserve added in v0.0.2

type CfReserve Completed

func (CfReserve) Key added in v0.0.2

func (c CfReserve) Key(key string) CfReserveKey

type CfReserveBucketsize added in v0.0.2

type CfReserveBucketsize Completed

func (CfReserveBucketsize) Build added in v0.0.2

func (c CfReserveBucketsize) Build() Completed

func (CfReserveBucketsize) Expansion added in v0.0.2

func (c CfReserveBucketsize) Expansion(expansion int64) CfReserveExpansion

func (CfReserveBucketsize) Maxiterations added in v0.0.2

func (c CfReserveBucketsize) Maxiterations(maxiterations int64) CfReserveMaxiterations

type CfReserveCapacity added in v0.0.2

type CfReserveCapacity Completed

func (CfReserveCapacity) Bucketsize added in v0.0.2

func (c CfReserveCapacity) Bucketsize(bucketsize int64) CfReserveBucketsize

func (CfReserveCapacity) Build added in v0.0.2

func (c CfReserveCapacity) Build() Completed

func (CfReserveCapacity) Expansion added in v0.0.2

func (c CfReserveCapacity) Expansion(expansion int64) CfReserveExpansion

func (CfReserveCapacity) Maxiterations added in v0.0.2

func (c CfReserveCapacity) Maxiterations(maxiterations int64) CfReserveMaxiterations

type CfReserveExpansion added in v0.0.2

type CfReserveExpansion Completed

func (CfReserveExpansion) Build added in v0.0.2

func (c CfReserveExpansion) Build() Completed

type CfReserveKey added in v0.0.2

type CfReserveKey Completed

func (CfReserveKey) Capacity added in v0.0.2

func (c CfReserveKey) Capacity(capacity int64) CfReserveCapacity

type CfReserveMaxiterations added in v0.0.2

type CfReserveMaxiterations Completed

func (CfReserveMaxiterations) Build added in v0.0.2

func (CfReserveMaxiterations) Expansion added in v0.0.2

func (c CfReserveMaxiterations) Expansion(expansion int64) CfReserveExpansion

type CfScandump added in v0.0.2

type CfScandump Completed

func (CfScandump) Key added in v0.0.2

func (c CfScandump) Key(key string) CfScandumpKey

type CfScandumpIterator added in v0.0.2

type CfScandumpIterator Completed

func (CfScandumpIterator) Build added in v0.0.2

func (c CfScandumpIterator) Build() Completed

type CfScandumpKey added in v0.0.2

type CfScandumpKey Completed

func (CfScandumpKey) Iterator added in v0.0.2

func (c CfScandumpKey) Iterator(iterator int64) CfScandumpIterator

type ClientCaching

type ClientCaching Completed

func (ClientCaching) No

func (ClientCaching) Yes

type ClientCachingModeNo

type ClientCachingModeNo Completed

func (ClientCachingModeNo) Build

func (c ClientCachingModeNo) Build() Completed

type ClientCachingModeYes

type ClientCachingModeYes Completed

func (ClientCachingModeYes) Build

func (c ClientCachingModeYes) Build() Completed

type ClientGetname

type ClientGetname Completed

func (ClientGetname) Build

func (c ClientGetname) Build() Completed

type ClientGetredir

type ClientGetredir Completed

func (ClientGetredir) Build

func (c ClientGetredir) Build() Completed

type ClientId

type ClientId Completed

func (ClientId) Build

func (c ClientId) Build() Completed

type ClientInfo

type ClientInfo Completed

func (ClientInfo) Build

func (c ClientInfo) Build() Completed

type ClientKill

type ClientKill Completed

func (ClientKill) Addr

func (c ClientKill) Addr(ipPort string) ClientKillAddr

func (ClientKill) Build

func (c ClientKill) Build() Completed

func (ClientKill) Id

func (c ClientKill) Id(clientId int64) ClientKillId

func (ClientKill) IpPort

func (c ClientKill) IpPort(ipPort string) ClientKillIpPort

func (ClientKill) Laddr

func (c ClientKill) Laddr(ipPort string) ClientKillLaddr

func (ClientKill) SkipmeNo added in v0.0.95

func (c ClientKill) SkipmeNo() ClientKillSkipmeNo

func (ClientKill) SkipmeYes added in v0.0.95

func (c ClientKill) SkipmeYes() ClientKillSkipmeYes

func (ClientKill) TypeMaster added in v0.0.2

func (c ClientKill) TypeMaster() ClientKillTypeMaster

func (ClientKill) TypeNormal added in v0.0.2

func (c ClientKill) TypeNormal() ClientKillTypeNormal

func (ClientKill) TypePubsub added in v0.0.2

func (c ClientKill) TypePubsub() ClientKillTypePubsub

func (ClientKill) TypeReplica added in v0.0.55

func (c ClientKill) TypeReplica() ClientKillTypeReplica

func (ClientKill) User

func (c ClientKill) User(username string) ClientKillUser

type ClientKillAddr

type ClientKillAddr Completed

func (ClientKillAddr) Build

func (c ClientKillAddr) Build() Completed

func (ClientKillAddr) Laddr

func (c ClientKillAddr) Laddr(ipPort string) ClientKillLaddr

func (ClientKillAddr) SkipmeNo added in v0.0.95

func (c ClientKillAddr) SkipmeNo() ClientKillSkipmeNo

func (ClientKillAddr) SkipmeYes added in v0.0.95

func (c ClientKillAddr) SkipmeYes() ClientKillSkipmeYes

type ClientKillId

type ClientKillId Completed

func (ClientKillId) Addr

func (c ClientKillId) Addr(ipPort string) ClientKillAddr

func (ClientKillId) Build

func (c ClientKillId) Build() Completed

func (ClientKillId) Laddr

func (c ClientKillId) Laddr(ipPort string) ClientKillLaddr

func (ClientKillId) SkipmeNo added in v0.0.95

func (c ClientKillId) SkipmeNo() ClientKillSkipmeNo

func (ClientKillId) SkipmeYes added in v0.0.95

func (c ClientKillId) SkipmeYes() ClientKillSkipmeYes

func (ClientKillId) TypeMaster added in v0.0.2

func (c ClientKillId) TypeMaster() ClientKillTypeMaster

func (ClientKillId) TypeNormal added in v0.0.2

func (c ClientKillId) TypeNormal() ClientKillTypeNormal

func (ClientKillId) TypePubsub added in v0.0.2

func (c ClientKillId) TypePubsub() ClientKillTypePubsub

func (ClientKillId) TypeReplica added in v0.0.55

func (c ClientKillId) TypeReplica() ClientKillTypeReplica

func (ClientKillId) User

func (c ClientKillId) User(username string) ClientKillUser

type ClientKillIpPort

type ClientKillIpPort Completed

func (ClientKillIpPort) Addr

func (c ClientKillIpPort) Addr(ipPort string) ClientKillAddr

func (ClientKillIpPort) Build

func (c ClientKillIpPort) Build() Completed

func (ClientKillIpPort) Id

func (c ClientKillIpPort) Id(clientId int64) ClientKillId

func (ClientKillIpPort) Laddr

func (c ClientKillIpPort) Laddr(ipPort string) ClientKillLaddr

func (ClientKillIpPort) SkipmeNo added in v0.0.95

func (c ClientKillIpPort) SkipmeNo() ClientKillSkipmeNo

func (ClientKillIpPort) SkipmeYes added in v0.0.95

func (c ClientKillIpPort) SkipmeYes() ClientKillSkipmeYes

func (ClientKillIpPort) TypeMaster added in v0.0.2

func (c ClientKillIpPort) TypeMaster() ClientKillTypeMaster

func (ClientKillIpPort) TypeNormal added in v0.0.2

func (c ClientKillIpPort) TypeNormal() ClientKillTypeNormal

func (ClientKillIpPort) TypePubsub added in v0.0.2

func (c ClientKillIpPort) TypePubsub() ClientKillTypePubsub

func (ClientKillIpPort) TypeReplica added in v0.0.55

func (c ClientKillIpPort) TypeReplica() ClientKillTypeReplica

func (ClientKillIpPort) User

func (c ClientKillIpPort) User(username string) ClientKillUser

type ClientKillLaddr

type ClientKillLaddr Completed

func (ClientKillLaddr) Build

func (c ClientKillLaddr) Build() Completed

func (ClientKillLaddr) SkipmeNo added in v0.0.95

func (c ClientKillLaddr) SkipmeNo() ClientKillSkipmeNo

func (ClientKillLaddr) SkipmeYes added in v0.0.95

func (c ClientKillLaddr) SkipmeYes() ClientKillSkipmeYes

type ClientKillSkipmeNo added in v0.0.95

type ClientKillSkipmeNo Completed

func (ClientKillSkipmeNo) Build added in v0.0.95

func (c ClientKillSkipmeNo) Build() Completed

type ClientKillSkipmeYes added in v0.0.95

type ClientKillSkipmeYes Completed

func (ClientKillSkipmeYes) Build added in v0.0.95

func (c ClientKillSkipmeYes) Build() Completed

type ClientKillTypeMaster added in v0.0.2

type ClientKillTypeMaster Completed

func (ClientKillTypeMaster) Addr added in v0.0.2

func (ClientKillTypeMaster) Build added in v0.0.2

func (c ClientKillTypeMaster) Build() Completed

func (ClientKillTypeMaster) Laddr added in v0.0.2

func (ClientKillTypeMaster) SkipmeNo added in v0.0.95

func (ClientKillTypeMaster) SkipmeYes added in v0.0.95

func (ClientKillTypeMaster) User added in v0.0.2

func (c ClientKillTypeMaster) User(username string) ClientKillUser

type ClientKillTypeNormal added in v0.0.2

type ClientKillTypeNormal Completed

func (ClientKillTypeNormal) Addr added in v0.0.2

func (ClientKillTypeNormal) Build added in v0.0.2

func (c ClientKillTypeNormal) Build() Completed

func (ClientKillTypeNormal) Laddr added in v0.0.2

func (ClientKillTypeNormal) SkipmeNo added in v0.0.95

func (ClientKillTypeNormal) SkipmeYes added in v0.0.95

func (ClientKillTypeNormal) User added in v0.0.2

func (c ClientKillTypeNormal) User(username string) ClientKillUser

type ClientKillTypePubsub added in v0.0.2

type ClientKillTypePubsub Completed

func (ClientKillTypePubsub) Addr added in v0.0.2

func (ClientKillTypePubsub) Build added in v0.0.2

func (c ClientKillTypePubsub) Build() Completed

func (ClientKillTypePubsub) Laddr added in v0.0.2

func (ClientKillTypePubsub) SkipmeNo added in v0.0.95

func (ClientKillTypePubsub) SkipmeYes added in v0.0.95

func (ClientKillTypePubsub) User added in v0.0.2

func (c ClientKillTypePubsub) User(username string) ClientKillUser

type ClientKillTypeReplica added in v0.0.55

type ClientKillTypeReplica Completed

func (ClientKillTypeReplica) Addr added in v0.0.55

func (ClientKillTypeReplica) Build added in v0.0.55

func (c ClientKillTypeReplica) Build() Completed

func (ClientKillTypeReplica) Laddr added in v0.0.55

func (ClientKillTypeReplica) SkipmeNo added in v0.0.95

func (ClientKillTypeReplica) SkipmeYes added in v0.0.95

func (ClientKillTypeReplica) User added in v0.0.55

func (c ClientKillTypeReplica) User(username string) ClientKillUser

type ClientKillUser

type ClientKillUser Completed

func (ClientKillUser) Addr

func (c ClientKillUser) Addr(ipPort string) ClientKillAddr

func (ClientKillUser) Build

func (c ClientKillUser) Build() Completed

func (ClientKillUser) Laddr

func (c ClientKillUser) Laddr(ipPort string) ClientKillLaddr

func (ClientKillUser) SkipmeNo added in v0.0.95

func (c ClientKillUser) SkipmeNo() ClientKillSkipmeNo

func (ClientKillUser) SkipmeYes added in v0.0.95

func (c ClientKillUser) SkipmeYes() ClientKillSkipmeYes

type ClientList

type ClientList Completed

func (ClientList) Build

func (c ClientList) Build() Completed

func (ClientList) Id

func (c ClientList) Id() ClientListIdId

func (ClientList) TypeMaster added in v0.0.2

func (c ClientList) TypeMaster() ClientListTypeMaster

func (ClientList) TypeNormal added in v0.0.2

func (c ClientList) TypeNormal() ClientListTypeNormal

func (ClientList) TypePubsub added in v0.0.2

func (c ClientList) TypePubsub() ClientListTypePubsub

func (ClientList) TypeReplica added in v0.0.2

func (c ClientList) TypeReplica() ClientListTypeReplica

type ClientListIdClientId

type ClientListIdClientId Completed

func (ClientListIdClientId) Build

func (c ClientListIdClientId) Build() Completed

func (ClientListIdClientId) ClientId

func (c ClientListIdClientId) ClientId(clientId ...int64) ClientListIdClientId

type ClientListIdId

type ClientListIdId Completed

func (ClientListIdId) ClientId

func (c ClientListIdId) ClientId(clientId ...int64) ClientListIdClientId

type ClientListTypeMaster added in v0.0.2

type ClientListTypeMaster Completed

func (ClientListTypeMaster) Build added in v0.0.2

func (c ClientListTypeMaster) Build() Completed

func (ClientListTypeMaster) Id added in v0.0.2

type ClientListTypeNormal added in v0.0.2

type ClientListTypeNormal Completed

func (ClientListTypeNormal) Build added in v0.0.2

func (c ClientListTypeNormal) Build() Completed

func (ClientListTypeNormal) Id added in v0.0.2

type ClientListTypePubsub added in v0.0.2

type ClientListTypePubsub Completed

func (ClientListTypePubsub) Build added in v0.0.2

func (c ClientListTypePubsub) Build() Completed

func (ClientListTypePubsub) Id added in v0.0.2

type ClientListTypeReplica added in v0.0.2

type ClientListTypeReplica Completed

func (ClientListTypeReplica) Build added in v0.0.2

func (c ClientListTypeReplica) Build() Completed

func (ClientListTypeReplica) Id added in v0.0.2

type ClientNoEvict

type ClientNoEvict Completed

func (ClientNoEvict) Off

func (ClientNoEvict) On

type ClientNoEvictEnabledOff

type ClientNoEvictEnabledOff Completed

func (ClientNoEvictEnabledOff) Build

type ClientNoEvictEnabledOn

type ClientNoEvictEnabledOn Completed

func (ClientNoEvictEnabledOn) Build

type ClientNoTouch added in v0.0.96

type ClientNoTouch Completed

func (ClientNoTouch) Off added in v0.0.96

func (ClientNoTouch) On added in v0.0.96

type ClientNoTouchEnabledOff added in v0.0.96

type ClientNoTouchEnabledOff Completed

func (ClientNoTouchEnabledOff) Build added in v0.0.96

type ClientNoTouchEnabledOn added in v0.0.96

type ClientNoTouchEnabledOn Completed

func (ClientNoTouchEnabledOn) Build added in v0.0.96

type ClientPause

type ClientPause Completed

func (ClientPause) Timeout

func (c ClientPause) Timeout(timeout int64) ClientPauseTimeout

type ClientPauseModeAll

type ClientPauseModeAll Completed

func (ClientPauseModeAll) Build

func (c ClientPauseModeAll) Build() Completed

type ClientPauseModeWrite

type ClientPauseModeWrite Completed

func (ClientPauseModeWrite) Build

func (c ClientPauseModeWrite) Build() Completed

type ClientPauseTimeout

type ClientPauseTimeout Completed

func (ClientPauseTimeout) All

func (ClientPauseTimeout) Build

func (c ClientPauseTimeout) Build() Completed

func (ClientPauseTimeout) Write

type ClientReply

type ClientReply Completed

func (ClientReply) Off

func (ClientReply) On

func (ClientReply) Skip

type ClientReplyReplyModeOff

type ClientReplyReplyModeOff Completed

func (ClientReplyReplyModeOff) Build

type ClientReplyReplyModeOn

type ClientReplyReplyModeOn Completed

func (ClientReplyReplyModeOn) Build

type ClientReplyReplyModeSkip

type ClientReplyReplyModeSkip Completed

func (ClientReplyReplyModeSkip) Build

type ClientSetinfo added in v0.0.96

type ClientSetinfo Completed

func (ClientSetinfo) Libname added in v0.0.96

func (c ClientSetinfo) Libname(libname string) ClientSetinfoAttrLibname

type ClientSetinfoAttrLibname added in v0.0.96

type ClientSetinfoAttrLibname Completed

func (ClientSetinfoAttrLibname) Libver added in v0.0.96

type ClientSetinfoAttrLibver added in v0.0.96

type ClientSetinfoAttrLibver Completed

func (ClientSetinfoAttrLibver) Build added in v0.0.96

type ClientSetname

type ClientSetname Completed

func (ClientSetname) ConnectionName

func (c ClientSetname) ConnectionName(connectionName string) ClientSetnameConnectionName

type ClientSetnameConnectionName

type ClientSetnameConnectionName Completed

func (ClientSetnameConnectionName) Build

type ClientTracking

type ClientTracking Completed

func (ClientTracking) Off

func (ClientTracking) On

type ClientTrackingBcast added in v0.0.2

type ClientTrackingBcast Completed

func (ClientTrackingBcast) Build added in v0.0.2

func (c ClientTrackingBcast) Build() Completed

func (ClientTrackingBcast) Noloop added in v0.0.2

func (ClientTrackingBcast) Optin added in v0.0.2

func (ClientTrackingBcast) Optout added in v0.0.2

type ClientTrackingNoloop added in v0.0.2

type ClientTrackingNoloop Completed

func (ClientTrackingNoloop) Build added in v0.0.2

func (c ClientTrackingNoloop) Build() Completed

type ClientTrackingOptin added in v0.0.2

type ClientTrackingOptin Completed

func (ClientTrackingOptin) Build added in v0.0.2

func (c ClientTrackingOptin) Build() Completed

func (ClientTrackingOptin) Noloop added in v0.0.2

func (ClientTrackingOptin) Optout added in v0.0.2

type ClientTrackingOptout added in v0.0.2

type ClientTrackingOptout Completed

func (ClientTrackingOptout) Build added in v0.0.2

func (c ClientTrackingOptout) Build() Completed

func (ClientTrackingOptout) Noloop added in v0.0.2

type ClientTrackingPrefix

type ClientTrackingPrefix Completed

func (ClientTrackingPrefix) Bcast

func (ClientTrackingPrefix) Build

func (c ClientTrackingPrefix) Build() Completed

func (ClientTrackingPrefix) Noloop

func (ClientTrackingPrefix) Optin

func (ClientTrackingPrefix) Optout

func (ClientTrackingPrefix) Prefix

type ClientTrackingRedirect

type ClientTrackingRedirect Completed

func (ClientTrackingRedirect) Bcast

func (ClientTrackingRedirect) Build

func (ClientTrackingRedirect) Noloop

func (ClientTrackingRedirect) Optin

func (ClientTrackingRedirect) Optout

func (ClientTrackingRedirect) Prefix

type ClientTrackingStatusOff

type ClientTrackingStatusOff Completed

func (ClientTrackingStatusOff) Bcast

func (ClientTrackingStatusOff) Build

func (ClientTrackingStatusOff) Noloop

func (ClientTrackingStatusOff) Optin

func (ClientTrackingStatusOff) Optout

func (ClientTrackingStatusOff) Prefix

func (ClientTrackingStatusOff) Redirect

type ClientTrackingStatusOn

type ClientTrackingStatusOn Completed

func (ClientTrackingStatusOn) Bcast

func (ClientTrackingStatusOn) Build

func (ClientTrackingStatusOn) Noloop

func (ClientTrackingStatusOn) Optin

func (ClientTrackingStatusOn) Optout

func (ClientTrackingStatusOn) Prefix

func (ClientTrackingStatusOn) Redirect

type ClientTrackinginfo

type ClientTrackinginfo Completed

func (ClientTrackinginfo) Build

func (c ClientTrackinginfo) Build() Completed

type ClientUnblock

type ClientUnblock Completed

func (ClientUnblock) ClientId

func (c ClientUnblock) ClientId(clientId int64) ClientUnblockClientId

type ClientUnblockClientId

type ClientUnblockClientId Completed

func (ClientUnblockClientId) Build

func (c ClientUnblockClientId) Build() Completed

func (ClientUnblockClientId) Error

func (ClientUnblockClientId) Timeout

type ClientUnblockUnblockTypeError

type ClientUnblockUnblockTypeError Completed

func (ClientUnblockUnblockTypeError) Build

type ClientUnblockUnblockTypeTimeout

type ClientUnblockUnblockTypeTimeout Completed

func (ClientUnblockUnblockTypeTimeout) Build

type ClientUnpause

type ClientUnpause Completed

func (ClientUnpause) Build

func (c ClientUnpause) Build() Completed

type ClusterAddslots

type ClusterAddslots Completed

func (ClusterAddslots) Slot

func (c ClusterAddslots) Slot(slot ...int64) ClusterAddslotsSlot

type ClusterAddslotsSlot

type ClusterAddslotsSlot Completed

func (ClusterAddslotsSlot) Build

func (c ClusterAddslotsSlot) Build() Completed

func (ClusterAddslotsSlot) Slot

type ClusterAddslotsrange added in v0.0.2

type ClusterAddslotsrange Completed

func (ClusterAddslotsrange) StartSlotEndSlot added in v0.0.2

type ClusterAddslotsrangeStartSlotEndSlot added in v0.0.2

type ClusterAddslotsrangeStartSlotEndSlot Completed

func (ClusterAddslotsrangeStartSlotEndSlot) Build added in v0.0.2

func (ClusterAddslotsrangeStartSlotEndSlot) StartSlotEndSlot added in v0.0.2

type ClusterBumpepoch

type ClusterBumpepoch Completed

func (ClusterBumpepoch) Build

func (c ClusterBumpepoch) Build() Completed

type ClusterCountFailureReports

type ClusterCountFailureReports Completed

func (ClusterCountFailureReports) NodeId

type ClusterCountFailureReportsNodeId

type ClusterCountFailureReportsNodeId Completed

func (ClusterCountFailureReportsNodeId) Build

type ClusterCountkeysinslot

type ClusterCountkeysinslot Completed

func (ClusterCountkeysinslot) Slot

type ClusterCountkeysinslotSlot

type ClusterCountkeysinslotSlot Completed

func (ClusterCountkeysinslotSlot) Build

type ClusterDelslots

type ClusterDelslots Completed

func (ClusterDelslots) Slot

func (c ClusterDelslots) Slot(slot ...int64) ClusterDelslotsSlot

type ClusterDelslotsSlot

type ClusterDelslotsSlot Completed

func (ClusterDelslotsSlot) Build

func (c ClusterDelslotsSlot) Build() Completed

func (ClusterDelslotsSlot) Slot

type ClusterDelslotsrange added in v0.0.2

type ClusterDelslotsrange Completed

func (ClusterDelslotsrange) StartSlotEndSlot added in v0.0.2

type ClusterDelslotsrangeStartSlotEndSlot added in v0.0.2

type ClusterDelslotsrangeStartSlotEndSlot Completed

func (ClusterDelslotsrangeStartSlotEndSlot) Build added in v0.0.2

func (ClusterDelslotsrangeStartSlotEndSlot) StartSlotEndSlot added in v0.0.2

type ClusterFailover

type ClusterFailover Completed

func (ClusterFailover) Build

func (c ClusterFailover) Build() Completed

func (ClusterFailover) Force

func (ClusterFailover) Takeover

type ClusterFailoverOptionsForce

type ClusterFailoverOptionsForce Completed

func (ClusterFailoverOptionsForce) Build

type ClusterFailoverOptionsTakeover

type ClusterFailoverOptionsTakeover Completed

func (ClusterFailoverOptionsTakeover) Build

type ClusterFlushslots

type ClusterFlushslots Completed

func (ClusterFlushslots) Build

func (c ClusterFlushslots) Build() Completed

type ClusterForget

type ClusterForget Completed

func (ClusterForget) NodeId

func (c ClusterForget) NodeId(nodeId string) ClusterForgetNodeId

type ClusterForgetNodeId

type ClusterForgetNodeId Completed

func (ClusterForgetNodeId) Build

func (c ClusterForgetNodeId) Build() Completed

type ClusterGetkeysinslot

type ClusterGetkeysinslot Completed

func (ClusterGetkeysinslot) Slot

type ClusterGetkeysinslotCount

type ClusterGetkeysinslotCount Completed

func (ClusterGetkeysinslotCount) Build

type ClusterGetkeysinslotSlot

type ClusterGetkeysinslotSlot Completed

func (ClusterGetkeysinslotSlot) Count

type ClusterInfo

type ClusterInfo Completed

func (ClusterInfo) Build

func (c ClusterInfo) Build() Completed

type ClusterKeyslot

type ClusterKeyslot Completed

func (ClusterKeyslot) Key

type ClusterKeyslotKey

type ClusterKeyslotKey Completed

func (ClusterKeyslotKey) Build

func (c ClusterKeyslotKey) Build() Completed
type ClusterLinks Completed

func (ClusterLinks) Build added in v0.0.21

func (c ClusterLinks) Build() Completed

type ClusterMeet

type ClusterMeet Completed

func (ClusterMeet) Ip

func (c ClusterMeet) Ip(ip string) ClusterMeetIp

type ClusterMeetClusterBusPort added in v0.0.81

type ClusterMeetClusterBusPort Completed

func (ClusterMeetClusterBusPort) Build added in v0.0.81

type ClusterMeetIp

type ClusterMeetIp Completed

func (ClusterMeetIp) Port

func (c ClusterMeetIp) Port(port int64) ClusterMeetPort

type ClusterMeetPort

type ClusterMeetPort Completed

func (ClusterMeetPort) Build

func (c ClusterMeetPort) Build() Completed

func (ClusterMeetPort) ClusterBusPort added in v0.0.81

func (c ClusterMeetPort) ClusterBusPort(clusterBusPort int64) ClusterMeetClusterBusPort

type ClusterMyid

type ClusterMyid Completed

func (ClusterMyid) Build

func (c ClusterMyid) Build() Completed

type ClusterMyshardid added in v0.0.95

type ClusterMyshardid Completed

func (ClusterMyshardid) Build added in v0.0.95

func (c ClusterMyshardid) Build() Completed

type ClusterNodes

type ClusterNodes Completed

func (ClusterNodes) Build

func (c ClusterNodes) Build() Completed

type ClusterReplicas

type ClusterReplicas Completed

func (ClusterReplicas) NodeId

func (c ClusterReplicas) NodeId(nodeId string) ClusterReplicasNodeId

type ClusterReplicasNodeId

type ClusterReplicasNodeId Completed

func (ClusterReplicasNodeId) Build

func (c ClusterReplicasNodeId) Build() Completed

type ClusterReplicate

type ClusterReplicate Completed

func (ClusterReplicate) NodeId

type ClusterReplicateNodeId

type ClusterReplicateNodeId Completed

func (ClusterReplicateNodeId) Build

type ClusterReset

type ClusterReset Completed

func (ClusterReset) Build

func (c ClusterReset) Build() Completed

func (ClusterReset) Hard

func (ClusterReset) Soft

type ClusterResetResetTypeHard

type ClusterResetResetTypeHard Completed

func (ClusterResetResetTypeHard) Build

type ClusterResetResetTypeSoft

type ClusterResetResetTypeSoft Completed

func (ClusterResetResetTypeSoft) Build

type ClusterSaveconfig

type ClusterSaveconfig Completed

func (ClusterSaveconfig) Build

func (c ClusterSaveconfig) Build() Completed

type ClusterSetConfigEpoch

type ClusterSetConfigEpoch Completed

func (ClusterSetConfigEpoch) ConfigEpoch

type ClusterSetConfigEpochConfigEpoch

type ClusterSetConfigEpochConfigEpoch Completed

func (ClusterSetConfigEpochConfigEpoch) Build

type ClusterSetslot

type ClusterSetslot Completed

func (ClusterSetslot) Slot

type ClusterSetslotNodeId

type ClusterSetslotNodeId Completed

func (ClusterSetslotNodeId) Build

func (c ClusterSetslotNodeId) Build() Completed

type ClusterSetslotSlot

type ClusterSetslotSlot Completed

func (ClusterSetslotSlot) Importing

func (ClusterSetslotSlot) Migrating

func (ClusterSetslotSlot) Node

func (ClusterSetslotSlot) Stable

type ClusterSetslotSubcommandImporting

type ClusterSetslotSubcommandImporting Completed

func (ClusterSetslotSubcommandImporting) Build

func (ClusterSetslotSubcommandImporting) NodeId

type ClusterSetslotSubcommandMigrating

type ClusterSetslotSubcommandMigrating Completed

func (ClusterSetslotSubcommandMigrating) Build

func (ClusterSetslotSubcommandMigrating) NodeId

type ClusterSetslotSubcommandNode

type ClusterSetslotSubcommandNode Completed

func (ClusterSetslotSubcommandNode) Build

func (ClusterSetslotSubcommandNode) NodeId

type ClusterSetslotSubcommandStable

type ClusterSetslotSubcommandStable Completed

func (ClusterSetslotSubcommandStable) Build

func (ClusterSetslotSubcommandStable) NodeId

type ClusterShards added in v0.0.42

type ClusterShards Completed

func (ClusterShards) Build added in v0.0.42

func (c ClusterShards) Build() Completed

type ClusterSlaves

type ClusterSlaves Completed

func (ClusterSlaves) NodeId

func (c ClusterSlaves) NodeId(nodeId string) ClusterSlavesNodeId

type ClusterSlavesNodeId

type ClusterSlavesNodeId Completed

func (ClusterSlavesNodeId) Build

func (c ClusterSlavesNodeId) Build() Completed

type ClusterSlots

type ClusterSlots Completed

func (ClusterSlots) Build

func (c ClusterSlots) Build() Completed

type CmsIncrby added in v0.0.2

type CmsIncrby Completed

func (CmsIncrby) Key added in v0.0.2

func (c CmsIncrby) Key(key string) CmsIncrbyKey

type CmsIncrbyItemsIncrement added in v0.0.2

type CmsIncrbyItemsIncrement Completed

func (CmsIncrbyItemsIncrement) Build added in v0.0.2

func (CmsIncrbyItemsIncrement) Item added in v0.0.2

type CmsIncrbyItemsItem added in v0.0.2

type CmsIncrbyItemsItem Completed

func (CmsIncrbyItemsItem) Increment added in v0.0.2

func (c CmsIncrbyItemsItem) Increment(increment int64) CmsIncrbyItemsIncrement

type CmsIncrbyKey added in v0.0.2

type CmsIncrbyKey Completed

func (CmsIncrbyKey) Item added in v0.0.2

func (c CmsIncrbyKey) Item(item string) CmsIncrbyItemsItem

type CmsInfo added in v0.0.2

type CmsInfo Completed

func (CmsInfo) Key added in v0.0.2

func (c CmsInfo) Key(key string) CmsInfoKey

type CmsInfoKey added in v0.0.2

type CmsInfoKey Completed

func (CmsInfoKey) Build added in v0.0.2

func (c CmsInfoKey) Build() Completed

func (CmsInfoKey) Cache added in v0.0.2

func (c CmsInfoKey) Cache() Cacheable

type CmsInitbydim added in v0.0.2

type CmsInitbydim Completed

func (CmsInitbydim) Key added in v0.0.2

func (c CmsInitbydim) Key(key string) CmsInitbydimKey

type CmsInitbydimDepth added in v0.0.2

type CmsInitbydimDepth Completed

func (CmsInitbydimDepth) Build added in v0.0.2

func (c CmsInitbydimDepth) Build() Completed

type CmsInitbydimKey added in v0.0.2

type CmsInitbydimKey Completed

func (CmsInitbydimKey) Width added in v0.0.2

func (c CmsInitbydimKey) Width(width int64) CmsInitbydimWidth

type CmsInitbydimWidth added in v0.0.2

type CmsInitbydimWidth Completed

func (CmsInitbydimWidth) Depth added in v0.0.2

func (c CmsInitbydimWidth) Depth(depth int64) CmsInitbydimDepth

type CmsInitbyprob added in v0.0.2

type CmsInitbyprob Completed

func (CmsInitbyprob) Key added in v0.0.2

type CmsInitbyprobError added in v0.0.2

type CmsInitbyprobError Completed

func (CmsInitbyprobError) Probability added in v0.0.2

func (c CmsInitbyprobError) Probability(probability float64) CmsInitbyprobProbability

type CmsInitbyprobKey added in v0.0.2

type CmsInitbyprobKey Completed

func (CmsInitbyprobKey) Error added in v0.0.2

type CmsInitbyprobProbability added in v0.0.2

type CmsInitbyprobProbability Completed

func (CmsInitbyprobProbability) Build added in v0.0.2

type CmsMerge added in v0.0.2

type CmsMerge Completed

func (CmsMerge) Destination added in v0.0.2

func (c CmsMerge) Destination(destination string) CmsMergeDestination

type CmsMergeDestination added in v0.0.2

type CmsMergeDestination Completed

func (CmsMergeDestination) Numkeys added in v0.0.2

func (c CmsMergeDestination) Numkeys(numkeys int64) CmsMergeNumkeys

type CmsMergeNumkeys added in v0.0.2

type CmsMergeNumkeys Completed

func (CmsMergeNumkeys) Source added in v0.0.2

func (c CmsMergeNumkeys) Source(source ...string) CmsMergeSource

type CmsMergeSource added in v0.0.2

type CmsMergeSource Completed

func (CmsMergeSource) Build added in v0.0.2

func (c CmsMergeSource) Build() Completed

func (CmsMergeSource) Source added in v0.0.2

func (c CmsMergeSource) Source(source ...string) CmsMergeSource

func (CmsMergeSource) Weights added in v0.0.2

type CmsMergeWeightWeight added in v0.0.2

type CmsMergeWeightWeight Completed

func (CmsMergeWeightWeight) Build added in v0.0.2

func (c CmsMergeWeightWeight) Build() Completed

func (CmsMergeWeightWeight) Weight added in v0.0.2

type CmsMergeWeightWeights added in v0.0.2

type CmsMergeWeightWeights Completed

func (CmsMergeWeightWeights) Weight added in v0.0.2

type CmsQuery added in v0.0.2

type CmsQuery Completed

func (CmsQuery) Key added in v0.0.2

func (c CmsQuery) Key(key string) CmsQueryKey

type CmsQueryItem added in v0.0.2

type CmsQueryItem Completed

func (CmsQueryItem) Build added in v0.0.2

func (c CmsQueryItem) Build() Completed

func (CmsQueryItem) Cache added in v0.0.2

func (c CmsQueryItem) Cache() Cacheable

func (CmsQueryItem) Item added in v0.0.2

func (c CmsQueryItem) Item(item ...string) CmsQueryItem

type CmsQueryKey added in v0.0.2

type CmsQueryKey Completed

func (CmsQueryKey) Item added in v0.0.2

func (c CmsQueryKey) Item(item ...string) CmsQueryItem

type Command

type Command Completed

func (Command) Build

func (c Command) Build() Completed

type CommandCount

type CommandCount Completed

func (CommandCount) Build

func (c CommandCount) Build() Completed

type CommandDocs added in v0.0.34

type CommandDocs Completed

func (CommandDocs) Build added in v0.0.34

func (c CommandDocs) Build() Completed

func (CommandDocs) CommandName added in v0.0.34

func (c CommandDocs) CommandName(commandName ...string) CommandDocsCommandName

type CommandDocsCommandName added in v0.0.34

type CommandDocsCommandName Completed

func (CommandDocsCommandName) Build added in v0.0.34

func (CommandDocsCommandName) CommandName added in v0.0.34

func (c CommandDocsCommandName) CommandName(commandName ...string) CommandDocsCommandName

type CommandGetkeys

type CommandGetkeys Completed

func (CommandGetkeys) Command added in v0.0.95

func (c CommandGetkeys) Command(command string) CommandGetkeysCommand

type CommandGetkeysArg added in v0.0.95

type CommandGetkeysArg Completed

func (CommandGetkeysArg) Arg added in v0.0.95

func (CommandGetkeysArg) Build added in v0.0.95

func (c CommandGetkeysArg) Build() Completed

type CommandGetkeysCommand added in v0.0.95

type CommandGetkeysCommand Completed

func (CommandGetkeysCommand) Arg added in v0.0.95

func (CommandGetkeysCommand) Build added in v0.0.95

func (c CommandGetkeysCommand) Build() Completed

type CommandGetkeysandflags added in v0.0.38

type CommandGetkeysandflags Completed

func (CommandGetkeysandflags) Command added in v0.0.95

type CommandGetkeysandflagsArg added in v0.0.95

type CommandGetkeysandflagsArg Completed

func (CommandGetkeysandflagsArg) Arg added in v0.0.95

func (CommandGetkeysandflagsArg) Build added in v0.0.95

type CommandGetkeysandflagsCommand added in v0.0.95

type CommandGetkeysandflagsCommand Completed

func (CommandGetkeysandflagsCommand) Arg added in v0.0.95

func (CommandGetkeysandflagsCommand) Build added in v0.0.95

type CommandInfo

type CommandInfo Completed

func (CommandInfo) Build added in v0.0.55

func (c CommandInfo) Build() Completed

func (CommandInfo) CommandName

func (c CommandInfo) CommandName(commandName ...string) CommandInfoCommandName

type CommandInfoCommandName

type CommandInfoCommandName Completed

func (CommandInfoCommandName) Build

func (CommandInfoCommandName) CommandName

func (c CommandInfoCommandName) CommandName(commandName ...string) CommandInfoCommandName

type CommandList added in v0.0.34

type CommandList Completed

func (CommandList) Build added in v0.0.34

func (c CommandList) Build() Completed

func (CommandList) FilterbyAclcatCategory added in v0.0.34

func (c CommandList) FilterbyAclcatCategory(category string) CommandListFilterbyAclcatCategory

func (CommandList) FilterbyModuleName added in v0.0.34

func (c CommandList) FilterbyModuleName(name string) CommandListFilterbyModuleName

func (CommandList) FilterbyPatternPattern added in v0.0.34

func (c CommandList) FilterbyPatternPattern(pattern string) CommandListFilterbyPatternPattern

type CommandListFilterbyAclcatCategory added in v0.0.34

type CommandListFilterbyAclcatCategory Completed

func (CommandListFilterbyAclcatCategory) Build added in v0.0.34

type CommandListFilterbyModuleName added in v0.0.34

type CommandListFilterbyModuleName Completed

func (CommandListFilterbyModuleName) Build added in v0.0.34

type CommandListFilterbyPatternPattern added in v0.0.34

type CommandListFilterbyPatternPattern Completed

func (CommandListFilterbyPatternPattern) Build added in v0.0.34

type CommandSlice added in v0.0.6

type CommandSlice struct {
	// contains filtered or unexported fields
}

CommandSlice is the command container managed by the sync.Pool

func CacheableCS added in v0.0.99

func CacheableCS(c Cacheable) *CommandSlice

CacheableCS get the underlying *CommandSlice

func CompletedCS added in v0.0.99

func CompletedCS(c Completed) *CommandSlice

CompletedCS get the underlying *CommandSlice

func (*CommandSlice) Build added in v0.0.99

func (cs *CommandSlice) Build()

func (*CommandSlice) Verify added in v0.0.99

func (cs *CommandSlice) Verify()

type Completed

type Completed struct {
	// contains filtered or unexported fields
}

Completed represents a completed Redis command, should be created by the Build() of command builder.

func NewBlockingCompleted added in v0.0.2

func NewBlockingCompleted(ss []string) Completed

NewBlockingCompleted creates an arbitrary blocking Completed command.

func NewCompleted

func NewCompleted(ss []string) Completed

NewCompleted creates an arbitrary Completed command.

func NewMGetCompleted added in v0.0.62

func NewMGetCompleted(ss []string) Completed

NewMGetCompleted creates an arbitrary readonly Completed command.

func NewMultiCompleted

func NewMultiCompleted(cs [][]string) []Completed

NewMultiCompleted creates multiple arbitrary Completed commands.

func NewReadOnlyCompleted added in v0.0.2

func NewReadOnlyCompleted(ss []string) Completed

NewReadOnlyCompleted creates an arbitrary readonly Completed command.

func (*Completed) Commands

func (c *Completed) Commands() []string

Commands returns the commands as []string. Note that the returned []string should not be modified and should not be read after passing into the Client interface, because it will be recycled.

func (*Completed) IsBlock

func (c *Completed) IsBlock() bool

IsBlock checks if it is blocking command which needs to be process by dedicated connection.

func (*Completed) IsEmpty

func (c *Completed) IsEmpty() bool

IsEmpty checks if it is an empty command.

func (*Completed) IsOptIn

func (c *Completed) IsOptIn() bool

IsOptIn checks if it is client side caching opt-int command.

func (*Completed) IsReadOnly

func (c *Completed) IsReadOnly() bool

IsReadOnly checks if it is readonly command and can be retried when network error.

func (*Completed) IsWrite

func (c *Completed) IsWrite() bool

IsWrite checks if it is not readonly command.

func (*Completed) NoReply

func (c *Completed) NoReply() bool

NoReply checks if it is one of the SUBSCRIBE, PSUBSCRIBE, UNSUBSCRIBE or PUNSUBSCRIBE commands.

func (Completed) Pin added in v0.0.99

func (c Completed) Pin() Completed

Pin prevents a Completed to be recycled

func (*Completed) Slot added in v0.0.7

func (c *Completed) Slot() uint16

Slot returns the command key slot

type ConfigGet

type ConfigGet Completed

func (ConfigGet) Parameter

func (c ConfigGet) Parameter(parameter ...string) ConfigGetParameter

type ConfigGetParameter

type ConfigGetParameter Completed

func (ConfigGetParameter) Build

func (c ConfigGetParameter) Build() Completed

func (ConfigGetParameter) Parameter added in v0.0.2

func (c ConfigGetParameter) Parameter(parameter ...string) ConfigGetParameter

type ConfigResetstat

type ConfigResetstat Completed

func (ConfigResetstat) Build

func (c ConfigResetstat) Build() Completed

type ConfigRewrite

type ConfigRewrite Completed

func (ConfigRewrite) Build

func (c ConfigRewrite) Build() Completed

type ConfigSet

type ConfigSet Completed

func (ConfigSet) ParameterValue added in v0.0.2

func (c ConfigSet) ParameterValue() ConfigSetParameterValue

type ConfigSetParameterValue added in v0.0.2

type ConfigSetParameterValue Completed

func (ConfigSetParameterValue) Build added in v0.0.2

func (ConfigSetParameterValue) ParameterValue added in v0.0.2

func (c ConfigSetParameterValue) ParameterValue(parameter string, value string) ConfigSetParameterValue

type Copy

type Copy Completed

func (Copy) Source

func (c Copy) Source(source string) CopySource

type CopyDb

type CopyDb Completed

func (CopyDb) Build

func (c CopyDb) Build() Completed

func (CopyDb) Replace

func (c CopyDb) Replace() CopyReplace

type CopyDestination

type CopyDestination Completed

func (CopyDestination) Build

func (c CopyDestination) Build() Completed

func (CopyDestination) Db

func (c CopyDestination) Db(destinationDb int64) CopyDb

func (CopyDestination) Replace

func (c CopyDestination) Replace() CopyReplace

type CopyReplace added in v0.0.2

type CopyReplace Completed

func (CopyReplace) Build added in v0.0.2

func (c CopyReplace) Build() Completed

type CopySource

type CopySource Completed

func (CopySource) Destination

func (c CopySource) Destination(destination string) CopyDestination

type Dbsize

type Dbsize Completed

func (Dbsize) Build

func (c Dbsize) Build() Completed

type DebugObject

type DebugObject Completed

func (DebugObject) Key

func (c DebugObject) Key(key string) DebugObjectKey

type DebugObjectKey

type DebugObjectKey Completed

func (DebugObjectKey) Build

func (c DebugObjectKey) Build() Completed

type DebugSegfault

type DebugSegfault Completed

func (DebugSegfault) Build

func (c DebugSegfault) Build() Completed

type Decr

type Decr Completed

func (Decr) Key

func (c Decr) Key(key string) DecrKey

type DecrKey

type DecrKey Completed

func (DecrKey) Build

func (c DecrKey) Build() Completed

type Decrby

type Decrby Completed

func (Decrby) Key

func (c Decrby) Key(key string) DecrbyKey

type DecrbyDecrement

type DecrbyDecrement Completed

func (DecrbyDecrement) Build

func (c DecrbyDecrement) Build() Completed

type DecrbyKey

type DecrbyKey Completed

func (DecrbyKey) Decrement

func (c DecrbyKey) Decrement(decrement int64) DecrbyDecrement

type Del

type Del Completed

func (Del) Key

func (c Del) Key(key ...string) DelKey

type DelKey

type DelKey Completed

func (DelKey) Build

func (c DelKey) Build() Completed

func (DelKey) Key

func (c DelKey) Key(key ...string) DelKey

type Discard

type Discard Completed

func (Discard) Build

func (c Discard) Build() Completed

type Dump

type Dump Completed

func (Dump) Key

func (c Dump) Key(key string) DumpKey

type DumpKey

type DumpKey Completed

func (DumpKey) Build

func (c DumpKey) Build() Completed

type Echo

type Echo Completed

func (Echo) Message

func (c Echo) Message(message string) EchoMessage

type EchoMessage

type EchoMessage Completed

func (EchoMessage) Build

func (c EchoMessage) Build() Completed

type Eval

type Eval Completed

func (Eval) Script

func (c Eval) Script(script string) EvalScript

type EvalArg

type EvalArg Completed

func (EvalArg) Arg

func (c EvalArg) Arg(arg ...string) EvalArg

func (EvalArg) Build

func (c EvalArg) Build() Completed

type EvalKey

type EvalKey Completed

func (EvalKey) Arg

func (c EvalKey) Arg(arg ...string) EvalArg

func (EvalKey) Build

func (c EvalKey) Build() Completed

func (EvalKey) Key

func (c EvalKey) Key(key ...string) EvalKey

type EvalNumkeys

type EvalNumkeys Completed

func (EvalNumkeys) Arg

func (c EvalNumkeys) Arg(arg ...string) EvalArg

func (EvalNumkeys) Build

func (c EvalNumkeys) Build() Completed

func (EvalNumkeys) Key

func (c EvalNumkeys) Key(key ...string) EvalKey

type EvalRo

type EvalRo Completed

func (EvalRo) Script

func (c EvalRo) Script(script string) EvalRoScript

type EvalRoArg

type EvalRoArg Completed

func (EvalRoArg) Arg

func (c EvalRoArg) Arg(arg ...string) EvalRoArg

func (EvalRoArg) Build

func (c EvalRoArg) Build() Completed

type EvalRoKey

type EvalRoKey Completed

func (EvalRoKey) Arg

func (c EvalRoKey) Arg(arg ...string) EvalRoArg

func (EvalRoKey) Build added in v0.0.83

func (c EvalRoKey) Build() Completed

func (EvalRoKey) Key

func (c EvalRoKey) Key(key ...string) EvalRoKey

type EvalRoNumkeys

type EvalRoNumkeys Completed

func (EvalRoNumkeys) Arg added in v0.0.83

func (c EvalRoNumkeys) Arg(arg ...string) EvalRoArg

func (EvalRoNumkeys) Build added in v0.0.83

func (c EvalRoNumkeys) Build() Completed

func (EvalRoNumkeys) Key

func (c EvalRoNumkeys) Key(key ...string) EvalRoKey

type EvalRoScript

type EvalRoScript Completed

func (EvalRoScript) Numkeys

func (c EvalRoScript) Numkeys(numkeys int64) EvalRoNumkeys

type EvalScript

type EvalScript Completed

func (EvalScript) Numkeys

func (c EvalScript) Numkeys(numkeys int64) EvalNumkeys

type Evalsha

type Evalsha Completed

func (Evalsha) Sha1

func (c Evalsha) Sha1(sha1 string) EvalshaSha1

type EvalshaArg

type EvalshaArg Completed

func (EvalshaArg) Arg

func (c EvalshaArg) Arg(arg ...string) EvalshaArg

func (EvalshaArg) Build

func (c EvalshaArg) Build() Completed

type EvalshaKey

type EvalshaKey Completed

func (EvalshaKey) Arg

func (c EvalshaKey) Arg(arg ...string) EvalshaArg

func (EvalshaKey) Build

func (c EvalshaKey) Build() Completed

func (EvalshaKey) Key

func (c EvalshaKey) Key(key ...string) EvalshaKey

type EvalshaNumkeys

type EvalshaNumkeys Completed

func (EvalshaNumkeys) Arg

func (c EvalshaNumkeys) Arg(arg ...string) EvalshaArg

func (EvalshaNumkeys) Build

func (c EvalshaNumkeys) Build() Completed

func (EvalshaNumkeys) Key

func (c EvalshaNumkeys) Key(key ...string) EvalshaKey

type EvalshaRo

type EvalshaRo Completed

func (EvalshaRo) Sha1

func (c EvalshaRo) Sha1(sha1 string) EvalshaRoSha1

type EvalshaRoArg

type EvalshaRoArg Completed

func (EvalshaRoArg) Arg

func (c EvalshaRoArg) Arg(arg ...string) EvalshaRoArg

func (EvalshaRoArg) Build

func (c EvalshaRoArg) Build() Completed

type EvalshaRoKey

type EvalshaRoKey Completed

func (EvalshaRoKey) Arg

func (c EvalshaRoKey) Arg(arg ...string) EvalshaRoArg

func (EvalshaRoKey) Build added in v0.0.83

func (c EvalshaRoKey) Build() Completed

func (EvalshaRoKey) Key

func (c EvalshaRoKey) Key(key ...string) EvalshaRoKey

type EvalshaRoNumkeys

type EvalshaRoNumkeys Completed

func (EvalshaRoNumkeys) Arg added in v0.0.83

func (c EvalshaRoNumkeys) Arg(arg ...string) EvalshaRoArg

func (EvalshaRoNumkeys) Build added in v0.0.83

func (c EvalshaRoNumkeys) Build() Completed

func (EvalshaRoNumkeys) Key

func (c EvalshaRoNumkeys) Key(key ...string) EvalshaRoKey

type EvalshaRoSha1

type EvalshaRoSha1 Completed

func (EvalshaRoSha1) Numkeys

func (c EvalshaRoSha1) Numkeys(numkeys int64) EvalshaRoNumkeys

type EvalshaSha1

type EvalshaSha1 Completed

func (EvalshaSha1) Numkeys

func (c EvalshaSha1) Numkeys(numkeys int64) EvalshaNumkeys

type Exec

type Exec Completed

func (Exec) Build

func (c Exec) Build() Completed

type Exists

type Exists Completed

func (Exists) Key

func (c Exists) Key(key ...string) ExistsKey

type ExistsKey

type ExistsKey Completed

func (ExistsKey) Build

func (c ExistsKey) Build() Completed

func (ExistsKey) Key

func (c ExistsKey) Key(key ...string) ExistsKey

type Expire

type Expire Completed

func (Expire) Key

func (c Expire) Key(key string) ExpireKey

type ExpireConditionGt

type ExpireConditionGt Completed

func (ExpireConditionGt) Build

func (c ExpireConditionGt) Build() Completed

type ExpireConditionLt

type ExpireConditionLt Completed

func (ExpireConditionLt) Build

func (c ExpireConditionLt) Build() Completed

type ExpireConditionNx

type ExpireConditionNx Completed

func (ExpireConditionNx) Build

func (c ExpireConditionNx) Build() Completed

type ExpireConditionXx

type ExpireConditionXx Completed

func (ExpireConditionXx) Build

func (c ExpireConditionXx) Build() Completed

type ExpireKey

type ExpireKey Completed

func (ExpireKey) Seconds

func (c ExpireKey) Seconds(seconds int64) ExpireSeconds

type ExpireSeconds

type ExpireSeconds Completed

func (ExpireSeconds) Build

func (c ExpireSeconds) Build() Completed

func (ExpireSeconds) Gt

func (ExpireSeconds) Lt

func (ExpireSeconds) Nx

func (ExpireSeconds) Xx

type Expireat

type Expireat Completed

func (Expireat) Key

func (c Expireat) Key(key string) ExpireatKey

type ExpireatConditionGt

type ExpireatConditionGt Completed

func (ExpireatConditionGt) Build

func (c ExpireatConditionGt) Build() Completed

type ExpireatConditionLt

type ExpireatConditionLt Completed

func (ExpireatConditionLt) Build

func (c ExpireatConditionLt) Build() Completed

type ExpireatConditionNx

type ExpireatConditionNx Completed

func (ExpireatConditionNx) Build

func (c ExpireatConditionNx) Build() Completed

type ExpireatConditionXx

type ExpireatConditionXx Completed

func (ExpireatConditionXx) Build

func (c ExpireatConditionXx) Build() Completed

type ExpireatKey

type ExpireatKey Completed

func (ExpireatKey) Timestamp

func (c ExpireatKey) Timestamp(timestamp int64) ExpireatTimestamp

type ExpireatTimestamp

type ExpireatTimestamp Completed

func (ExpireatTimestamp) Build

func (c ExpireatTimestamp) Build() Completed

func (ExpireatTimestamp) Gt

func (ExpireatTimestamp) Lt

func (ExpireatTimestamp) Nx

func (ExpireatTimestamp) Xx

type Expiretime

type Expiretime Completed

func (Expiretime) Key

func (c Expiretime) Key(key string) ExpiretimeKey

type ExpiretimeKey

type ExpiretimeKey Completed

func (ExpiretimeKey) Build

func (c ExpiretimeKey) Build() Completed

func (ExpiretimeKey) Cache

func (c ExpiretimeKey) Cache() Cacheable

type Failover

type Failover Completed

func (Failover) Abort

func (c Failover) Abort() FailoverAbort

func (Failover) Build

func (c Failover) Build() Completed

func (Failover) Timeout

func (c Failover) Timeout(milliseconds int64) FailoverTimeout

func (Failover) To

func (c Failover) To() FailoverTargetTo

type FailoverAbort

type FailoverAbort Completed

func (FailoverAbort) Build

func (c FailoverAbort) Build() Completed

func (FailoverAbort) Timeout

func (c FailoverAbort) Timeout(milliseconds int64) FailoverTimeout

type FailoverTargetForce

type FailoverTargetForce Completed

func (FailoverTargetForce) Abort

func (FailoverTargetForce) Build

func (c FailoverTargetForce) Build() Completed

func (FailoverTargetForce) Timeout

func (c FailoverTargetForce) Timeout(milliseconds int64) FailoverTimeout

type FailoverTargetHost

type FailoverTargetHost Completed

func (FailoverTargetHost) Port

type FailoverTargetPort

type FailoverTargetPort Completed

func (FailoverTargetPort) Abort

func (FailoverTargetPort) Build

func (c FailoverTargetPort) Build() Completed

func (FailoverTargetPort) Force

func (FailoverTargetPort) Timeout

func (c FailoverTargetPort) Timeout(milliseconds int64) FailoverTimeout

type FailoverTargetTo

type FailoverTargetTo Completed

func (FailoverTargetTo) Host

type FailoverTimeout

type FailoverTimeout Completed

func (FailoverTimeout) Build

func (c FailoverTimeout) Build() Completed

type Fcall added in v0.0.34

type Fcall Completed

func (Fcall) Function added in v0.0.34

func (c Fcall) Function(function string) FcallFunction

type FcallArg added in v0.0.34

type FcallArg Completed

func (FcallArg) Arg added in v0.0.34

func (c FcallArg) Arg(arg ...string) FcallArg

func (FcallArg) Build added in v0.0.34

func (c FcallArg) Build() Completed

type FcallFunction added in v0.0.34

type FcallFunction Completed

func (FcallFunction) Numkeys added in v0.0.34

func (c FcallFunction) Numkeys(numkeys int64) FcallNumkeys

type FcallKey added in v0.0.34

type FcallKey Completed

func (FcallKey) Arg added in v0.0.34

func (c FcallKey) Arg(arg ...string) FcallArg

func (FcallKey) Build added in v0.0.81

func (c FcallKey) Build() Completed

func (FcallKey) Key added in v0.0.34

func (c FcallKey) Key(key ...string) FcallKey

type FcallNumkeys added in v0.0.34

type FcallNumkeys Completed

func (FcallNumkeys) Arg added in v0.0.81

func (c FcallNumkeys) Arg(arg ...string) FcallArg

func (FcallNumkeys) Build added in v0.0.81

func (c FcallNumkeys) Build() Completed

func (FcallNumkeys) Key added in v0.0.34

func (c FcallNumkeys) Key(key ...string) FcallKey

type FcallRo added in v0.0.34

type FcallRo Completed

func (FcallRo) Function added in v0.0.34

func (c FcallRo) Function(function string) FcallRoFunction

type FcallRoArg added in v0.0.34

type FcallRoArg Completed

func (FcallRoArg) Arg added in v0.0.34

func (c FcallRoArg) Arg(arg ...string) FcallRoArg

func (FcallRoArg) Build added in v0.0.34

func (c FcallRoArg) Build() Completed

func (FcallRoArg) Cache added in v0.0.34

func (c FcallRoArg) Cache() Cacheable

type FcallRoFunction added in v0.0.34

type FcallRoFunction Completed

func (FcallRoFunction) Numkeys added in v0.0.34

func (c FcallRoFunction) Numkeys(numkeys int64) FcallRoNumkeys

type FcallRoKey added in v0.0.34

type FcallRoKey Completed

func (FcallRoKey) Arg added in v0.0.34

func (c FcallRoKey) Arg(arg ...string) FcallRoArg

func (FcallRoKey) Build added in v0.0.81

func (c FcallRoKey) Build() Completed

func (FcallRoKey) Cache added in v0.0.81

func (c FcallRoKey) Cache() Cacheable

func (FcallRoKey) Key added in v0.0.34

func (c FcallRoKey) Key(key ...string) FcallRoKey

type FcallRoNumkeys added in v0.0.34

type FcallRoNumkeys Completed

func (FcallRoNumkeys) Arg added in v0.0.81

func (c FcallRoNumkeys) Arg(arg ...string) FcallRoArg

func (FcallRoNumkeys) Build added in v0.0.81

func (c FcallRoNumkeys) Build() Completed

func (FcallRoNumkeys) Cache added in v0.0.81

func (c FcallRoNumkeys) Cache() Cacheable

func (FcallRoNumkeys) Key added in v0.0.34

func (c FcallRoNumkeys) Key(key ...string) FcallRoKey

type Flushall

type Flushall Completed

func (Flushall) Async

func (c Flushall) Async() FlushallAsync

func (Flushall) Build

func (c Flushall) Build() Completed

func (Flushall) Sync

func (c Flushall) Sync() FlushallAsyncSync

type FlushallAsync added in v0.0.2

type FlushallAsync Completed

func (FlushallAsync) Build added in v0.0.2

func (c FlushallAsync) Build() Completed

type FlushallAsyncSync

type FlushallAsyncSync Completed

func (FlushallAsyncSync) Build

func (c FlushallAsyncSync) Build() Completed

type Flushdb

type Flushdb Completed

func (Flushdb) Async

func (c Flushdb) Async() FlushdbAsync

func (Flushdb) Build

func (c Flushdb) Build() Completed

func (Flushdb) Sync

func (c Flushdb) Sync() FlushdbAsyncSync

type FlushdbAsync added in v0.0.2

type FlushdbAsync Completed

func (FlushdbAsync) Build added in v0.0.2

func (c FlushdbAsync) Build() Completed

type FlushdbAsyncSync

type FlushdbAsyncSync Completed

func (FlushdbAsyncSync) Build

func (c FlushdbAsyncSync) Build() Completed

type FtAggregate added in v0.0.2

type FtAggregate Completed

func (FtAggregate) Index added in v0.0.2

func (c FtAggregate) Index(index string) FtAggregateIndex

type FtAggregateCursorCount added in v0.0.2

type FtAggregateCursorCount Completed

func (FtAggregateCursorCount) Build added in v0.0.2

func (FtAggregateCursorCount) Dialect added in v0.0.43

func (c FtAggregateCursorCount) Dialect(dialect int64) FtAggregateDialect

func (FtAggregateCursorCount) Maxidle added in v0.0.2

func (FtAggregateCursorCount) Params added in v0.0.54

type FtAggregateCursorMaxidle added in v0.0.2

type FtAggregateCursorMaxidle Completed

func (FtAggregateCursorMaxidle) Build added in v0.0.2

func (FtAggregateCursorMaxidle) Dialect added in v0.0.43

func (FtAggregateCursorMaxidle) Params added in v0.0.54

type FtAggregateCursorWithcursor added in v0.0.2

type FtAggregateCursorWithcursor Completed

func (FtAggregateCursorWithcursor) Build added in v0.0.2

func (FtAggregateCursorWithcursor) Count added in v0.0.2

func (FtAggregateCursorWithcursor) Dialect added in v0.0.43

func (FtAggregateCursorWithcursor) Maxidle added in v0.0.2

func (FtAggregateCursorWithcursor) Params added in v0.0.54

type FtAggregateDialect added in v0.0.43

type FtAggregateDialect Completed

func (FtAggregateDialect) Build added in v0.0.43

func (c FtAggregateDialect) Build() Completed

type FtAggregateIndex added in v0.0.2

type FtAggregateIndex Completed

func (FtAggregateIndex) Query added in v0.0.2

func (c FtAggregateIndex) Query(query string) FtAggregateQuery

type FtAggregateOpApplyApply added in v0.0.60

type FtAggregateOpApplyApply Completed

func (FtAggregateOpApplyApply) As added in v0.0.60

type FtAggregateOpApplyAs added in v0.0.60

type FtAggregateOpApplyAs Completed

func (FtAggregateOpApplyAs) Apply added in v0.0.60

func (FtAggregateOpApplyAs) Build added in v0.0.60

func (c FtAggregateOpApplyAs) Build() Completed

func (FtAggregateOpApplyAs) Dialect added in v0.0.60

func (c FtAggregateOpApplyAs) Dialect(dialect int64) FtAggregateDialect

func (FtAggregateOpApplyAs) Filter added in v0.0.60

func (FtAggregateOpApplyAs) Groupby added in v0.0.60

func (FtAggregateOpApplyAs) Limit added in v0.0.60

func (FtAggregateOpApplyAs) Load added in v0.0.93

func (FtAggregateOpApplyAs) LoadAll added in v0.0.93

func (FtAggregateOpApplyAs) Params added in v0.0.60

func (FtAggregateOpApplyAs) Sortby added in v0.0.60

func (FtAggregateOpApplyAs) Withcursor added in v0.0.60

type FtAggregateOpFilter added in v0.0.60

type FtAggregateOpFilter Completed

func (FtAggregateOpFilter) Apply added in v0.0.60

func (FtAggregateOpFilter) Build added in v0.0.60

func (c FtAggregateOpFilter) Build() Completed

func (FtAggregateOpFilter) Dialect added in v0.0.60

func (c FtAggregateOpFilter) Dialect(dialect int64) FtAggregateDialect

func (FtAggregateOpFilter) Filter added in v0.0.60

func (FtAggregateOpFilter) Groupby added in v0.0.60

func (FtAggregateOpFilter) Limit added in v0.0.60

func (FtAggregateOpFilter) Load added in v0.0.93

func (FtAggregateOpFilter) LoadAll added in v0.0.93

func (FtAggregateOpFilter) Params added in v0.0.60

func (FtAggregateOpFilter) Sortby added in v0.0.60

func (FtAggregateOpFilter) Withcursor added in v0.0.60

type FtAggregateOpGroupbyGroupby added in v0.0.60

type FtAggregateOpGroupbyGroupby Completed

func (FtAggregateOpGroupbyGroupby) Apply added in v0.0.60

func (FtAggregateOpGroupbyGroupby) Build added in v0.0.60

func (FtAggregateOpGroupbyGroupby) Dialect added in v0.0.60

func (FtAggregateOpGroupbyGroupby) Filter added in v0.0.60

func (FtAggregateOpGroupbyGroupby) Groupby added in v0.0.60

func (FtAggregateOpGroupbyGroupby) Limit added in v0.0.60

func (FtAggregateOpGroupbyGroupby) Load added in v0.0.93

func (FtAggregateOpGroupbyGroupby) LoadAll added in v0.0.93

func (FtAggregateOpGroupbyGroupby) Params added in v0.0.60

func (FtAggregateOpGroupbyGroupby) Property added in v0.0.60

func (FtAggregateOpGroupbyGroupby) Reduce added in v0.0.60

func (FtAggregateOpGroupbyGroupby) Sortby added in v0.0.60

func (FtAggregateOpGroupbyGroupby) Withcursor added in v0.0.60

type FtAggregateOpGroupbyProperty added in v0.0.60

type FtAggregateOpGroupbyProperty Completed

func (FtAggregateOpGroupbyProperty) Apply added in v0.0.60

func (FtAggregateOpGroupbyProperty) Build added in v0.0.60

func (FtAggregateOpGroupbyProperty) Dialect added in v0.0.60

func (FtAggregateOpGroupbyProperty) Filter added in v0.0.60

func (FtAggregateOpGroupbyProperty) Groupby added in v0.0.60

func (FtAggregateOpGroupbyProperty) Limit added in v0.0.60

func (FtAggregateOpGroupbyProperty) Load added in v0.0.93

func (FtAggregateOpGroupbyProperty) LoadAll added in v0.0.93

func (FtAggregateOpGroupbyProperty) Params added in v0.0.60

func (FtAggregateOpGroupbyProperty) Property added in v0.0.60

func (FtAggregateOpGroupbyProperty) Reduce added in v0.0.60

func (FtAggregateOpGroupbyProperty) Sortby added in v0.0.60

func (FtAggregateOpGroupbyProperty) Withcursor added in v0.0.60

type FtAggregateOpGroupbyReduceArg added in v0.0.60

type FtAggregateOpGroupbyReduceArg Completed

func (FtAggregateOpGroupbyReduceArg) Apply added in v0.0.60

func (FtAggregateOpGroupbyReduceArg) Arg added in v0.0.60

func (FtAggregateOpGroupbyReduceArg) As added in v0.0.60

func (FtAggregateOpGroupbyReduceArg) Asc added in v0.0.63

func (FtAggregateOpGroupbyReduceArg) Build added in v0.0.60

func (FtAggregateOpGroupbyReduceArg) By added in v0.0.63

func (FtAggregateOpGroupbyReduceArg) Desc added in v0.0.63

func (FtAggregateOpGroupbyReduceArg) Dialect added in v0.0.60

func (FtAggregateOpGroupbyReduceArg) Filter added in v0.0.60

func (FtAggregateOpGroupbyReduceArg) Groupby added in v0.0.60

func (FtAggregateOpGroupbyReduceArg) Limit added in v0.0.60

func (FtAggregateOpGroupbyReduceArg) Load added in v0.0.93

func (FtAggregateOpGroupbyReduceArg) LoadAll added in v0.0.93

func (FtAggregateOpGroupbyReduceArg) Params added in v0.0.60

func (FtAggregateOpGroupbyReduceArg) Reduce added in v0.0.60

func (FtAggregateOpGroupbyReduceArg) Sortby added in v0.0.60

func (FtAggregateOpGroupbyReduceArg) Withcursor added in v0.0.60

type FtAggregateOpGroupbyReduceAs added in v0.0.60

type FtAggregateOpGroupbyReduceAs Completed

func (FtAggregateOpGroupbyReduceAs) Apply added in v0.0.60

func (FtAggregateOpGroupbyReduceAs) Asc added in v0.0.63

func (FtAggregateOpGroupbyReduceAs) Build added in v0.0.60

func (FtAggregateOpGroupbyReduceAs) By added in v0.0.63

func (FtAggregateOpGroupbyReduceAs) Desc added in v0.0.63

func (FtAggregateOpGroupbyReduceAs) Dialect added in v0.0.60

func (FtAggregateOpGroupbyReduceAs) Filter added in v0.0.60

func (FtAggregateOpGroupbyReduceAs) Groupby added in v0.0.60

func (FtAggregateOpGroupbyReduceAs) Limit added in v0.0.60

func (FtAggregateOpGroupbyReduceAs) Load added in v0.0.93

func (FtAggregateOpGroupbyReduceAs) LoadAll added in v0.0.93

func (FtAggregateOpGroupbyReduceAs) Params added in v0.0.60

func (FtAggregateOpGroupbyReduceAs) Reduce added in v0.0.60

func (FtAggregateOpGroupbyReduceAs) Sortby added in v0.0.60

func (FtAggregateOpGroupbyReduceAs) Withcursor added in v0.0.60

type FtAggregateOpGroupbyReduceBy added in v0.0.63

type FtAggregateOpGroupbyReduceBy Completed

func (FtAggregateOpGroupbyReduceBy) Apply added in v0.0.63

func (FtAggregateOpGroupbyReduceBy) Asc added in v0.0.63

func (FtAggregateOpGroupbyReduceBy) Build added in v0.0.63

func (FtAggregateOpGroupbyReduceBy) Desc added in v0.0.63

func (FtAggregateOpGroupbyReduceBy) Dialect added in v0.0.63

func (FtAggregateOpGroupbyReduceBy) Filter added in v0.0.63

func (FtAggregateOpGroupbyReduceBy) Groupby added in v0.0.63

func (FtAggregateOpGroupbyReduceBy) Limit added in v0.0.63

func (FtAggregateOpGroupbyReduceBy) Load added in v0.0.93

func (FtAggregateOpGroupbyReduceBy) LoadAll added in v0.0.93

func (FtAggregateOpGroupbyReduceBy) Params added in v0.0.63

func (FtAggregateOpGroupbyReduceBy) Reduce added in v0.0.63

func (FtAggregateOpGroupbyReduceBy) Sortby added in v0.0.63

func (FtAggregateOpGroupbyReduceBy) Withcursor added in v0.0.63

type FtAggregateOpGroupbyReduceNargs added in v0.0.60

type FtAggregateOpGroupbyReduceNargs Completed

func (FtAggregateOpGroupbyReduceNargs) Apply added in v0.0.60

func (FtAggregateOpGroupbyReduceNargs) Arg added in v0.0.60

func (FtAggregateOpGroupbyReduceNargs) As added in v0.0.60

func (FtAggregateOpGroupbyReduceNargs) Asc added in v0.0.63

func (FtAggregateOpGroupbyReduceNargs) Build added in v0.0.60

func (FtAggregateOpGroupbyReduceNargs) By added in v0.0.63

func (FtAggregateOpGroupbyReduceNargs) Desc added in v0.0.63

func (FtAggregateOpGroupbyReduceNargs) Dialect added in v0.0.60

func (FtAggregateOpGroupbyReduceNargs) Filter added in v0.0.60

func (FtAggregateOpGroupbyReduceNargs) Groupby added in v0.0.60

func (FtAggregateOpGroupbyReduceNargs) Limit added in v0.0.60

func (FtAggregateOpGroupbyReduceNargs) Load added in v0.0.93

func (FtAggregateOpGroupbyReduceNargs) LoadAll added in v0.0.93

func (FtAggregateOpGroupbyReduceNargs) Params added in v0.0.60

func (FtAggregateOpGroupbyReduceNargs) Reduce added in v0.0.60

func (FtAggregateOpGroupbyReduceNargs) Sortby added in v0.0.60

func (FtAggregateOpGroupbyReduceNargs) Withcursor added in v0.0.60

type FtAggregateOpGroupbyReduceOrderAsc added in v0.0.63

type FtAggregateOpGroupbyReduceOrderAsc Completed

func (FtAggregateOpGroupbyReduceOrderAsc) Apply added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderAsc) Build added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderAsc) Dialect added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderAsc) Filter added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderAsc) Groupby added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderAsc) Limit added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderAsc) Load added in v0.0.93

func (FtAggregateOpGroupbyReduceOrderAsc) LoadAll added in v0.0.93

func (FtAggregateOpGroupbyReduceOrderAsc) Params added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderAsc) Reduce added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderAsc) Sortby added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderAsc) Withcursor added in v0.0.63

type FtAggregateOpGroupbyReduceOrderDesc added in v0.0.63

type FtAggregateOpGroupbyReduceOrderDesc Completed

func (FtAggregateOpGroupbyReduceOrderDesc) Apply added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderDesc) Build added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderDesc) Dialect added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderDesc) Filter added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderDesc) Groupby added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderDesc) Limit added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderDesc) Load added in v0.0.93

func (FtAggregateOpGroupbyReduceOrderDesc) LoadAll added in v0.0.93

func (FtAggregateOpGroupbyReduceOrderDesc) Params added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderDesc) Reduce added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderDesc) Sortby added in v0.0.63

func (FtAggregateOpGroupbyReduceOrderDesc) Withcursor added in v0.0.63

type FtAggregateOpGroupbyReduceReduce added in v0.0.60

type FtAggregateOpGroupbyReduceReduce Completed

func (FtAggregateOpGroupbyReduceReduce) Nargs added in v0.0.60

type FtAggregateOpLimitLimit added in v0.0.60

type FtAggregateOpLimitLimit Completed

func (FtAggregateOpLimitLimit) OffsetNum added in v0.0.60

type FtAggregateOpLimitOffsetNum added in v0.0.60

type FtAggregateOpLimitOffsetNum Completed

func (FtAggregateOpLimitOffsetNum) Apply added in v0.0.60

func (FtAggregateOpLimitOffsetNum) Build added in v0.0.60

func (FtAggregateOpLimitOffsetNum) Dialect added in v0.0.60

func (FtAggregateOpLimitOffsetNum) Filter added in v0.0.60

func (FtAggregateOpLimitOffsetNum) Groupby added in v0.0.60

func (FtAggregateOpLimitOffsetNum) Limit added in v0.0.60

func (FtAggregateOpLimitOffsetNum) Load added in v0.0.93

func (FtAggregateOpLimitOffsetNum) LoadAll added in v0.0.93

func (FtAggregateOpLimitOffsetNum) Params added in v0.0.60

func (FtAggregateOpLimitOffsetNum) Sortby added in v0.0.60

func (FtAggregateOpLimitOffsetNum) Withcursor added in v0.0.60

type FtAggregateOpLoadField added in v0.0.93

type FtAggregateOpLoadField Completed

func (FtAggregateOpLoadField) Apply added in v0.0.93

func (FtAggregateOpLoadField) Build added in v0.0.93

func (FtAggregateOpLoadField) Dialect added in v0.0.93

func (c FtAggregateOpLoadField) Dialect(dialect int64) FtAggregateDialect

func (FtAggregateOpLoadField) Field added in v0.0.93

func (FtAggregateOpLoadField) Filter added in v0.0.93

func (FtAggregateOpLoadField) Groupby added in v0.0.93

func (FtAggregateOpLoadField) Limit added in v0.0.93

func (FtAggregateOpLoadField) Load added in v0.0.93

func (FtAggregateOpLoadField) LoadAll added in v0.0.93

func (FtAggregateOpLoadField) Params added in v0.0.93

func (FtAggregateOpLoadField) Sortby added in v0.0.93

func (FtAggregateOpLoadField) Withcursor added in v0.0.93

type FtAggregateOpLoadLoad added in v0.0.93

type FtAggregateOpLoadLoad Completed

func (FtAggregateOpLoadLoad) Field added in v0.0.93

type FtAggregateOpLoadallLoadAll added in v0.0.93

type FtAggregateOpLoadallLoadAll Completed

func (FtAggregateOpLoadallLoadAll) Apply added in v0.0.93

func (FtAggregateOpLoadallLoadAll) Build added in v0.0.93

func (FtAggregateOpLoadallLoadAll) Dialect added in v0.0.93

func (FtAggregateOpLoadallLoadAll) Filter added in v0.0.93

func (FtAggregateOpLoadallLoadAll) Groupby added in v0.0.93

func (FtAggregateOpLoadallLoadAll) Limit added in v0.0.93

func (FtAggregateOpLoadallLoadAll) Load added in v0.0.93

func (FtAggregateOpLoadallLoadAll) LoadAll added in v0.0.93

func (FtAggregateOpLoadallLoadAll) Params added in v0.0.93

func (FtAggregateOpLoadallLoadAll) Sortby added in v0.0.93

func (FtAggregateOpLoadallLoadAll) Withcursor added in v0.0.93

type FtAggregateOpSortbyFieldsOrderAsc added in v0.0.60

type FtAggregateOpSortbyFieldsOrderAsc Completed

func (FtAggregateOpSortbyFieldsOrderAsc) Apply added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderAsc) Build added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderAsc) Dialect added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderAsc) Filter added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderAsc) Groupby added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderAsc) Limit added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderAsc) Load added in v0.0.93

func (FtAggregateOpSortbyFieldsOrderAsc) LoadAll added in v0.0.93

func (FtAggregateOpSortbyFieldsOrderAsc) Max added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderAsc) Params added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderAsc) Property added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderAsc) Sortby added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderAsc) Withcursor added in v0.0.60

type FtAggregateOpSortbyFieldsOrderDesc added in v0.0.60

type FtAggregateOpSortbyFieldsOrderDesc Completed

func (FtAggregateOpSortbyFieldsOrderDesc) Apply added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderDesc) Build added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderDesc) Dialect added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderDesc) Filter added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderDesc) Groupby added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderDesc) Limit added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderDesc) Load added in v0.0.93

func (FtAggregateOpSortbyFieldsOrderDesc) LoadAll added in v0.0.93

func (FtAggregateOpSortbyFieldsOrderDesc) Max added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderDesc) Params added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderDesc) Property added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderDesc) Sortby added in v0.0.60

func (FtAggregateOpSortbyFieldsOrderDesc) Withcursor added in v0.0.60

type FtAggregateOpSortbyFieldsProperty added in v0.0.60

type FtAggregateOpSortbyFieldsProperty Completed

func (FtAggregateOpSortbyFieldsProperty) Apply added in v0.0.81

func (FtAggregateOpSortbyFieldsProperty) Asc added in v0.0.60

func (FtAggregateOpSortbyFieldsProperty) Build added in v0.0.81

func (FtAggregateOpSortbyFieldsProperty) Desc added in v0.0.60

func (FtAggregateOpSortbyFieldsProperty) Dialect added in v0.0.81

func (FtAggregateOpSortbyFieldsProperty) Filter added in v0.0.81

func (FtAggregateOpSortbyFieldsProperty) Groupby added in v0.0.81

func (FtAggregateOpSortbyFieldsProperty) Limit added in v0.0.81

func (FtAggregateOpSortbyFieldsProperty) Load added in v0.0.93

func (FtAggregateOpSortbyFieldsProperty) LoadAll added in v0.0.93

func (FtAggregateOpSortbyFieldsProperty) Max added in v0.0.81

func (FtAggregateOpSortbyFieldsProperty) Params added in v0.0.81

func (FtAggregateOpSortbyFieldsProperty) Property added in v0.0.81

func (FtAggregateOpSortbyFieldsProperty) Sortby added in v0.0.81

func (FtAggregateOpSortbyFieldsProperty) Withcursor added in v0.0.81

type FtAggregateOpSortbyMax added in v0.0.60

type FtAggregateOpSortbyMax Completed

func (FtAggregateOpSortbyMax) Apply added in v0.0.60

func (FtAggregateOpSortbyMax) Build added in v0.0.60

func (FtAggregateOpSortbyMax) Dialect added in v0.0.60

func (c FtAggregateOpSortbyMax) Dialect(dialect int64) FtAggregateDialect

func (FtAggregateOpSortbyMax) Filter added in v0.0.60

func (FtAggregateOpSortbyMax) Groupby added in v0.0.60

func (FtAggregateOpSortbyMax) Limit added in v0.0.60

func (FtAggregateOpSortbyMax) Load added in v0.0.93

func (FtAggregateOpSortbyMax) LoadAll added in v0.0.93

func (FtAggregateOpSortbyMax) Params added in v0.0.60

func (FtAggregateOpSortbyMax) Sortby added in v0.0.60

func (FtAggregateOpSortbyMax) Withcursor added in v0.0.60

type FtAggregateOpSortbySortby added in v0.0.60

type FtAggregateOpSortbySortby Completed

func (FtAggregateOpSortbySortby) Apply added in v0.0.60

func (FtAggregateOpSortbySortby) Build added in v0.0.60

func (FtAggregateOpSortbySortby) Dialect added in v0.0.60

func (FtAggregateOpSortbySortby) Filter added in v0.0.60

func (FtAggregateOpSortbySortby) Groupby added in v0.0.60

func (FtAggregateOpSortbySortby) Limit added in v0.0.60

func (FtAggregateOpSortbySortby) Load added in v0.0.93

func (FtAggregateOpSortbySortby) LoadAll added in v0.0.93

func (FtAggregateOpSortbySortby) Max added in v0.0.60

func (FtAggregateOpSortbySortby) Params added in v0.0.60

func (FtAggregateOpSortbySortby) Property added in v0.0.60

func (FtAggregateOpSortbySortby) Sortby added in v0.0.60

func (FtAggregateOpSortbySortby) Withcursor added in v0.0.60

type FtAggregateParamsNameValue added in v0.0.54

type FtAggregateParamsNameValue Completed

func (FtAggregateParamsNameValue) Build added in v0.0.54

func (FtAggregateParamsNameValue) Dialect added in v0.0.54

func (FtAggregateParamsNameValue) NameValue added in v0.0.54

type FtAggregateParamsNargs added in v0.0.54

type FtAggregateParamsNargs Completed

func (FtAggregateParamsNargs) NameValue added in v0.0.54

type FtAggregateParamsParams added in v0.0.54

type FtAggregateParamsParams Completed

func (FtAggregateParamsParams) Nargs added in v0.0.54

type FtAggregateQuery added in v0.0.2

type FtAggregateQuery Completed

func (FtAggregateQuery) Apply added in v0.0.2

func (c FtAggregateQuery) Apply(expression string) FtAggregateOpApplyApply

func (FtAggregateQuery) Build added in v0.0.2

func (c FtAggregateQuery) Build() Completed

func (FtAggregateQuery) Dialect added in v0.0.43

func (c FtAggregateQuery) Dialect(dialect int64) FtAggregateDialect

func (FtAggregateQuery) Filter added in v0.0.2

func (c FtAggregateQuery) Filter(filter string) FtAggregateOpFilter

func (FtAggregateQuery) Groupby added in v0.0.2

func (FtAggregateQuery) Limit added in v0.0.2

func (FtAggregateQuery) Load added in v0.0.2

func (FtAggregateQuery) LoadAll added in v0.0.2

func (FtAggregateQuery) Params added in v0.0.54

func (FtAggregateQuery) Sortby added in v0.0.2

func (FtAggregateQuery) Timeout added in v0.0.54

func (c FtAggregateQuery) Timeout(timeout int64) FtAggregateTimeout

func (FtAggregateQuery) Verbatim added in v0.0.2

func (FtAggregateQuery) Withcursor added in v0.0.2

type FtAggregateTimeout added in v0.0.54

type FtAggregateTimeout Completed

func (FtAggregateTimeout) Apply added in v0.0.54

func (FtAggregateTimeout) Build added in v0.0.54

func (c FtAggregateTimeout) Build() Completed

func (FtAggregateTimeout) Dialect added in v0.0.54

func (c FtAggregateTimeout) Dialect(dialect int64) FtAggregateDialect

func (FtAggregateTimeout) Filter added in v0.0.54

func (FtAggregateTimeout) Groupby added in v0.0.54

func (FtAggregateTimeout) Limit added in v0.0.54

func (FtAggregateTimeout) Load added in v0.0.93

func (FtAggregateTimeout) LoadAll added in v0.0.54

func (FtAggregateTimeout) Params added in v0.0.54

func (FtAggregateTimeout) Sortby added in v0.0.54

func (FtAggregateTimeout) Withcursor added in v0.0.54

type FtAggregateVerbatim added in v0.0.2

type FtAggregateVerbatim Completed

func (FtAggregateVerbatim) Apply added in v0.0.2

func (FtAggregateVerbatim) Build added in v0.0.2

func (c FtAggregateVerbatim) Build() Completed

func (FtAggregateVerbatim) Dialect added in v0.0.43

func (c FtAggregateVerbatim) Dialect(dialect int64) FtAggregateDialect

func (FtAggregateVerbatim) Filter added in v0.0.2

func (FtAggregateVerbatim) Groupby added in v0.0.2

func (FtAggregateVerbatim) Limit added in v0.0.2

func (FtAggregateVerbatim) Load added in v0.0.2

func (FtAggregateVerbatim) LoadAll added in v0.0.2

func (FtAggregateVerbatim) Params added in v0.0.54

func (FtAggregateVerbatim) Sortby added in v0.0.2

func (FtAggregateVerbatim) Timeout added in v0.0.54

func (c FtAggregateVerbatim) Timeout(timeout int64) FtAggregateTimeout

func (FtAggregateVerbatim) Withcursor added in v0.0.2

type FtAliasadd added in v0.0.2

type FtAliasadd Completed

func (FtAliasadd) Alias added in v0.0.2

func (c FtAliasadd) Alias(alias string) FtAliasaddAlias

type FtAliasaddAlias added in v0.0.2

type FtAliasaddAlias Completed

func (FtAliasaddAlias) Index added in v0.0.2

func (c FtAliasaddAlias) Index(index string) FtAliasaddIndex

type FtAliasaddIndex added in v0.0.2

type FtAliasaddIndex Completed

func (FtAliasaddIndex) Build added in v0.0.2

func (c FtAliasaddIndex) Build() Completed

type FtAliasdel added in v0.0.2

type FtAliasdel Completed

func (FtAliasdel) Alias added in v0.0.2

func (c FtAliasdel) Alias(alias string) FtAliasdelAlias

type FtAliasdelAlias added in v0.0.2

type FtAliasdelAlias Completed

func (FtAliasdelAlias) Build added in v0.0.2

func (c FtAliasdelAlias) Build() Completed

type FtAliasupdate added in v0.0.2

type FtAliasupdate Completed

func (FtAliasupdate) Alias added in v0.0.2

func (c FtAliasupdate) Alias(alias string) FtAliasupdateAlias

type FtAliasupdateAlias added in v0.0.2

type FtAliasupdateAlias Completed

func (FtAliasupdateAlias) Index added in v0.0.2

type FtAliasupdateIndex added in v0.0.2

type FtAliasupdateIndex Completed

func (FtAliasupdateIndex) Build added in v0.0.2

func (c FtAliasupdateIndex) Build() Completed

type FtAlter added in v0.0.2

type FtAlter Completed

func (FtAlter) Index added in v0.0.2

func (c FtAlter) Index(index string) FtAlterIndex

type FtAlterAdd added in v0.0.2

type FtAlterAdd Completed

func (FtAlterAdd) Field added in v0.0.2

func (c FtAlterAdd) Field(field string) FtAlterField

type FtAlterField added in v0.0.2

type FtAlterField Completed

func (FtAlterField) Options added in v0.0.2

func (c FtAlterField) Options(options string) FtAlterOptions

type FtAlterIndex added in v0.0.2

type FtAlterIndex Completed

func (FtAlterIndex) Schema added in v0.0.2

func (c FtAlterIndex) Schema() FtAlterSchema

func (FtAlterIndex) Skipinitialscan added in v0.0.72

func (c FtAlterIndex) Skipinitialscan() FtAlterSkipinitialscan

type FtAlterOptions added in v0.0.2

type FtAlterOptions Completed

func (FtAlterOptions) Build added in v0.0.2

func (c FtAlterOptions) Build() Completed

type FtAlterSchema added in v0.0.2

type FtAlterSchema Completed

func (FtAlterSchema) Add added in v0.0.2

func (c FtAlterSchema) Add() FtAlterAdd

type FtAlterSkipinitialscan added in v0.0.72

type FtAlterSkipinitialscan Completed

func (FtAlterSkipinitialscan) Schema added in v0.0.72

type FtConfigGet added in v0.0.2

type FtConfigGet Completed

func (FtConfigGet) Option added in v0.0.2

func (c FtConfigGet) Option(option string) FtConfigGetOption

type FtConfigGetOption added in v0.0.2

type FtConfigGetOption Completed

func (FtConfigGetOption) Build added in v0.0.54

func (c FtConfigGetOption) Build() Completed

type FtConfigHelp added in v0.0.2

type FtConfigHelp Completed

func (FtConfigHelp) Option added in v0.0.2

func (c FtConfigHelp) Option(option string) FtConfigHelpOption

type FtConfigHelpOption added in v0.0.2

type FtConfigHelpOption Completed

func (FtConfigHelpOption) Build added in v0.0.2

func (c FtConfigHelpOption) Build() Completed

type FtConfigSet added in v0.0.2

type FtConfigSet Completed

func (FtConfigSet) Option added in v0.0.2

func (c FtConfigSet) Option(option string) FtConfigSetOption

type FtConfigSetOption added in v0.0.2

type FtConfigSetOption Completed

func (FtConfigSetOption) Value added in v0.0.54

func (c FtConfigSetOption) Value(value string) FtConfigSetValue

type FtConfigSetValue added in v0.0.54

type FtConfigSetValue Completed

func (FtConfigSetValue) Build added in v0.0.54

func (c FtConfigSetValue) Build() Completed

type FtCreate added in v0.0.2

type FtCreate Completed

func (FtCreate) Index added in v0.0.2

func (c FtCreate) Index(index string) FtCreateIndex

type FtCreateFieldAs added in v0.0.2

type FtCreateFieldAs Completed

func (FtCreateFieldAs) Geo added in v0.0.2

func (FtCreateFieldAs) Numeric added in v0.0.2

func (FtCreateFieldAs) Tag added in v0.0.2

func (FtCreateFieldAs) Text added in v0.0.2

func (FtCreateFieldAs) Vector added in v0.0.54

func (c FtCreateFieldAs) Vector(algo string, nargs int64, args ...string) FtCreateFieldFieldTypeVector

type FtCreateFieldFieldName added in v0.0.2

type FtCreateFieldFieldName Completed

func (FtCreateFieldFieldName) As added in v0.0.2

func (FtCreateFieldFieldName) Geo added in v0.0.2

func (FtCreateFieldFieldName) Numeric added in v0.0.2

func (FtCreateFieldFieldName) Tag added in v0.0.2

func (FtCreateFieldFieldName) Text added in v0.0.2

func (FtCreateFieldFieldName) Vector added in v0.0.54

type FtCreateFieldFieldTypeGeo added in v0.0.2

type FtCreateFieldFieldTypeGeo Completed

func (FtCreateFieldFieldTypeGeo) Build added in v0.0.2

func (FtCreateFieldFieldTypeGeo) Casesensitive added in v0.0.84

func (FtCreateFieldFieldTypeGeo) FieldName added in v0.0.2

func (FtCreateFieldFieldTypeGeo) Noindex added in v0.0.2

func (FtCreateFieldFieldTypeGeo) Nostem added in v0.0.84

func (FtCreateFieldFieldTypeGeo) Phonetic added in v0.0.84

func (FtCreateFieldFieldTypeGeo) Separator added in v0.0.84

func (FtCreateFieldFieldTypeGeo) Sortable added in v0.0.2

func (FtCreateFieldFieldTypeGeo) Weight added in v0.0.84

func (FtCreateFieldFieldTypeGeo) Withsuffixtrie added in v0.0.72

type FtCreateFieldFieldTypeNumeric added in v0.0.2

type FtCreateFieldFieldTypeNumeric Completed

func (FtCreateFieldFieldTypeNumeric) Build added in v0.0.2

func (FtCreateFieldFieldTypeNumeric) Casesensitive added in v0.0.84

func (FtCreateFieldFieldTypeNumeric) FieldName added in v0.0.2

func (FtCreateFieldFieldTypeNumeric) Noindex added in v0.0.2

func (FtCreateFieldFieldTypeNumeric) Nostem added in v0.0.84

func (FtCreateFieldFieldTypeNumeric) Phonetic added in v0.0.84

func (FtCreateFieldFieldTypeNumeric) Separator added in v0.0.84

func (FtCreateFieldFieldTypeNumeric) Sortable added in v0.0.2

func (FtCreateFieldFieldTypeNumeric) Weight added in v0.0.84

func (FtCreateFieldFieldTypeNumeric) Withsuffixtrie added in v0.0.72

type FtCreateFieldFieldTypeTag added in v0.0.2

type FtCreateFieldFieldTypeTag Completed

func (FtCreateFieldFieldTypeTag) Build added in v0.0.2

func (FtCreateFieldFieldTypeTag) Casesensitive added in v0.0.84

func (FtCreateFieldFieldTypeTag) FieldName added in v0.0.2

func (FtCreateFieldFieldTypeTag) Noindex added in v0.0.2

func (FtCreateFieldFieldTypeTag) Nostem added in v0.0.84

func (FtCreateFieldFieldTypeTag) Phonetic added in v0.0.84

func (FtCreateFieldFieldTypeTag) Separator added in v0.0.84

func (FtCreateFieldFieldTypeTag) Sortable added in v0.0.2

func (FtCreateFieldFieldTypeTag) Weight added in v0.0.84

func (FtCreateFieldFieldTypeTag) Withsuffixtrie added in v0.0.72

type FtCreateFieldFieldTypeText added in v0.0.2

type FtCreateFieldFieldTypeText Completed

func (FtCreateFieldFieldTypeText) Build added in v0.0.2

func (FtCreateFieldFieldTypeText) Casesensitive added in v0.0.84

func (FtCreateFieldFieldTypeText) FieldName added in v0.0.2

func (FtCreateFieldFieldTypeText) Noindex added in v0.0.2

func (FtCreateFieldFieldTypeText) Nostem added in v0.0.84

func (FtCreateFieldFieldTypeText) Phonetic added in v0.0.84

func (FtCreateFieldFieldTypeText) Separator added in v0.0.84

func (FtCreateFieldFieldTypeText) Sortable added in v0.0.2

func (FtCreateFieldFieldTypeText) Weight added in v0.0.84

func (FtCreateFieldFieldTypeText) Withsuffixtrie added in v0.0.72

type FtCreateFieldFieldTypeVector added in v0.0.54

type FtCreateFieldFieldTypeVector Completed

func (FtCreateFieldFieldTypeVector) Build added in v0.0.54

func (FtCreateFieldFieldTypeVector) Casesensitive added in v0.0.84

func (FtCreateFieldFieldTypeVector) FieldName added in v0.0.54

func (FtCreateFieldFieldTypeVector) Noindex added in v0.0.54

func (FtCreateFieldFieldTypeVector) Nostem added in v0.0.84

func (FtCreateFieldFieldTypeVector) Phonetic added in v0.0.84

func (FtCreateFieldFieldTypeVector) Separator added in v0.0.84

func (FtCreateFieldFieldTypeVector) Sortable added in v0.0.54

func (FtCreateFieldFieldTypeVector) Weight added in v0.0.84

func (FtCreateFieldFieldTypeVector) Withsuffixtrie added in v0.0.72

type FtCreateFieldOptionCasesensitive added in v0.0.84

type FtCreateFieldOptionCasesensitive Completed

func (FtCreateFieldOptionCasesensitive) Build added in v0.0.84

func (FtCreateFieldOptionCasesensitive) Casesensitive added in v0.0.84

func (FtCreateFieldOptionCasesensitive) FieldName added in v0.0.84

func (FtCreateFieldOptionCasesensitive) Noindex added in v0.0.84

func (FtCreateFieldOptionCasesensitive) Nostem added in v0.0.84

func (FtCreateFieldOptionCasesensitive) Phonetic added in v0.0.84

func (FtCreateFieldOptionCasesensitive) Separator added in v0.0.84

func (FtCreateFieldOptionCasesensitive) Sortable added in v0.0.84

func (FtCreateFieldOptionCasesensitive) Weight added in v0.0.84

func (FtCreateFieldOptionCasesensitive) Withsuffixtrie added in v0.0.84

type FtCreateFieldOptionNoindex added in v0.0.84

type FtCreateFieldOptionNoindex Completed

func (FtCreateFieldOptionNoindex) Build added in v0.0.84

func (FtCreateFieldOptionNoindex) Casesensitive added in v0.0.84

func (FtCreateFieldOptionNoindex) FieldName added in v0.0.84

func (FtCreateFieldOptionNoindex) Noindex added in v0.0.84

func (FtCreateFieldOptionNoindex) Nostem added in v0.0.84

func (FtCreateFieldOptionNoindex) Phonetic added in v0.0.84

func (FtCreateFieldOptionNoindex) Separator added in v0.0.84

func (FtCreateFieldOptionNoindex) Sortable added in v0.0.84

func (FtCreateFieldOptionNoindex) Weight added in v0.0.84

func (FtCreateFieldOptionNoindex) Withsuffixtrie added in v0.0.84

type FtCreateFieldOptionNostem added in v0.0.84

type FtCreateFieldOptionNostem Completed

func (FtCreateFieldOptionNostem) Build added in v0.0.84

func (FtCreateFieldOptionNostem) Casesensitive added in v0.0.84

func (FtCreateFieldOptionNostem) FieldName added in v0.0.84

func (FtCreateFieldOptionNostem) Noindex added in v0.0.84

func (FtCreateFieldOptionNostem) Nostem added in v0.0.84

func (FtCreateFieldOptionNostem) Phonetic added in v0.0.84

func (FtCreateFieldOptionNostem) Separator added in v0.0.84

func (FtCreateFieldOptionNostem) Sortable added in v0.0.84

func (FtCreateFieldOptionNostem) Weight added in v0.0.84

func (FtCreateFieldOptionNostem) Withsuffixtrie added in v0.0.84

type FtCreateFieldOptionPhonetic added in v0.0.84

type FtCreateFieldOptionPhonetic Completed

func (FtCreateFieldOptionPhonetic) Build added in v0.0.84

func (FtCreateFieldOptionPhonetic) Casesensitive added in v0.0.84

func (FtCreateFieldOptionPhonetic) FieldName added in v0.0.84

func (FtCreateFieldOptionPhonetic) Noindex added in v0.0.84

func (FtCreateFieldOptionPhonetic) Nostem added in v0.0.84

func (FtCreateFieldOptionPhonetic) Phonetic added in v0.0.84

func (FtCreateFieldOptionPhonetic) Separator added in v0.0.84

func (FtCreateFieldOptionPhonetic) Sortable added in v0.0.84

func (FtCreateFieldOptionPhonetic) Weight added in v0.0.84

func (FtCreateFieldOptionPhonetic) Withsuffixtrie added in v0.0.84

type FtCreateFieldOptionSeparator added in v0.0.84

type FtCreateFieldOptionSeparator Completed

func (FtCreateFieldOptionSeparator) Build added in v0.0.84

func (FtCreateFieldOptionSeparator) Casesensitive added in v0.0.84

func (FtCreateFieldOptionSeparator) FieldName added in v0.0.84

func (FtCreateFieldOptionSeparator) Noindex added in v0.0.84

func (FtCreateFieldOptionSeparator) Nostem added in v0.0.84

func (FtCreateFieldOptionSeparator) Phonetic added in v0.0.84

func (FtCreateFieldOptionSeparator) Separator added in v0.0.84

func (FtCreateFieldOptionSeparator) Sortable added in v0.0.84

func (FtCreateFieldOptionSeparator) Weight added in v0.0.84

func (FtCreateFieldOptionSeparator) Withsuffixtrie added in v0.0.84

type FtCreateFieldOptionSortableSortable added in v0.0.84

type FtCreateFieldOptionSortableSortable Completed

func (FtCreateFieldOptionSortableSortable) Build added in v0.0.84

func (FtCreateFieldOptionSortableSortable) Casesensitive added in v0.0.84

func (FtCreateFieldOptionSortableSortable) FieldName added in v0.0.84

func (FtCreateFieldOptionSortableSortable) Noindex added in v0.0.84

func (FtCreateFieldOptionSortableSortable) Nostem added in v0.0.84

func (FtCreateFieldOptionSortableSortable) Phonetic added in v0.0.84

func (FtCreateFieldOptionSortableSortable) Separator added in v0.0.84

func (FtCreateFieldOptionSortableSortable) Sortable added in v0.0.84

func (FtCreateFieldOptionSortableSortable) Unf added in v0.0.84

func (FtCreateFieldOptionSortableSortable) Weight added in v0.0.84

func (FtCreateFieldOptionSortableSortable) Withsuffixtrie added in v0.0.84

type FtCreateFieldOptionSortableUnf added in v0.0.84

type FtCreateFieldOptionSortableUnf Completed

func (FtCreateFieldOptionSortableUnf) Build added in v0.0.84

func (FtCreateFieldOptionSortableUnf) Casesensitive added in v0.0.84

func (FtCreateFieldOptionSortableUnf) FieldName added in v0.0.84

func (FtCreateFieldOptionSortableUnf) Noindex added in v0.0.84

func (FtCreateFieldOptionSortableUnf) Nostem added in v0.0.84

func (FtCreateFieldOptionSortableUnf) Phonetic added in v0.0.84

func (FtCreateFieldOptionSortableUnf) Separator added in v0.0.84

func (FtCreateFieldOptionSortableUnf) Sortable added in v0.0.84

func (FtCreateFieldOptionSortableUnf) Weight added in v0.0.84

func (FtCreateFieldOptionSortableUnf) Withsuffixtrie added in v0.0.84

type FtCreateFieldOptionWeight added in v0.0.84

type FtCreateFieldOptionWeight Completed

func (FtCreateFieldOptionWeight) Build added in v0.0.84

func (FtCreateFieldOptionWeight) Casesensitive added in v0.0.84

func (FtCreateFieldOptionWeight) FieldName added in v0.0.84

func (FtCreateFieldOptionWeight) Noindex added in v0.0.84

func (FtCreateFieldOptionWeight) Nostem added in v0.0.84

func (FtCreateFieldOptionWeight) Phonetic added in v0.0.84

func (FtCreateFieldOptionWeight) Separator added in v0.0.84

func (FtCreateFieldOptionWeight) Sortable added in v0.0.84

func (FtCreateFieldOptionWeight) Weight added in v0.0.84

func (FtCreateFieldOptionWeight) Withsuffixtrie added in v0.0.84

type FtCreateFieldOptionWithsuffixtrie added in v0.0.84

type FtCreateFieldOptionWithsuffixtrie Completed

func (FtCreateFieldOptionWithsuffixtrie) Build added in v0.0.84

func (FtCreateFieldOptionWithsuffixtrie) Casesensitive added in v0.0.84

func (FtCreateFieldOptionWithsuffixtrie) FieldName added in v0.0.84

func (FtCreateFieldOptionWithsuffixtrie) Noindex added in v0.0.84

func (FtCreateFieldOptionWithsuffixtrie) Nostem added in v0.0.84

func (FtCreateFieldOptionWithsuffixtrie) Phonetic added in v0.0.84

func (FtCreateFieldOptionWithsuffixtrie) Separator added in v0.0.84

func (FtCreateFieldOptionWithsuffixtrie) Sortable added in v0.0.84

func (FtCreateFieldOptionWithsuffixtrie) Weight added in v0.0.84

func (FtCreateFieldOptionWithsuffixtrie) Withsuffixtrie added in v0.0.84

type FtCreateFilter added in v0.0.72

type FtCreateFilter Completed

func (FtCreateFilter) Language added in v0.0.72

func (c FtCreateFilter) Language(defaultLang string) FtCreateLanguage

func (FtCreateFilter) LanguageField added in v0.0.72

func (c FtCreateFilter) LanguageField(langAttribute string) FtCreateLanguageField

func (FtCreateFilter) Maxtextfields added in v0.0.72

func (c FtCreateFilter) Maxtextfields() FtCreateMaxtextfields

func (FtCreateFilter) Nofields added in v0.0.72

func (c FtCreateFilter) Nofields() FtCreateNofields

func (FtCreateFilter) Nofreqs added in v0.0.72

func (c FtCreateFilter) Nofreqs() FtCreateNofreqs

func (FtCreateFilter) Nohl added in v0.0.72

func (c FtCreateFilter) Nohl() FtCreateNohl

func (FtCreateFilter) Nooffsets added in v0.0.72

func (c FtCreateFilter) Nooffsets() FtCreateNooffsets

func (FtCreateFilter) PayloadField added in v0.0.72

func (c FtCreateFilter) PayloadField(payloadAttribute string) FtCreatePayloadField

func (FtCreateFilter) Schema added in v0.0.72

func (c FtCreateFilter) Schema() FtCreateSchema

func (FtCreateFilter) Score added in v0.0.72

func (c FtCreateFilter) Score(defaultScore float64) FtCreateScore

func (FtCreateFilter) ScoreField added in v0.0.72

func (c FtCreateFilter) ScoreField(scoreAttribute string) FtCreateScoreField

func (FtCreateFilter) Skipinitialscan added in v0.0.72

func (c FtCreateFilter) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateFilter) Stopwords added in v0.0.72

func (c FtCreateFilter) Stopwords(count int64) FtCreateStopwordsStopwords

func (FtCreateFilter) Temporary added in v0.0.72

func (c FtCreateFilter) Temporary(seconds float64) FtCreateTemporary

type FtCreateIndex added in v0.0.2

type FtCreateIndex Completed

func (FtCreateIndex) Filter added in v0.0.72

func (c FtCreateIndex) Filter(filter string) FtCreateFilter

func (FtCreateIndex) Language added in v0.0.2

func (c FtCreateIndex) Language(defaultLang string) FtCreateLanguage

func (FtCreateIndex) LanguageField added in v0.0.2

func (c FtCreateIndex) LanguageField(langAttribute string) FtCreateLanguageField

func (FtCreateIndex) Maxtextfields added in v0.0.2

func (c FtCreateIndex) Maxtextfields() FtCreateMaxtextfields

func (FtCreateIndex) Nofields added in v0.0.2

func (c FtCreateIndex) Nofields() FtCreateNofields

func (FtCreateIndex) Nofreqs added in v0.0.2

func (c FtCreateIndex) Nofreqs() FtCreateNofreqs

func (FtCreateIndex) Nohl added in v0.0.2

func (c FtCreateIndex) Nohl() FtCreateNohl

func (FtCreateIndex) Nooffsets added in v0.0.2

func (c FtCreateIndex) Nooffsets() FtCreateNooffsets

func (FtCreateIndex) OnHash added in v0.0.2

func (c FtCreateIndex) OnHash() FtCreateOnHash

func (FtCreateIndex) OnJson added in v0.0.2

func (c FtCreateIndex) OnJson() FtCreateOnJson

func (FtCreateIndex) PayloadField added in v0.0.2

func (c FtCreateIndex) PayloadField(payloadAttribute string) FtCreatePayloadField

func (FtCreateIndex) Prefix added in v0.0.2

func (c FtCreateIndex) Prefix(count int64) FtCreatePrefixCount

func (FtCreateIndex) Schema added in v0.0.2

func (c FtCreateIndex) Schema() FtCreateSchema

func (FtCreateIndex) Score added in v0.0.2

func (c FtCreateIndex) Score(defaultScore float64) FtCreateScore

func (FtCreateIndex) ScoreField added in v0.0.2

func (c FtCreateIndex) ScoreField(scoreAttribute string) FtCreateScoreField

func (FtCreateIndex) Skipinitialscan added in v0.0.72

func (c FtCreateIndex) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateIndex) Stopwords added in v0.0.2

func (c FtCreateIndex) Stopwords(count int64) FtCreateStopwordsStopwords

func (FtCreateIndex) Temporary added in v0.0.2

func (c FtCreateIndex) Temporary(seconds float64) FtCreateTemporary

type FtCreateLanguage added in v0.0.2

type FtCreateLanguage Completed

func (FtCreateLanguage) LanguageField added in v0.0.2

func (c FtCreateLanguage) LanguageField(langAttribute string) FtCreateLanguageField

func (FtCreateLanguage) Maxtextfields added in v0.0.2

func (c FtCreateLanguage) Maxtextfields() FtCreateMaxtextfields

func (FtCreateLanguage) Nofields added in v0.0.2

func (c FtCreateLanguage) Nofields() FtCreateNofields

func (FtCreateLanguage) Nofreqs added in v0.0.2

func (c FtCreateLanguage) Nofreqs() FtCreateNofreqs

func (FtCreateLanguage) Nohl added in v0.0.2

func (c FtCreateLanguage) Nohl() FtCreateNohl

func (FtCreateLanguage) Nooffsets added in v0.0.2

func (c FtCreateLanguage) Nooffsets() FtCreateNooffsets

func (FtCreateLanguage) PayloadField added in v0.0.2

func (c FtCreateLanguage) PayloadField(payloadAttribute string) FtCreatePayloadField

func (FtCreateLanguage) Schema added in v0.0.2

func (c FtCreateLanguage) Schema() FtCreateSchema

func (FtCreateLanguage) Score added in v0.0.2

func (c FtCreateLanguage) Score(defaultScore float64) FtCreateScore

func (FtCreateLanguage) ScoreField added in v0.0.2

func (c FtCreateLanguage) ScoreField(scoreAttribute string) FtCreateScoreField

func (FtCreateLanguage) Skipinitialscan added in v0.0.72

func (c FtCreateLanguage) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateLanguage) Stopwords added in v0.0.2

func (FtCreateLanguage) Temporary added in v0.0.2

func (c FtCreateLanguage) Temporary(seconds float64) FtCreateTemporary

type FtCreateLanguageField added in v0.0.2

type FtCreateLanguageField Completed

func (FtCreateLanguageField) Maxtextfields added in v0.0.2

func (c FtCreateLanguageField) Maxtextfields() FtCreateMaxtextfields

func (FtCreateLanguageField) Nofields added in v0.0.2

func (FtCreateLanguageField) Nofreqs added in v0.0.2

func (FtCreateLanguageField) Nohl added in v0.0.2

func (FtCreateLanguageField) Nooffsets added in v0.0.2

func (FtCreateLanguageField) PayloadField added in v0.0.2

func (c FtCreateLanguageField) PayloadField(payloadAttribute string) FtCreatePayloadField

func (FtCreateLanguageField) Schema added in v0.0.2

func (FtCreateLanguageField) Score added in v0.0.2

func (c FtCreateLanguageField) Score(defaultScore float64) FtCreateScore

func (FtCreateLanguageField) ScoreField added in v0.0.2

func (c FtCreateLanguageField) ScoreField(scoreAttribute string) FtCreateScoreField

func (FtCreateLanguageField) Skipinitialscan added in v0.0.72

func (c FtCreateLanguageField) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateLanguageField) Stopwords added in v0.0.2

func (FtCreateLanguageField) Temporary added in v0.0.2

func (c FtCreateLanguageField) Temporary(seconds float64) FtCreateTemporary

type FtCreateMaxtextfields added in v0.0.2

type FtCreateMaxtextfields Completed

func (FtCreateMaxtextfields) Nofields added in v0.0.2

func (FtCreateMaxtextfields) Nofreqs added in v0.0.2

func (FtCreateMaxtextfields) Nohl added in v0.0.2

func (FtCreateMaxtextfields) Nooffsets added in v0.0.2

func (FtCreateMaxtextfields) Schema added in v0.0.2

func (FtCreateMaxtextfields) Skipinitialscan added in v0.0.72

func (c FtCreateMaxtextfields) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateMaxtextfields) Stopwords added in v0.0.2

func (FtCreateMaxtextfields) Temporary added in v0.0.2

func (c FtCreateMaxtextfields) Temporary(seconds float64) FtCreateTemporary

type FtCreateNofields added in v0.0.2

type FtCreateNofields Completed

func (FtCreateNofields) Nofreqs added in v0.0.2

func (c FtCreateNofields) Nofreqs() FtCreateNofreqs

func (FtCreateNofields) Schema added in v0.0.2

func (c FtCreateNofields) Schema() FtCreateSchema

func (FtCreateNofields) Skipinitialscan added in v0.0.72

func (c FtCreateNofields) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateNofields) Stopwords added in v0.0.2

type FtCreateNofreqs added in v0.0.2

type FtCreateNofreqs Completed

func (FtCreateNofreqs) Schema added in v0.0.2

func (c FtCreateNofreqs) Schema() FtCreateSchema

func (FtCreateNofreqs) Skipinitialscan added in v0.0.72

func (c FtCreateNofreqs) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateNofreqs) Stopwords added in v0.0.2

type FtCreateNohl added in v0.0.2

type FtCreateNohl Completed

func (FtCreateNohl) Nofields added in v0.0.2

func (c FtCreateNohl) Nofields() FtCreateNofields

func (FtCreateNohl) Nofreqs added in v0.0.2

func (c FtCreateNohl) Nofreqs() FtCreateNofreqs

func (FtCreateNohl) Schema added in v0.0.2

func (c FtCreateNohl) Schema() FtCreateSchema

func (FtCreateNohl) Skipinitialscan added in v0.0.72

func (c FtCreateNohl) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateNohl) Stopwords added in v0.0.2

func (c FtCreateNohl) Stopwords(count int64) FtCreateStopwordsStopwords

type FtCreateNooffsets added in v0.0.2

type FtCreateNooffsets Completed

func (FtCreateNooffsets) Nofields added in v0.0.2

func (c FtCreateNooffsets) Nofields() FtCreateNofields

func (FtCreateNooffsets) Nofreqs added in v0.0.2

func (c FtCreateNooffsets) Nofreqs() FtCreateNofreqs

func (FtCreateNooffsets) Nohl added in v0.0.2

func (FtCreateNooffsets) Schema added in v0.0.2

func (c FtCreateNooffsets) Schema() FtCreateSchema

func (FtCreateNooffsets) Skipinitialscan added in v0.0.72

func (c FtCreateNooffsets) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateNooffsets) Stopwords added in v0.0.2

type FtCreateOnHash added in v0.0.2

type FtCreateOnHash Completed

func (FtCreateOnHash) Filter added in v0.0.72

func (c FtCreateOnHash) Filter(filter string) FtCreateFilter

func (FtCreateOnHash) Language added in v0.0.2

func (c FtCreateOnHash) Language(defaultLang string) FtCreateLanguage

func (FtCreateOnHash) LanguageField added in v0.0.2

func (c FtCreateOnHash) LanguageField(langAttribute string) FtCreateLanguageField

func (FtCreateOnHash) Maxtextfields added in v0.0.2

func (c FtCreateOnHash) Maxtextfields() FtCreateMaxtextfields

func (FtCreateOnHash) Nofields added in v0.0.2

func (c FtCreateOnHash) Nofields() FtCreateNofields

func (FtCreateOnHash) Nofreqs added in v0.0.2

func (c FtCreateOnHash) Nofreqs() FtCreateNofreqs

func (FtCreateOnHash) Nohl added in v0.0.2

func (c FtCreateOnHash) Nohl() FtCreateNohl

func (FtCreateOnHash) Nooffsets added in v0.0.2

func (c FtCreateOnHash) Nooffsets() FtCreateNooffsets

func (FtCreateOnHash) PayloadField added in v0.0.2

func (c FtCreateOnHash) PayloadField(payloadAttribute string) FtCreatePayloadField

func (FtCreateOnHash) Prefix added in v0.0.2

func (c FtCreateOnHash) Prefix(count int64) FtCreatePrefixCount

func (FtCreateOnHash) Schema added in v0.0.2

func (c FtCreateOnHash) Schema() FtCreateSchema

func (FtCreateOnHash) Score added in v0.0.2

func (c FtCreateOnHash) Score(defaultScore float64) FtCreateScore

func (FtCreateOnHash) ScoreField added in v0.0.2

func (c FtCreateOnHash) ScoreField(scoreAttribute string) FtCreateScoreField

func (FtCreateOnHash) Skipinitialscan added in v0.0.72

func (c FtCreateOnHash) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateOnHash) Stopwords added in v0.0.2

func (c FtCreateOnHash) Stopwords(count int64) FtCreateStopwordsStopwords

func (FtCreateOnHash) Temporary added in v0.0.2

func (c FtCreateOnHash) Temporary(seconds float64) FtCreateTemporary

type FtCreateOnJson added in v0.0.2

type FtCreateOnJson Completed

func (FtCreateOnJson) Filter added in v0.0.72

func (c FtCreateOnJson) Filter(filter string) FtCreateFilter

func (FtCreateOnJson) Language added in v0.0.2

func (c FtCreateOnJson) Language(defaultLang string) FtCreateLanguage

func (FtCreateOnJson) LanguageField added in v0.0.2

func (c FtCreateOnJson) LanguageField(langAttribute string) FtCreateLanguageField

func (FtCreateOnJson) Maxtextfields added in v0.0.2

func (c FtCreateOnJson) Maxtextfields() FtCreateMaxtextfields

func (FtCreateOnJson) Nofields added in v0.0.2

func (c FtCreateOnJson) Nofields() FtCreateNofields

func (FtCreateOnJson) Nofreqs added in v0.0.2

func (c FtCreateOnJson) Nofreqs() FtCreateNofreqs

func (FtCreateOnJson) Nohl added in v0.0.2

func (c FtCreateOnJson) Nohl() FtCreateNohl

func (FtCreateOnJson) Nooffsets added in v0.0.2

func (c FtCreateOnJson) Nooffsets() FtCreateNooffsets

func (FtCreateOnJson) PayloadField added in v0.0.2

func (c FtCreateOnJson) PayloadField(payloadAttribute string) FtCreatePayloadField

func (FtCreateOnJson) Prefix added in v0.0.2

func (c FtCreateOnJson) Prefix(count int64) FtCreatePrefixCount

func (FtCreateOnJson) Schema added in v0.0.2

func (c FtCreateOnJson) Schema() FtCreateSchema

func (FtCreateOnJson) Score added in v0.0.2

func (c FtCreateOnJson) Score(defaultScore float64) FtCreateScore

func (FtCreateOnJson) ScoreField added in v0.0.2

func (c FtCreateOnJson) ScoreField(scoreAttribute string) FtCreateScoreField

func (FtCreateOnJson) Skipinitialscan added in v0.0.72

func (c FtCreateOnJson) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateOnJson) Stopwords added in v0.0.2

func (c FtCreateOnJson) Stopwords(count int64) FtCreateStopwordsStopwords

func (FtCreateOnJson) Temporary added in v0.0.2

func (c FtCreateOnJson) Temporary(seconds float64) FtCreateTemporary

type FtCreatePayloadField added in v0.0.2

type FtCreatePayloadField Completed

func (FtCreatePayloadField) Maxtextfields added in v0.0.2

func (c FtCreatePayloadField) Maxtextfields() FtCreateMaxtextfields

func (FtCreatePayloadField) Nofields added in v0.0.2

func (FtCreatePayloadField) Nofreqs added in v0.0.2

func (FtCreatePayloadField) Nohl added in v0.0.2

func (FtCreatePayloadField) Nooffsets added in v0.0.2

func (FtCreatePayloadField) Schema added in v0.0.2

func (FtCreatePayloadField) Skipinitialscan added in v0.0.72

func (c FtCreatePayloadField) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreatePayloadField) Stopwords added in v0.0.2

func (FtCreatePayloadField) Temporary added in v0.0.2

func (c FtCreatePayloadField) Temporary(seconds float64) FtCreateTemporary

type FtCreatePrefixCount added in v0.0.2

type FtCreatePrefixCount Completed

func (FtCreatePrefixCount) Prefix added in v0.0.2

func (c FtCreatePrefixCount) Prefix(prefix ...string) FtCreatePrefixPrefix

type FtCreatePrefixPrefix added in v0.0.2

type FtCreatePrefixPrefix Completed

func (FtCreatePrefixPrefix) Filter added in v0.0.72

func (c FtCreatePrefixPrefix) Filter(filter string) FtCreateFilter

func (FtCreatePrefixPrefix) Language added in v0.0.2

func (c FtCreatePrefixPrefix) Language(defaultLang string) FtCreateLanguage

func (FtCreatePrefixPrefix) LanguageField added in v0.0.2

func (c FtCreatePrefixPrefix) LanguageField(langAttribute string) FtCreateLanguageField

func (FtCreatePrefixPrefix) Maxtextfields added in v0.0.2

func (c FtCreatePrefixPrefix) Maxtextfields() FtCreateMaxtextfields

func (FtCreatePrefixPrefix) Nofields added in v0.0.2

func (FtCreatePrefixPrefix) Nofreqs added in v0.0.2

func (FtCreatePrefixPrefix) Nohl added in v0.0.2

func (FtCreatePrefixPrefix) Nooffsets added in v0.0.2

func (FtCreatePrefixPrefix) PayloadField added in v0.0.2

func (c FtCreatePrefixPrefix) PayloadField(payloadAttribute string) FtCreatePayloadField

func (FtCreatePrefixPrefix) Prefix added in v0.0.2

func (c FtCreatePrefixPrefix) Prefix(prefix ...string) FtCreatePrefixPrefix

func (FtCreatePrefixPrefix) Schema added in v0.0.2

func (FtCreatePrefixPrefix) Score added in v0.0.2

func (c FtCreatePrefixPrefix) Score(defaultScore float64) FtCreateScore

func (FtCreatePrefixPrefix) ScoreField added in v0.0.2

func (c FtCreatePrefixPrefix) ScoreField(scoreAttribute string) FtCreateScoreField

func (FtCreatePrefixPrefix) Skipinitialscan added in v0.0.72

func (c FtCreatePrefixPrefix) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreatePrefixPrefix) Stopwords added in v0.0.2

func (FtCreatePrefixPrefix) Temporary added in v0.0.2

func (c FtCreatePrefixPrefix) Temporary(seconds float64) FtCreateTemporary

type FtCreateSchema added in v0.0.2

type FtCreateSchema Completed

func (FtCreateSchema) FieldName added in v0.0.2

func (c FtCreateSchema) FieldName(fieldName string) FtCreateFieldFieldName

type FtCreateScore added in v0.0.2

type FtCreateScore Completed

func (FtCreateScore) Maxtextfields added in v0.0.2

func (c FtCreateScore) Maxtextfields() FtCreateMaxtextfields

func (FtCreateScore) Nofields added in v0.0.2

func (c FtCreateScore) Nofields() FtCreateNofields

func (FtCreateScore) Nofreqs added in v0.0.2

func (c FtCreateScore) Nofreqs() FtCreateNofreqs

func (FtCreateScore) Nohl added in v0.0.2

func (c FtCreateScore) Nohl() FtCreateNohl

func (FtCreateScore) Nooffsets added in v0.0.2

func (c FtCreateScore) Nooffsets() FtCreateNooffsets

func (FtCreateScore) PayloadField added in v0.0.2

func (c FtCreateScore) PayloadField(payloadAttribute string) FtCreatePayloadField

func (FtCreateScore) Schema added in v0.0.2

func (c FtCreateScore) Schema() FtCreateSchema

func (FtCreateScore) ScoreField added in v0.0.2

func (c FtCreateScore) ScoreField(scoreAttribute string) FtCreateScoreField

func (FtCreateScore) Skipinitialscan added in v0.0.72

func (c FtCreateScore) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateScore) Stopwords added in v0.0.2

func (c FtCreateScore) Stopwords(count int64) FtCreateStopwordsStopwords

func (FtCreateScore) Temporary added in v0.0.2

func (c FtCreateScore) Temporary(seconds float64) FtCreateTemporary

type FtCreateScoreField added in v0.0.2

type FtCreateScoreField Completed

func (FtCreateScoreField) Maxtextfields added in v0.0.2

func (c FtCreateScoreField) Maxtextfields() FtCreateMaxtextfields

func (FtCreateScoreField) Nofields added in v0.0.2

func (c FtCreateScoreField) Nofields() FtCreateNofields

func (FtCreateScoreField) Nofreqs added in v0.0.2

func (c FtCreateScoreField) Nofreqs() FtCreateNofreqs

func (FtCreateScoreField) Nohl added in v0.0.2

func (FtCreateScoreField) Nooffsets added in v0.0.2

func (c FtCreateScoreField) Nooffsets() FtCreateNooffsets

func (FtCreateScoreField) PayloadField added in v0.0.2

func (c FtCreateScoreField) PayloadField(payloadAttribute string) FtCreatePayloadField

func (FtCreateScoreField) Schema added in v0.0.2

func (FtCreateScoreField) Skipinitialscan added in v0.0.72

func (c FtCreateScoreField) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateScoreField) Stopwords added in v0.0.2

func (FtCreateScoreField) Temporary added in v0.0.2

func (c FtCreateScoreField) Temporary(seconds float64) FtCreateTemporary

type FtCreateSkipinitialscan added in v0.0.72

type FtCreateSkipinitialscan Completed

func (FtCreateSkipinitialscan) Schema added in v0.0.72

type FtCreateStopwordsStopword added in v0.0.2

type FtCreateStopwordsStopword Completed

func (FtCreateStopwordsStopword) Schema added in v0.0.2

func (FtCreateStopwordsStopword) Skipinitialscan added in v0.0.72

func (FtCreateStopwordsStopword) Stopword added in v0.0.2

type FtCreateStopwordsStopwords added in v0.0.2

type FtCreateStopwordsStopwords Completed

func (FtCreateStopwordsStopwords) Schema added in v0.0.72

func (FtCreateStopwordsStopwords) Skipinitialscan added in v0.0.72

func (FtCreateStopwordsStopwords) Stopword added in v0.0.2

type FtCreateTemporary added in v0.0.2

type FtCreateTemporary Completed

func (FtCreateTemporary) Nofields added in v0.0.2

func (c FtCreateTemporary) Nofields() FtCreateNofields

func (FtCreateTemporary) Nofreqs added in v0.0.2

func (c FtCreateTemporary) Nofreqs() FtCreateNofreqs

func (FtCreateTemporary) Nohl added in v0.0.2

func (FtCreateTemporary) Nooffsets added in v0.0.2

func (c FtCreateTemporary) Nooffsets() FtCreateNooffsets

func (FtCreateTemporary) Schema added in v0.0.2

func (c FtCreateTemporary) Schema() FtCreateSchema

func (FtCreateTemporary) Skipinitialscan added in v0.0.72

func (c FtCreateTemporary) Skipinitialscan() FtCreateSkipinitialscan

func (FtCreateTemporary) Stopwords added in v0.0.2

type FtCursorDel added in v0.0.2

type FtCursorDel Completed

func (FtCursorDel) Index added in v0.0.2

func (c FtCursorDel) Index(index string) FtCursorDelIndex

type FtCursorDelCursorId added in v0.0.2

type FtCursorDelCursorId Completed

func (FtCursorDelCursorId) Build added in v0.0.2

func (c FtCursorDelCursorId) Build() Completed

type FtCursorDelIndex added in v0.0.2

type FtCursorDelIndex Completed

func (FtCursorDelIndex) CursorId added in v0.0.2

func (c FtCursorDelIndex) CursorId(cursorId int64) FtCursorDelCursorId

type FtCursorRead added in v0.0.2

type FtCursorRead Completed

func (FtCursorRead) Index added in v0.0.2

func (c FtCursorRead) Index(index string) FtCursorReadIndex

type FtCursorReadCount added in v0.0.2

type FtCursorReadCount Completed

func (FtCursorReadCount) Build added in v0.0.2

func (c FtCursorReadCount) Build() Completed

type FtCursorReadCursorId added in v0.0.2

type FtCursorReadCursorId Completed

func (FtCursorReadCursorId) Build added in v0.0.2

func (c FtCursorReadCursorId) Build() Completed

func (FtCursorReadCursorId) Count added in v0.0.2

func (c FtCursorReadCursorId) Count(readSize int64) FtCursorReadCount

type FtCursorReadIndex added in v0.0.2

type FtCursorReadIndex Completed

func (FtCursorReadIndex) CursorId added in v0.0.2

func (c FtCursorReadIndex) CursorId(cursorId int64) FtCursorReadCursorId

type FtDictadd added in v0.0.2

type FtDictadd Completed

func (FtDictadd) Dict added in v0.0.2

func (c FtDictadd) Dict(dict string) FtDictaddDict

type FtDictaddDict added in v0.0.2

type FtDictaddDict Completed

func (FtDictaddDict) Term added in v0.0.2

func (c FtDictaddDict) Term(term ...string) FtDictaddTerm

type FtDictaddTerm added in v0.0.2

type FtDictaddTerm Completed

func (FtDictaddTerm) Build added in v0.0.2

func (c FtDictaddTerm) Build() Completed

func (FtDictaddTerm) Term added in v0.0.2

func (c FtDictaddTerm) Term(term ...string) FtDictaddTerm

type FtDictdel added in v0.0.2

type FtDictdel Completed

func (FtDictdel) Dict added in v0.0.2

func (c FtDictdel) Dict(dict string) FtDictdelDict

type FtDictdelDict added in v0.0.2

type FtDictdelDict Completed

func (FtDictdelDict) Term added in v0.0.2

func (c FtDictdelDict) Term(term ...string) FtDictdelTerm

type FtDictdelTerm added in v0.0.2

type FtDictdelTerm Completed

func (FtDictdelTerm) Build added in v0.0.2

func (c FtDictdelTerm) Build() Completed

func (FtDictdelTerm) Term added in v0.0.2

func (c FtDictdelTerm) Term(term ...string) FtDictdelTerm

type FtDictdump added in v0.0.2

type FtDictdump Completed

func (FtDictdump) Dict added in v0.0.2

func (c FtDictdump) Dict(dict string) FtDictdumpDict

type FtDictdumpDict added in v0.0.2

type FtDictdumpDict Completed

func (FtDictdumpDict) Build added in v0.0.2

func (c FtDictdumpDict) Build() Completed

type FtDropindex added in v0.0.2

type FtDropindex Completed

func (FtDropindex) Index added in v0.0.2

func (c FtDropindex) Index(index string) FtDropindexIndex

type FtDropindexDeleteDocsDd added in v0.0.2

type FtDropindexDeleteDocsDd Completed

func (FtDropindexDeleteDocsDd) Build added in v0.0.2

type FtDropindexIndex added in v0.0.2

type FtDropindexIndex Completed

func (FtDropindexIndex) Build added in v0.0.2

func (c FtDropindexIndex) Build() Completed

func (FtDropindexIndex) Dd added in v0.0.2

type FtExplain added in v0.0.2

type FtExplain Completed

func (FtExplain) Index added in v0.0.2

func (c FtExplain) Index(index string) FtExplainIndex

type FtExplainDialect added in v0.0.43

type FtExplainDialect Completed

func (FtExplainDialect) Build added in v0.0.43

func (c FtExplainDialect) Build() Completed

type FtExplainIndex added in v0.0.2

type FtExplainIndex Completed

func (FtExplainIndex) Query added in v0.0.2

func (c FtExplainIndex) Query(query string) FtExplainQuery

type FtExplainQuery added in v0.0.2

type FtExplainQuery Completed

func (FtExplainQuery) Build added in v0.0.2

func (c FtExplainQuery) Build() Completed

func (FtExplainQuery) Dialect added in v0.0.43

func (c FtExplainQuery) Dialect(dialect int64) FtExplainDialect

type FtExplaincli added in v0.0.2

type FtExplaincli Completed

func (FtExplaincli) Index added in v0.0.2

func (c FtExplaincli) Index(index string) FtExplaincliIndex

type FtExplaincliDialect added in v0.0.43

type FtExplaincliDialect Completed

func (FtExplaincliDialect) Build added in v0.0.43

func (c FtExplaincliDialect) Build() Completed

type FtExplaincliIndex added in v0.0.2

type FtExplaincliIndex Completed

func (FtExplaincliIndex) Query added in v0.0.2

type FtExplaincliQuery added in v0.0.2

type FtExplaincliQuery Completed

func (FtExplaincliQuery) Build added in v0.0.2

func (c FtExplaincliQuery) Build() Completed

func (FtExplaincliQuery) Dialect added in v0.0.43

func (c FtExplaincliQuery) Dialect(dialect int64) FtExplaincliDialect

type FtInfo added in v0.0.2

type FtInfo Completed

func (FtInfo) Index added in v0.0.2

func (c FtInfo) Index(index string) FtInfoIndex

type FtInfoIndex added in v0.0.2

type FtInfoIndex Completed

func (FtInfoIndex) Build added in v0.0.2

func (c FtInfoIndex) Build() Completed

type FtList added in v0.0.2

type FtList Completed

func (FtList) Build added in v0.0.2

func (c FtList) Build() Completed

type FtProfile added in v0.0.54

type FtProfile Completed

func (FtProfile) Index added in v0.0.54

func (c FtProfile) Index(index string) FtProfileIndex

type FtProfileIndex added in v0.0.54

type FtProfileIndex Completed

func (FtProfileIndex) Aggregate added in v0.0.54

func (FtProfileIndex) Search added in v0.0.54

type FtProfileLimited added in v0.0.54

type FtProfileLimited Completed

func (FtProfileLimited) Query added in v0.0.54

func (c FtProfileLimited) Query(query string) FtProfileQuery

type FtProfileQuery added in v0.0.54

type FtProfileQuery Completed

func (FtProfileQuery) Build added in v0.0.54

func (c FtProfileQuery) Build() Completed

type FtProfileQuerytypeAggregate added in v0.0.54

type FtProfileQuerytypeAggregate Completed

func (FtProfileQuerytypeAggregate) Limited added in v0.0.54

func (FtProfileQuerytypeAggregate) Query added in v0.0.54

type FtProfileQuerytypeSearch added in v0.0.54

type FtProfileQuerytypeSearch Completed

func (FtProfileQuerytypeSearch) Limited added in v0.0.54

func (FtProfileQuerytypeSearch) Query added in v0.0.54

type FtSearch added in v0.0.2

type FtSearch Completed

func (FtSearch) Index added in v0.0.2

func (c FtSearch) Index(index string) FtSearchIndex

type FtSearchDialect added in v0.0.43

type FtSearchDialect Completed

func (FtSearchDialect) Build added in v0.0.43

func (c FtSearchDialect) Build() Completed

type FtSearchExpander added in v0.0.2

type FtSearchExpander Completed

func (FtSearchExpander) Build added in v0.0.2

func (c FtSearchExpander) Build() Completed

func (FtSearchExpander) Dialect added in v0.0.43

func (c FtSearchExpander) Dialect(dialect int64) FtSearchDialect

func (FtSearchExpander) Explainscore added in v0.0.2

func (c FtSearchExpander) Explainscore() FtSearchExplainscore

func (FtSearchExpander) Limit added in v0.0.2

func (FtSearchExpander) Params added in v0.0.54

func (FtSearchExpander) Payload added in v0.0.2

func (c FtSearchExpander) Payload(payload string) FtSearchPayload

func (FtSearchExpander) Scorer added in v0.0.2

func (c FtSearchExpander) Scorer(scorer string) FtSearchScorer

func (FtSearchExpander) Sortby added in v0.0.2

func (c FtSearchExpander) Sortby(sortby string) FtSearchSortbySortby

type FtSearchExplainscore added in v0.0.2

type FtSearchExplainscore Completed

func (FtSearchExplainscore) Build added in v0.0.2

func (c FtSearchExplainscore) Build() Completed

func (FtSearchExplainscore) Dialect added in v0.0.43

func (c FtSearchExplainscore) Dialect(dialect int64) FtSearchDialect

func (FtSearchExplainscore) Limit added in v0.0.2

func (FtSearchExplainscore) Params added in v0.0.54

func (FtSearchExplainscore) Payload added in v0.0.2

func (c FtSearchExplainscore) Payload(payload string) FtSearchPayload

func (FtSearchExplainscore) Sortby added in v0.0.2

type FtSearchFilterFilter added in v0.0.2

type FtSearchFilterFilter Completed

func (FtSearchFilterFilter) Min added in v0.0.2

type FtSearchFilterMax added in v0.0.2

type FtSearchFilterMax Completed

func (FtSearchFilterMax) Build added in v0.0.2

func (c FtSearchFilterMax) Build() Completed

func (FtSearchFilterMax) Dialect added in v0.0.43

func (c FtSearchFilterMax) Dialect(dialect int64) FtSearchDialect

func (FtSearchFilterMax) Expander added in v0.0.2

func (c FtSearchFilterMax) Expander(expander string) FtSearchExpander

func (FtSearchFilterMax) Explainscore added in v0.0.2

func (c FtSearchFilterMax) Explainscore() FtSearchExplainscore

func (FtSearchFilterMax) Filter added in v0.0.2

func (c FtSearchFilterMax) Filter(numericField string) FtSearchFilterFilter

func (FtSearchFilterMax) Geofilter added in v0.0.2

func (c FtSearchFilterMax) Geofilter(geoField string) FtSearchGeoFilterGeofilter

func (FtSearchFilterMax) Highlight added in v0.0.2

func (FtSearchFilterMax) Infields added in v0.0.2

func (FtSearchFilterMax) Inkeys added in v0.0.2

func (FtSearchFilterMax) Inorder added in v0.0.2

func (FtSearchFilterMax) Language added in v0.0.2

func (c FtSearchFilterMax) Language(language string) FtSearchLanguage

func (FtSearchFilterMax) Limit added in v0.0.2

func (FtSearchFilterMax) Params added in v0.0.54

func (FtSearchFilterMax) Payload added in v0.0.2

func (c FtSearchFilterMax) Payload(payload string) FtSearchPayload

func (FtSearchFilterMax) Return added in v0.0.2

func (FtSearchFilterMax) Scorer added in v0.0.2

func (c FtSearchFilterMax) Scorer(scorer string) FtSearchScorer

func (FtSearchFilterMax) Slop added in v0.0.2

func (c FtSearchFilterMax) Slop(slop int64) FtSearchSlop

func (FtSearchFilterMax) Sortby added in v0.0.2

func (FtSearchFilterMax) Summarize added in v0.0.2

func (FtSearchFilterMax) Timeout added in v0.0.54

func (c FtSearchFilterMax) Timeout(timeout int64) FtSearchTimeout

type FtSearchFilterMin added in v0.0.2

type FtSearchFilterMin Completed

func (FtSearchFilterMin) Max added in v0.0.2

type FtSearchGeoFilterGeofilter added in v0.0.2

type FtSearchGeoFilterGeofilter Completed

func (FtSearchGeoFilterGeofilter) Lon added in v0.0.2

type FtSearchGeoFilterLat added in v0.0.2

type FtSearchGeoFilterLat Completed

func (FtSearchGeoFilterLat) Radius added in v0.0.2

type FtSearchGeoFilterLon added in v0.0.2

type FtSearchGeoFilterLon Completed

func (FtSearchGeoFilterLon) Lat added in v0.0.2

type FtSearchGeoFilterRadius added in v0.0.2

type FtSearchGeoFilterRadius Completed

func (FtSearchGeoFilterRadius) Ft added in v0.0.2

func (FtSearchGeoFilterRadius) Km added in v0.0.2

func (FtSearchGeoFilterRadius) M added in v0.0.2

func (FtSearchGeoFilterRadius) Mi added in v0.0.2

type FtSearchGeoFilterRadiusTypeFt added in v0.0.2

type FtSearchGeoFilterRadiusTypeFt Completed

func (FtSearchGeoFilterRadiusTypeFt) Build added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Dialect added in v0.0.43

func (FtSearchGeoFilterRadiusTypeFt) Expander added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Explainscore added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Geofilter added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Highlight added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Infields added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Inkeys added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Inorder added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Language added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Limit added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Params added in v0.0.54

func (FtSearchGeoFilterRadiusTypeFt) Payload added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Return added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Scorer added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Slop added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Sortby added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Summarize added in v0.0.2

func (FtSearchGeoFilterRadiusTypeFt) Timeout added in v0.0.54

type FtSearchGeoFilterRadiusTypeKm added in v0.0.2

type FtSearchGeoFilterRadiusTypeKm Completed

func (FtSearchGeoFilterRadiusTypeKm) Build added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Dialect added in v0.0.43

func (FtSearchGeoFilterRadiusTypeKm) Expander added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Explainscore added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Geofilter added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Highlight added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Infields added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Inkeys added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Inorder added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Language added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Limit added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Params added in v0.0.54

func (FtSearchGeoFilterRadiusTypeKm) Payload added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Return added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Scorer added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Slop added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Sortby added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Summarize added in v0.0.2

func (FtSearchGeoFilterRadiusTypeKm) Timeout added in v0.0.54

type FtSearchGeoFilterRadiusTypeM added in v0.0.2

type FtSearchGeoFilterRadiusTypeM Completed

func (FtSearchGeoFilterRadiusTypeM) Build added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Dialect added in v0.0.43

func (FtSearchGeoFilterRadiusTypeM) Expander added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Explainscore added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Geofilter added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Highlight added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Infields added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Inkeys added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Inorder added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Language added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Limit added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Params added in v0.0.54

func (FtSearchGeoFilterRadiusTypeM) Payload added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Return added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Scorer added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Slop added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Sortby added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Summarize added in v0.0.2

func (FtSearchGeoFilterRadiusTypeM) Timeout added in v0.0.54

type FtSearchGeoFilterRadiusTypeMi added in v0.0.2

type FtSearchGeoFilterRadiusTypeMi Completed

func (FtSearchGeoFilterRadiusTypeMi) Build added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Dialect added in v0.0.43

func (FtSearchGeoFilterRadiusTypeMi) Expander added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Explainscore added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Geofilter added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Highlight added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Infields added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Inkeys added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Inorder added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Language added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Limit added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Params added in v0.0.54

func (FtSearchGeoFilterRadiusTypeMi) Payload added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Return added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Scorer added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Slop added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Sortby added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Summarize added in v0.0.2

func (FtSearchGeoFilterRadiusTypeMi) Timeout added in v0.0.54

type FtSearchHighlightFieldsField added in v0.0.2

type FtSearchHighlightFieldsField Completed

func (FtSearchHighlightFieldsField) Build added in v0.0.2

func (FtSearchHighlightFieldsField) Dialect added in v0.0.43

func (FtSearchHighlightFieldsField) Expander added in v0.0.2

func (FtSearchHighlightFieldsField) Explainscore added in v0.0.2

func (FtSearchHighlightFieldsField) Field added in v0.0.2

func (FtSearchHighlightFieldsField) Inorder added in v0.0.2

func (FtSearchHighlightFieldsField) Language added in v0.0.2

func (FtSearchHighlightFieldsField) Limit added in v0.0.2

func (FtSearchHighlightFieldsField) Params added in v0.0.54

func (FtSearchHighlightFieldsField) Payload added in v0.0.2

func (FtSearchHighlightFieldsField) Scorer added in v0.0.2

func (FtSearchHighlightFieldsField) Slop added in v0.0.2

func (FtSearchHighlightFieldsField) Sortby added in v0.0.2

func (FtSearchHighlightFieldsField) Tags added in v0.0.2

func (FtSearchHighlightFieldsField) Timeout added in v0.0.54

type FtSearchHighlightFieldsFields added in v0.0.2

type FtSearchHighlightFieldsFields Completed

func (FtSearchHighlightFieldsFields) Field added in v0.0.2

type FtSearchHighlightHighlight added in v0.0.2

type FtSearchHighlightHighlight Completed

func (FtSearchHighlightHighlight) Build added in v0.0.2

func (FtSearchHighlightHighlight) Dialect added in v0.0.43

func (FtSearchHighlightHighlight) Expander added in v0.0.2

func (c FtSearchHighlightHighlight) Expander(expander string) FtSearchExpander

func (FtSearchHighlightHighlight) Explainscore added in v0.0.2

func (FtSearchHighlightHighlight) Fields added in v0.0.2

func (FtSearchHighlightHighlight) Inorder added in v0.0.2

func (FtSearchHighlightHighlight) Language added in v0.0.2

func (c FtSearchHighlightHighlight) Language(language string) FtSearchLanguage

func (FtSearchHighlightHighlight) Limit added in v0.0.2

func (FtSearchHighlightHighlight) Params added in v0.0.54

func (FtSearchHighlightHighlight) Payload added in v0.0.2

func (FtSearchHighlightHighlight) Scorer added in v0.0.2

func (FtSearchHighlightHighlight) Slop added in v0.0.2

func (FtSearchHighlightHighlight) Sortby added in v0.0.2

func (FtSearchHighlightHighlight) Tags added in v0.0.2

func (FtSearchHighlightHighlight) Timeout added in v0.0.54

type FtSearchHighlightTagsOpenClose added in v0.0.2

type FtSearchHighlightTagsOpenClose Completed

func (FtSearchHighlightTagsOpenClose) Build added in v0.0.2

func (FtSearchHighlightTagsOpenClose) Dialect added in v0.0.43

func (FtSearchHighlightTagsOpenClose) Expander added in v0.0.2

func (FtSearchHighlightTagsOpenClose) Explainscore added in v0.0.2

func (FtSearchHighlightTagsOpenClose) Inorder added in v0.0.2

func (FtSearchHighlightTagsOpenClose) Language added in v0.0.2

func (FtSearchHighlightTagsOpenClose) Limit added in v0.0.2

func (FtSearchHighlightTagsOpenClose) Params added in v0.0.54

func (FtSearchHighlightTagsOpenClose) Payload added in v0.0.2

func (FtSearchHighlightTagsOpenClose) Scorer added in v0.0.2

func (FtSearchHighlightTagsOpenClose) Slop added in v0.0.2

func (FtSearchHighlightTagsOpenClose) Sortby added in v0.0.2

func (FtSearchHighlightTagsOpenClose) Timeout added in v0.0.54

type FtSearchHighlightTagsTags added in v0.0.2

type FtSearchHighlightTagsTags Completed

func (FtSearchHighlightTagsTags) OpenClose added in v0.0.2

type FtSearchInFieldsField added in v0.0.2

type FtSearchInFieldsField Completed

func (FtSearchInFieldsField) Build added in v0.0.2

func (c FtSearchInFieldsField) Build() Completed

func (FtSearchInFieldsField) Dialect added in v0.0.43

func (c FtSearchInFieldsField) Dialect(dialect int64) FtSearchDialect

func (FtSearchInFieldsField) Expander added in v0.0.2

func (c FtSearchInFieldsField) Expander(expander string) FtSearchExpander

func (FtSearchInFieldsField) Explainscore added in v0.0.2

func (FtSearchInFieldsField) Field added in v0.0.2

func (FtSearchInFieldsField) Highlight added in v0.0.2

func (FtSearchInFieldsField) Inorder added in v0.0.2

func (FtSearchInFieldsField) Language added in v0.0.2

func (c FtSearchInFieldsField) Language(language string) FtSearchLanguage

func (FtSearchInFieldsField) Limit added in v0.0.2

func (FtSearchInFieldsField) Params added in v0.0.54

func (FtSearchInFieldsField) Payload added in v0.0.2

func (c FtSearchInFieldsField) Payload(payload string) FtSearchPayload

func (FtSearchInFieldsField) Return added in v0.0.2

func (FtSearchInFieldsField) Scorer added in v0.0.2

func (c FtSearchInFieldsField) Scorer(scorer string) FtSearchScorer

func (FtSearchInFieldsField) Slop added in v0.0.2

func (FtSearchInFieldsField) Sortby added in v0.0.2

func (FtSearchInFieldsField) Summarize added in v0.0.2

func (FtSearchInFieldsField) Timeout added in v0.0.54

func (c FtSearchInFieldsField) Timeout(timeout int64) FtSearchTimeout

type FtSearchInFieldsInfields added in v0.0.2

type FtSearchInFieldsInfields Completed

func (FtSearchInFieldsInfields) Field added in v0.0.2

type FtSearchInKeysInkeys added in v0.0.2

type FtSearchInKeysInkeys Completed

func (FtSearchInKeysInkeys) Key added in v0.0.2

type FtSearchInKeysKey added in v0.0.2

type FtSearchInKeysKey Completed

func (FtSearchInKeysKey) Build added in v0.0.2

func (c FtSearchInKeysKey) Build() Completed

func (FtSearchInKeysKey) Dialect added in v0.0.43

func (c FtSearchInKeysKey) Dialect(dialect int64) FtSearchDialect

func (FtSearchInKeysKey) Expander added in v0.0.2

func (c FtSearchInKeysKey) Expander(expander string) FtSearchExpander

func (FtSearchInKeysKey) Explainscore added in v0.0.2

func (c FtSearchInKeysKey) Explainscore() FtSearchExplainscore

func (FtSearchInKeysKey) Highlight added in v0.0.2

func (FtSearchInKeysKey) Infields added in v0.0.2

func (FtSearchInKeysKey) Inorder added in v0.0.2

func (FtSearchInKeysKey) Key added in v0.0.2

func (FtSearchInKeysKey) Language added in v0.0.2

func (c FtSearchInKeysKey) Language(language string) FtSearchLanguage

func (FtSearchInKeysKey) Limit added in v0.0.2

func (FtSearchInKeysKey) Params added in v0.0.54

func (FtSearchInKeysKey) Payload added in v0.0.2

func (c FtSearchInKeysKey) Payload(payload string) FtSearchPayload

func (FtSearchInKeysKey) Return added in v0.0.2

func (FtSearchInKeysKey) Scorer added in v0.0.2

func (c FtSearchInKeysKey) Scorer(scorer string) FtSearchScorer

func (FtSearchInKeysKey) Slop added in v0.0.2

func (c FtSearchInKeysKey) Slop(slop int64) FtSearchSlop

func (FtSearchInKeysKey) Sortby added in v0.0.2

func (FtSearchInKeysKey) Summarize added in v0.0.2

func (FtSearchInKeysKey) Timeout added in v0.0.54

func (c FtSearchInKeysKey) Timeout(timeout int64) FtSearchTimeout

type FtSearchIndex added in v0.0.2

type FtSearchIndex Completed

func (FtSearchIndex) Query added in v0.0.2

func (c FtSearchIndex) Query(query string) FtSearchQuery

type FtSearchLanguage added in v0.0.2

type FtSearchLanguage Completed

func (FtSearchLanguage) Build added in v0.0.2

func (c FtSearchLanguage) Build() Completed

func (FtSearchLanguage) Dialect added in v0.0.43

func (c FtSearchLanguage) Dialect(dialect int64) FtSearchDialect

func (FtSearchLanguage) Expander added in v0.0.2

func (c FtSearchLanguage) Expander(expander string) FtSearchExpander

func (FtSearchLanguage) Explainscore added in v0.0.2

func (c FtSearchLanguage) Explainscore() FtSearchExplainscore

func (FtSearchLanguage) Limit added in v0.0.2

func (FtSearchLanguage) Params added in v0.0.54

func (FtSearchLanguage) Payload added in v0.0.2

func (c FtSearchLanguage) Payload(payload string) FtSearchPayload

func (FtSearchLanguage) Scorer added in v0.0.2

func (c FtSearchLanguage) Scorer(scorer string) FtSearchScorer

func (FtSearchLanguage) Sortby added in v0.0.2

func (c FtSearchLanguage) Sortby(sortby string) FtSearchSortbySortby

type FtSearchLimitLimit added in v0.0.2

type FtSearchLimitLimit Completed

func (FtSearchLimitLimit) OffsetNum added in v0.0.2

func (c FtSearchLimitLimit) OffsetNum(offset int64, num int64) FtSearchLimitOffsetNum

type FtSearchLimitOffsetNum added in v0.0.2

type FtSearchLimitOffsetNum Completed

func (FtSearchLimitOffsetNum) Build added in v0.0.2

func (FtSearchLimitOffsetNum) Dialect added in v0.0.43

func (c FtSearchLimitOffsetNum) Dialect(dialect int64) FtSearchDialect

func (FtSearchLimitOffsetNum) Params added in v0.0.54

type FtSearchNocontent added in v0.0.2

type FtSearchNocontent Completed

func (FtSearchNocontent) Build added in v0.0.2

func (c FtSearchNocontent) Build() Completed

func (FtSearchNocontent) Dialect added in v0.0.43

func (c FtSearchNocontent) Dialect(dialect int64) FtSearchDialect

func (FtSearchNocontent) Expander added in v0.0.2

func (c FtSearchNocontent) Expander(expander string) FtSearchExpander

func (FtSearchNocontent) Explainscore added in v0.0.2

func (c FtSearchNocontent) Explainscore() FtSearchExplainscore

func (FtSearchNocontent) Filter added in v0.0.2

func (c FtSearchNocontent) Filter(numericField string) FtSearchFilterFilter

func (FtSearchNocontent) Geofilter added in v0.0.2

func (c FtSearchNocontent) Geofilter(geoField string) FtSearchGeoFilterGeofilter

func (FtSearchNocontent) Highlight added in v0.0.2

func (FtSearchNocontent) Infields added in v0.0.2

func (FtSearchNocontent) Inkeys added in v0.0.2

func (FtSearchNocontent) Inorder added in v0.0.2

func (FtSearchNocontent) Language added in v0.0.2

func (c FtSearchNocontent) Language(language string) FtSearchLanguage

func (FtSearchNocontent) Limit added in v0.0.2

func (FtSearchNocontent) Nostopwords added in v0.0.2

func (c FtSearchNocontent) Nostopwords() FtSearchNostopwords

func (FtSearchNocontent) Params added in v0.0.54

func (FtSearchNocontent) Payload added in v0.0.2

func (c FtSearchNocontent) Payload(payload string) FtSearchPayload

func (FtSearchNocontent) Return added in v0.0.2

func (FtSearchNocontent) Scorer added in v0.0.2

func (c FtSearchNocontent) Scorer(scorer string) FtSearchScorer

func (FtSearchNocontent) Slop added in v0.0.2

func (c FtSearchNocontent) Slop(slop int64) FtSearchSlop

func (FtSearchNocontent) Sortby added in v0.0.2

func (FtSearchNocontent) Summarize added in v0.0.2

func (FtSearchNocontent) Timeout added in v0.0.54

func (c FtSearchNocontent) Timeout(timeout int64) FtSearchTimeout

func (FtSearchNocontent) Verbatim added in v0.0.2

func (c FtSearchNocontent) Verbatim() FtSearchVerbatim

func (FtSearchNocontent) Withpayloads added in v0.0.2

func (c FtSearchNocontent) Withpayloads() FtSearchWithpayloads

func (FtSearchNocontent) Withscores added in v0.0.2

func (c FtSearchNocontent) Withscores() FtSearchWithscores

func (FtSearchNocontent) Withsortkeys added in v0.0.2

func (c FtSearchNocontent) Withsortkeys() FtSearchWithsortkeys

type FtSearchNostopwords added in v0.0.2

type FtSearchNostopwords Completed

func (FtSearchNostopwords) Build added in v0.0.2

func (c FtSearchNostopwords) Build() Completed

func (FtSearchNostopwords) Dialect added in v0.0.43

func (c FtSearchNostopwords) Dialect(dialect int64) FtSearchDialect

func (FtSearchNostopwords) Expander added in v0.0.2

func (c FtSearchNostopwords) Expander(expander string) FtSearchExpander

func (FtSearchNostopwords) Explainscore added in v0.0.2

func (c FtSearchNostopwords) Explainscore() FtSearchExplainscore

func (FtSearchNostopwords) Filter added in v0.0.2

func (c FtSearchNostopwords) Filter(numericField string) FtSearchFilterFilter

func (FtSearchNostopwords) Geofilter added in v0.0.2

func (FtSearchNostopwords) Highlight added in v0.0.2

func (FtSearchNostopwords) Infields added in v0.0.2

func (FtSearchNostopwords) Inkeys added in v0.0.2

func (FtSearchNostopwords) Inorder added in v0.0.2

func (FtSearchNostopwords) Language added in v0.0.2

func (c FtSearchNostopwords) Language(language string) FtSearchLanguage

func (FtSearchNostopwords) Limit added in v0.0.2

func (FtSearchNostopwords) Params added in v0.0.54

func (FtSearchNostopwords) Payload added in v0.0.2

func (c FtSearchNostopwords) Payload(payload string) FtSearchPayload

func (FtSearchNostopwords) Return added in v0.0.2

func (FtSearchNostopwords) Scorer added in v0.0.2

func (c FtSearchNostopwords) Scorer(scorer string) FtSearchScorer

func (FtSearchNostopwords) Slop added in v0.0.2

func (c FtSearchNostopwords) Slop(slop int64) FtSearchSlop

func (FtSearchNostopwords) Sortby added in v0.0.2

func (FtSearchNostopwords) Summarize added in v0.0.2

func (FtSearchNostopwords) Timeout added in v0.0.54

func (c FtSearchNostopwords) Timeout(timeout int64) FtSearchTimeout

func (FtSearchNostopwords) Withpayloads added in v0.0.2

func (c FtSearchNostopwords) Withpayloads() FtSearchWithpayloads

func (FtSearchNostopwords) Withscores added in v0.0.2

func (c FtSearchNostopwords) Withscores() FtSearchWithscores

func (FtSearchNostopwords) Withsortkeys added in v0.0.2

func (c FtSearchNostopwords) Withsortkeys() FtSearchWithsortkeys

type FtSearchParamsNameValue added in v0.0.54

type FtSearchParamsNameValue Completed

func (FtSearchParamsNameValue) Build added in v0.0.54

func (FtSearchParamsNameValue) Dialect added in v0.0.54

func (c FtSearchParamsNameValue) Dialect(dialect int64) FtSearchDialect

func (FtSearchParamsNameValue) NameValue added in v0.0.54

type FtSearchParamsNargs added in v0.0.54

type FtSearchParamsNargs Completed

func (FtSearchParamsNargs) NameValue added in v0.0.54

type FtSearchParamsParams added in v0.0.54

type FtSearchParamsParams Completed

func (FtSearchParamsParams) Nargs added in v0.0.54

type FtSearchPayload added in v0.0.2

type FtSearchPayload Completed

func (FtSearchPayload) Build added in v0.0.2

func (c FtSearchPayload) Build() Completed

func (FtSearchPayload) Dialect added in v0.0.43

func (c FtSearchPayload) Dialect(dialect int64) FtSearchDialect

func (FtSearchPayload) Limit added in v0.0.2

func (FtSearchPayload) Params added in v0.0.54

func (FtSearchPayload) Sortby added in v0.0.2

func (c FtSearchPayload) Sortby(sortby string) FtSearchSortbySortby

type FtSearchQuery added in v0.0.2

type FtSearchQuery Completed

func (FtSearchQuery) Build added in v0.0.2

func (c FtSearchQuery) Build() Completed

func (FtSearchQuery) Dialect added in v0.0.43

func (c FtSearchQuery) Dialect(dialect int64) FtSearchDialect

func (FtSearchQuery) Expander added in v0.0.2

func (c FtSearchQuery) Expander(expander string) FtSearchExpander

func (FtSearchQuery) Explainscore added in v0.0.2

func (c FtSearchQuery) Explainscore() FtSearchExplainscore

func (FtSearchQuery) Filter added in v0.0.2

func (c FtSearchQuery) Filter(numericField string) FtSearchFilterFilter

func (FtSearchQuery) Geofilter added in v0.0.2

func (c FtSearchQuery) Geofilter(geoField string) FtSearchGeoFilterGeofilter

func (FtSearchQuery) Highlight added in v0.0.2

func (FtSearchQuery) Infields added in v0.0.2

func (c FtSearchQuery) Infields(count string) FtSearchInFieldsInfields

func (FtSearchQuery) Inkeys added in v0.0.2

func (c FtSearchQuery) Inkeys(count string) FtSearchInKeysInkeys

func (FtSearchQuery) Inorder added in v0.0.2

func (c FtSearchQuery) Inorder() FtSearchTagsInorder

func (FtSearchQuery) Language added in v0.0.2

func (c FtSearchQuery) Language(language string) FtSearchLanguage

func (FtSearchQuery) Limit added in v0.0.2

func (FtSearchQuery) Nocontent added in v0.0.2

func (c FtSearchQuery) Nocontent() FtSearchNocontent

func (FtSearchQuery) Nostopwords added in v0.0.2

func (c FtSearchQuery) Nostopwords() FtSearchNostopwords

func (FtSearchQuery) Params added in v0.0.54

func (FtSearchQuery) Payload added in v0.0.2

func (c FtSearchQuery) Payload(payload string) FtSearchPayload

func (FtSearchQuery) Return added in v0.0.2

func (c FtSearchQuery) Return(count string) FtSearchReturnReturn

func (FtSearchQuery) Scorer added in v0.0.2

func (c FtSearchQuery) Scorer(scorer string) FtSearchScorer

func (FtSearchQuery) Slop added in v0.0.2

func (c FtSearchQuery) Slop(slop int64) FtSearchSlop

func (FtSearchQuery) Sortby added in v0.0.2

func (c FtSearchQuery) Sortby(sortby string) FtSearchSortbySortby

func (FtSearchQuery) Summarize added in v0.0.2

func (FtSearchQuery) Timeout added in v0.0.54

func (c FtSearchQuery) Timeout(timeout int64) FtSearchTimeout

func (FtSearchQuery) Verbatim added in v0.0.2

func (c FtSearchQuery) Verbatim() FtSearchVerbatim

func (FtSearchQuery) Withpayloads added in v0.0.2

func (c FtSearchQuery) Withpayloads() FtSearchWithpayloads

func (FtSearchQuery) Withscores added in v0.0.2

func (c FtSearchQuery) Withscores() FtSearchWithscores

func (FtSearchQuery) Withsortkeys added in v0.0.2

func (c FtSearchQuery) Withsortkeys() FtSearchWithsortkeys

type FtSearchReturnIdentifiersAs added in v0.0.54

type FtSearchReturnIdentifiersAs Completed

func (FtSearchReturnIdentifiersAs) Build added in v0.0.54

func (FtSearchReturnIdentifiersAs) Dialect added in v0.0.54

func (FtSearchReturnIdentifiersAs) Expander added in v0.0.54

func (FtSearchReturnIdentifiersAs) Explainscore added in v0.0.54

func (FtSearchReturnIdentifiersAs) Highlight added in v0.0.54

func (FtSearchReturnIdentifiersAs) Identifier added in v0.0.54

func (FtSearchReturnIdentifiersAs) Inorder added in v0.0.54

func (FtSearchReturnIdentifiersAs) Language added in v0.0.54

func (FtSearchReturnIdentifiersAs) Limit added in v0.0.54

func (FtSearchReturnIdentifiersAs) Params added in v0.0.54

func (FtSearchReturnIdentifiersAs) Payload added in v0.0.54

func (FtSearchReturnIdentifiersAs) Scorer added in v0.0.54

func (FtSearchReturnIdentifiersAs) Slop added in v0.0.54

func (FtSearchReturnIdentifiersAs) Sortby added in v0.0.54

func (FtSearchReturnIdentifiersAs) Summarize added in v0.0.54

func (FtSearchReturnIdentifiersAs) Timeout added in v0.0.54

type FtSearchReturnIdentifiersIdentifier added in v0.0.54

type FtSearchReturnIdentifiersIdentifier Completed

func (FtSearchReturnIdentifiersIdentifier) As added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Build added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Dialect added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Expander added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Explainscore added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Highlight added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Identifier added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Inorder added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Language added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Limit added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Params added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Payload added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Scorer added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Slop added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Sortby added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Summarize added in v0.0.54

func (FtSearchReturnIdentifiersIdentifier) Timeout added in v0.0.54

type FtSearchReturnReturn added in v0.0.2

type FtSearchReturnReturn Completed

func (FtSearchReturnReturn) Identifier added in v0.0.54

type FtSearchScorer added in v0.0.2

type FtSearchScorer Completed

func (FtSearchScorer) Build added in v0.0.2

func (c FtSearchScorer) Build() Completed

func (FtSearchScorer) Dialect added in v0.0.43

func (c FtSearchScorer) Dialect(dialect int64) FtSearchDialect

func (FtSearchScorer) Explainscore added in v0.0.2

func (c FtSearchScorer) Explainscore() FtSearchExplainscore

func (FtSearchScorer) Limit added in v0.0.2

func (FtSearchScorer) Params added in v0.0.54

func (FtSearchScorer) Payload added in v0.0.2

func (c FtSearchScorer) Payload(payload string) FtSearchPayload

func (FtSearchScorer) Sortby added in v0.0.2

func (c FtSearchScorer) Sortby(sortby string) FtSearchSortbySortby

type FtSearchSlop added in v0.0.2

type FtSearchSlop Completed

func (FtSearchSlop) Build added in v0.0.2

func (c FtSearchSlop) Build() Completed

func (FtSearchSlop) Dialect added in v0.0.43

func (c FtSearchSlop) Dialect(dialect int64) FtSearchDialect

func (FtSearchSlop) Expander added in v0.0.2

func (c FtSearchSlop) Expander(expander string) FtSearchExpander

func (FtSearchSlop) Explainscore added in v0.0.2

func (c FtSearchSlop) Explainscore() FtSearchExplainscore

func (FtSearchSlop) Inorder added in v0.0.2

func (c FtSearchSlop) Inorder() FtSearchTagsInorder

func (FtSearchSlop) Language added in v0.0.2

func (c FtSearchSlop) Language(language string) FtSearchLanguage

func (FtSearchSlop) Limit added in v0.0.2

func (c FtSearchSlop) Limit() FtSearchLimitLimit

func (FtSearchSlop) Params added in v0.0.54

func (FtSearchSlop) Payload added in v0.0.2

func (c FtSearchSlop) Payload(payload string) FtSearchPayload

func (FtSearchSlop) Scorer added in v0.0.2

func (c FtSearchSlop) Scorer(scorer string) FtSearchScorer

func (FtSearchSlop) Sortby added in v0.0.2

func (c FtSearchSlop) Sortby(sortby string) FtSearchSortbySortby

func (FtSearchSlop) Timeout added in v0.0.54

func (c FtSearchSlop) Timeout(timeout int64) FtSearchTimeout

type FtSearchSortbyOrderAsc added in v0.0.2

type FtSearchSortbyOrderAsc Completed

func (FtSearchSortbyOrderAsc) Build added in v0.0.2

func (FtSearchSortbyOrderAsc) Dialect added in v0.0.43

func (c FtSearchSortbyOrderAsc) Dialect(dialect int64) FtSearchDialect

func (FtSearchSortbyOrderAsc) Limit added in v0.0.2

func (FtSearchSortbyOrderAsc) Params added in v0.0.54

type FtSearchSortbyOrderDesc added in v0.0.2

type FtSearchSortbyOrderDesc Completed

func (FtSearchSortbyOrderDesc) Build added in v0.0.2

func (FtSearchSortbyOrderDesc) Dialect added in v0.0.43

func (c FtSearchSortbyOrderDesc) Dialect(dialect int64) FtSearchDialect

func (FtSearchSortbyOrderDesc) Limit added in v0.0.2

func (FtSearchSortbyOrderDesc) Params added in v0.0.54

type FtSearchSortbySortby added in v0.0.2

type FtSearchSortbySortby Completed

func (FtSearchSortbySortby) Asc added in v0.0.2

func (FtSearchSortbySortby) Build added in v0.0.2

func (c FtSearchSortbySortby) Build() Completed

func (FtSearchSortbySortby) Desc added in v0.0.2

func (FtSearchSortbySortby) Dialect added in v0.0.43

func (c FtSearchSortbySortby) Dialect(dialect int64) FtSearchDialect

func (FtSearchSortbySortby) Limit added in v0.0.2

func (FtSearchSortbySortby) Params added in v0.0.54

type FtSearchSummarizeFieldsField added in v0.0.2

type FtSearchSummarizeFieldsField Completed

func (FtSearchSummarizeFieldsField) Build added in v0.0.2

func (FtSearchSummarizeFieldsField) Dialect added in v0.0.43

func (FtSearchSummarizeFieldsField) Expander added in v0.0.2

func (FtSearchSummarizeFieldsField) Explainscore added in v0.0.2

func (FtSearchSummarizeFieldsField) Field added in v0.0.2

func (FtSearchSummarizeFieldsField) Frags added in v0.0.2

func (FtSearchSummarizeFieldsField) Highlight added in v0.0.2

func (FtSearchSummarizeFieldsField) Inorder added in v0.0.2

func (FtSearchSummarizeFieldsField) Language added in v0.0.2

func (FtSearchSummarizeFieldsField) Len added in v0.0.2

func (FtSearchSummarizeFieldsField) Limit added in v0.0.2

func (FtSearchSummarizeFieldsField) Params added in v0.0.54

func (FtSearchSummarizeFieldsField) Payload added in v0.0.2

func (FtSearchSummarizeFieldsField) Scorer added in v0.0.2

func (FtSearchSummarizeFieldsField) Separator added in v0.0.2

func (FtSearchSummarizeFieldsField) Slop added in v0.0.2

func (FtSearchSummarizeFieldsField) Sortby added in v0.0.2

func (FtSearchSummarizeFieldsField) Timeout added in v0.0.54

type FtSearchSummarizeFieldsFields added in v0.0.2

type FtSearchSummarizeFieldsFields Completed

func (FtSearchSummarizeFieldsFields) Field added in v0.0.2

type FtSearchSummarizeFrags added in v0.0.2

type FtSearchSummarizeFrags Completed

func (FtSearchSummarizeFrags) Build added in v0.0.2

func (FtSearchSummarizeFrags) Dialect added in v0.0.43

func (c FtSearchSummarizeFrags) Dialect(dialect int64) FtSearchDialect

func (FtSearchSummarizeFrags) Expander added in v0.0.2

func (c FtSearchSummarizeFrags) Expander(expander string) FtSearchExpander

func (FtSearchSummarizeFrags) Explainscore added in v0.0.2

func (FtSearchSummarizeFrags) Highlight added in v0.0.2

func (FtSearchSummarizeFrags) Inorder added in v0.0.2

func (FtSearchSummarizeFrags) Language added in v0.0.2

func (c FtSearchSummarizeFrags) Language(language string) FtSearchLanguage

func (FtSearchSummarizeFrags) Len added in v0.0.2

func (FtSearchSummarizeFrags) Limit added in v0.0.2

func (FtSearchSummarizeFrags) Params added in v0.0.54

func (FtSearchSummarizeFrags) Payload added in v0.0.2

func (c FtSearchSummarizeFrags) Payload(payload string) FtSearchPayload

func (FtSearchSummarizeFrags) Scorer added in v0.0.2

func (c FtSearchSummarizeFrags) Scorer(scorer string) FtSearchScorer

func (FtSearchSummarizeFrags) Separator added in v0.0.2

func (FtSearchSummarizeFrags) Slop added in v0.0.2

func (FtSearchSummarizeFrags) Sortby added in v0.0.2

func (FtSearchSummarizeFrags) Timeout added in v0.0.54

func (c FtSearchSummarizeFrags) Timeout(timeout int64) FtSearchTimeout

type FtSearchSummarizeLen added in v0.0.2

type FtSearchSummarizeLen Completed

func (FtSearchSummarizeLen) Build added in v0.0.2

func (c FtSearchSummarizeLen) Build() Completed

func (FtSearchSummarizeLen) Dialect added in v0.0.43

func (c FtSearchSummarizeLen) Dialect(dialect int64) FtSearchDialect

func (FtSearchSummarizeLen) Expander added in v0.0.2

func (c FtSearchSummarizeLen) Expander(expander string) FtSearchExpander

func (FtSearchSummarizeLen) Explainscore added in v0.0.2

func (c FtSearchSummarizeLen) Explainscore() FtSearchExplainscore

func (FtSearchSummarizeLen) Highlight added in v0.0.2

func (FtSearchSummarizeLen) Inorder added in v0.0.2

func (FtSearchSummarizeLen) Language added in v0.0.2

func (c FtSearchSummarizeLen) Language(language string) FtSearchLanguage

func (FtSearchSummarizeLen) Limit added in v0.0.2

func (FtSearchSummarizeLen) Params added in v0.0.54

func (FtSearchSummarizeLen) Payload added in v0.0.2

func (c FtSearchSummarizeLen) Payload(payload string) FtSearchPayload

func (FtSearchSummarizeLen) Scorer added in v0.0.2

func (c FtSearchSummarizeLen) Scorer(scorer string) FtSearchScorer

func (FtSearchSummarizeLen) Separator added in v0.0.2

func (FtSearchSummarizeLen) Slop added in v0.0.2

func (FtSearchSummarizeLen) Sortby added in v0.0.2

func (FtSearchSummarizeLen) Timeout added in v0.0.54

func (c FtSearchSummarizeLen) Timeout(timeout int64) FtSearchTimeout

type FtSearchSummarizeSeparator added in v0.0.2

type FtSearchSummarizeSeparator Completed

func (FtSearchSummarizeSeparator) Build added in v0.0.2

func (FtSearchSummarizeSeparator) Dialect added in v0.0.43

func (FtSearchSummarizeSeparator) Expander added in v0.0.2

func (c FtSearchSummarizeSeparator) Expander(expander string) FtSearchExpander

func (FtSearchSummarizeSeparator) Explainscore added in v0.0.2

func (FtSearchSummarizeSeparator) Highlight added in v0.0.2

func (FtSearchSummarizeSeparator) Inorder added in v0.0.2

func (FtSearchSummarizeSeparator) Language added in v0.0.2

func (c FtSearchSummarizeSeparator) Language(language string) FtSearchLanguage

func (FtSearchSummarizeSeparator) Limit added in v0.0.2

func (FtSearchSummarizeSeparator) Params added in v0.0.54

func (FtSearchSummarizeSeparator) Payload added in v0.0.2

func (FtSearchSummarizeSeparator) Scorer added in v0.0.2

func (FtSearchSummarizeSeparator) Slop added in v0.0.2

func (FtSearchSummarizeSeparator) Sortby added in v0.0.2

func (FtSearchSummarizeSeparator) Timeout added in v0.0.54

type FtSearchSummarizeSummarize added in v0.0.2

type FtSearchSummarizeSummarize Completed

func (FtSearchSummarizeSummarize) Build added in v0.0.2

func (FtSearchSummarizeSummarize) Dialect added in v0.0.43

func (FtSearchSummarizeSummarize) Expander added in v0.0.2

func (c FtSearchSummarizeSummarize) Expander(expander string) FtSearchExpander

func (FtSearchSummarizeSummarize) Explainscore added in v0.0.2

func (FtSearchSummarizeSummarize) Fields added in v0.0.2

func (FtSearchSummarizeSummarize) Frags added in v0.0.2

func (FtSearchSummarizeSummarize) Highlight added in v0.0.2

func (FtSearchSummarizeSummarize) Inorder added in v0.0.2

func (FtSearchSummarizeSummarize) Language added in v0.0.2

func (c FtSearchSummarizeSummarize) Language(language string) FtSearchLanguage

func (FtSearchSummarizeSummarize) Len added in v0.0.2

func (FtSearchSummarizeSummarize) Limit added in v0.0.2

func (FtSearchSummarizeSummarize) Params added in v0.0.54

func (FtSearchSummarizeSummarize) Payload added in v0.0.2

func (FtSearchSummarizeSummarize) Scorer added in v0.0.2

func (FtSearchSummarizeSummarize) Separator added in v0.0.2

func (FtSearchSummarizeSummarize) Slop added in v0.0.2

func (FtSearchSummarizeSummarize) Sortby added in v0.0.2

func (FtSearchSummarizeSummarize) Timeout added in v0.0.54

type FtSearchTagsInorder added in v0.0.2

type FtSearchTagsInorder Completed

func (FtSearchTagsInorder) Build added in v0.0.2

func (c FtSearchTagsInorder) Build() Completed

func (FtSearchTagsInorder) Dialect added in v0.0.43

func (c FtSearchTagsInorder) Dialect(dialect int64) FtSearchDialect

func (FtSearchTagsInorder) Expander added in v0.0.2

func (c FtSearchTagsInorder) Expander(expander string) FtSearchExpander

func (FtSearchTagsInorder) Explainscore added in v0.0.2

func (c FtSearchTagsInorder) Explainscore() FtSearchExplainscore

func (FtSearchTagsInorder) Language added in v0.0.2

func (c FtSearchTagsInorder) Language(language string) FtSearchLanguage

func (FtSearchTagsInorder) Limit added in v0.0.2

func (FtSearchTagsInorder) Params added in v0.0.54

func (FtSearchTagsInorder) Payload added in v0.0.2

func (c FtSearchTagsInorder) Payload(payload string) FtSearchPayload

func (FtSearchTagsInorder) Scorer added in v0.0.2

func (c FtSearchTagsInorder) Scorer(scorer string) FtSearchScorer

func (FtSearchTagsInorder) Sortby added in v0.0.2

type FtSearchTimeout added in v0.0.54

type FtSearchTimeout Completed

func (FtSearchTimeout) Build added in v0.0.54

func (c FtSearchTimeout) Build() Completed

func (FtSearchTimeout) Dialect added in v0.0.54

func (c FtSearchTimeout) Dialect(dialect int64) FtSearchDialect

func (FtSearchTimeout) Expander added in v0.0.54

func (c FtSearchTimeout) Expander(expander string) FtSearchExpander

func (FtSearchTimeout) Explainscore added in v0.0.54

func (c FtSearchTimeout) Explainscore() FtSearchExplainscore

func (FtSearchTimeout) Inorder added in v0.0.54

func (FtSearchTimeout) Language added in v0.0.54

func (c FtSearchTimeout) Language(language string) FtSearchLanguage

func (FtSearchTimeout) Limit added in v0.0.54

func (FtSearchTimeout) Params added in v0.0.54

func (FtSearchTimeout) Payload added in v0.0.54

func (c FtSearchTimeout) Payload(payload string) FtSearchPayload

func (FtSearchTimeout) Scorer added in v0.0.54

func (c FtSearchTimeout) Scorer(scorer string) FtSearchScorer

func (FtSearchTimeout) Sortby added in v0.0.54

func (c FtSearchTimeout) Sortby(sortby string) FtSearchSortbySortby

type FtSearchVerbatim added in v0.0.2

type FtSearchVerbatim Completed

func (FtSearchVerbatim) Build added in v0.0.2

func (c FtSearchVerbatim) Build() Completed

func (FtSearchVerbatim) Dialect added in v0.0.43

func (c FtSearchVerbatim) Dialect(dialect int64) FtSearchDialect

func (FtSearchVerbatim) Expander added in v0.0.2

func (c FtSearchVerbatim) Expander(expander string) FtSearchExpander

func (FtSearchVerbatim) Explainscore added in v0.0.2

func (c FtSearchVerbatim) Explainscore() FtSearchExplainscore

func (FtSearchVerbatim) Filter added in v0.0.2

func (c FtSearchVerbatim) Filter(numericField string) FtSearchFilterFilter

func (FtSearchVerbatim) Geofilter added in v0.0.2

func (c FtSearchVerbatim) Geofilter(geoField string) FtSearchGeoFilterGeofilter

func (FtSearchVerbatim) Highlight added in v0.0.2

func (FtSearchVerbatim) Infields added in v0.0.2

func (FtSearchVerbatim) Inkeys added in v0.0.2

func (FtSearchVerbatim) Inorder added in v0.0.2

func (FtSearchVerbatim) Language added in v0.0.2

func (c FtSearchVerbatim) Language(language string) FtSearchLanguage

func (FtSearchVerbatim) Limit added in v0.0.2

func (FtSearchVerbatim) Nostopwords added in v0.0.2

func (c FtSearchVerbatim) Nostopwords() FtSearchNostopwords

func (FtSearchVerbatim) Params added in v0.0.54

func (FtSearchVerbatim) Payload added in v0.0.2

func (c FtSearchVerbatim) Payload(payload string) FtSearchPayload

func (FtSearchVerbatim) Return added in v0.0.2

func (FtSearchVerbatim) Scorer added in v0.0.2

func (c FtSearchVerbatim) Scorer(scorer string) FtSearchScorer

func (FtSearchVerbatim) Slop added in v0.0.2

func (c FtSearchVerbatim) Slop(slop int64) FtSearchSlop

func (FtSearchVerbatim) Sortby added in v0.0.2

func (c FtSearchVerbatim) Sortby(sortby string) FtSearchSortbySortby

func (FtSearchVerbatim) Summarize added in v0.0.2

func (FtSearchVerbatim) Timeout added in v0.0.54

func (c FtSearchVerbatim) Timeout(timeout int64) FtSearchTimeout

func (FtSearchVerbatim) Withpayloads added in v0.0.2

func (c FtSearchVerbatim) Withpayloads() FtSearchWithpayloads

func (FtSearchVerbatim) Withscores added in v0.0.2

func (c FtSearchVerbatim) Withscores() FtSearchWithscores

func (FtSearchVerbatim) Withsortkeys added in v0.0.2

func (c FtSearchVerbatim) Withsortkeys() FtSearchWithsortkeys

type FtSearchWithpayloads added in v0.0.2

type FtSearchWithpayloads Completed

func (FtSearchWithpayloads) Build added in v0.0.2

func (c FtSearchWithpayloads) Build() Completed

func (FtSearchWithpayloads) Dialect added in v0.0.43

func (c FtSearchWithpayloads) Dialect(dialect int64) FtSearchDialect

func (FtSearchWithpayloads) Expander added in v0.0.2

func (c FtSearchWithpayloads) Expander(expander string) FtSearchExpander

func (FtSearchWithpayloads) Explainscore added in v0.0.2

func (c FtSearchWithpayloads) Explainscore() FtSearchExplainscore

func (FtSearchWithpayloads) Filter added in v0.0.2

func (c FtSearchWithpayloads) Filter(numericField string) FtSearchFilterFilter

func (FtSearchWithpayloads) Geofilter added in v0.0.2

func (FtSearchWithpayloads) Highlight added in v0.0.2

func (FtSearchWithpayloads) Infields added in v0.0.2

func (FtSearchWithpayloads) Inkeys added in v0.0.2

func (FtSearchWithpayloads) Inorder added in v0.0.2

func (FtSearchWithpayloads) Language added in v0.0.2

func (c FtSearchWithpayloads) Language(language string) FtSearchLanguage

func (FtSearchWithpayloads) Limit added in v0.0.2

func (FtSearchWithpayloads) Params added in v0.0.54

func (FtSearchWithpayloads) Payload added in v0.0.2

func (c FtSearchWithpayloads) Payload(payload string) FtSearchPayload

func (FtSearchWithpayloads) Return added in v0.0.2

func (FtSearchWithpayloads) Scorer added in v0.0.2

func (c FtSearchWithpayloads) Scorer(scorer string) FtSearchScorer

func (FtSearchWithpayloads) Slop added in v0.0.2

func (FtSearchWithpayloads) Sortby added in v0.0.2

func (FtSearchWithpayloads) Summarize added in v0.0.2

func (FtSearchWithpayloads) Timeout added in v0.0.54

func (c FtSearchWithpayloads) Timeout(timeout int64) FtSearchTimeout

func (FtSearchWithpayloads) Withsortkeys added in v0.0.2

func (c FtSearchWithpayloads) Withsortkeys() FtSearchWithsortkeys

type FtSearchWithscores added in v0.0.2

type FtSearchWithscores Completed

func (FtSearchWithscores) Build added in v0.0.2

func (c FtSearchWithscores) Build() Completed

func (FtSearchWithscores) Dialect added in v0.0.43

func (c FtSearchWithscores) Dialect(dialect int64) FtSearchDialect

func (FtSearchWithscores) Expander added in v0.0.2

func (c FtSearchWithscores) Expander(expander string) FtSearchExpander

func (FtSearchWithscores) Explainscore added in v0.0.2

func (c FtSearchWithscores) Explainscore() FtSearchExplainscore

func (FtSearchWithscores) Filter added in v0.0.2

func (c FtSearchWithscores) Filter(numericField string) FtSearchFilterFilter

func (FtSearchWithscores) Geofilter added in v0.0.2

func (FtSearchWithscores) Highlight added in v0.0.2

func (FtSearchWithscores) Infields added in v0.0.2

func (FtSearchWithscores) Inkeys added in v0.0.2

func (FtSearchWithscores) Inorder added in v0.0.2

func (FtSearchWithscores) Language added in v0.0.2

func (c FtSearchWithscores) Language(language string) FtSearchLanguage

func (FtSearchWithscores) Limit added in v0.0.2

func (FtSearchWithscores) Params added in v0.0.54

func (FtSearchWithscores) Payload added in v0.0.2

func (c FtSearchWithscores) Payload(payload string) FtSearchPayload

func (FtSearchWithscores) Return added in v0.0.2

func (FtSearchWithscores) Scorer added in v0.0.2

func (c FtSearchWithscores) Scorer(scorer string) FtSearchScorer

func (FtSearchWithscores) Slop added in v0.0.2

func (c FtSearchWithscores) Slop(slop int64) FtSearchSlop

func (FtSearchWithscores) Sortby added in v0.0.2

func (FtSearchWithscores) Summarize added in v0.0.2

func (FtSearchWithscores) Timeout added in v0.0.54

func (c FtSearchWithscores) Timeout(timeout int64) FtSearchTimeout

func (FtSearchWithscores) Withpayloads added in v0.0.2

func (c FtSearchWithscores) Withpayloads() FtSearchWithpayloads

func (FtSearchWithscores) Withsortkeys added in v0.0.2

func (c FtSearchWithscores) Withsortkeys() FtSearchWithsortkeys

type FtSearchWithsortkeys added in v0.0.2

type FtSearchWithsortkeys Completed

func (FtSearchWithsortkeys) Build added in v0.0.2

func (c FtSearchWithsortkeys) Build() Completed

func (FtSearchWithsortkeys) Dialect added in v0.0.43

func (c FtSearchWithsortkeys) Dialect(dialect int64) FtSearchDialect

func (FtSearchWithsortkeys) Expander added in v0.0.2

func (c FtSearchWithsortkeys) Expander(expander string) FtSearchExpander

func (FtSearchWithsortkeys) Explainscore added in v0.0.2

func (c FtSearchWithsortkeys) Explainscore() FtSearchExplainscore

func (FtSearchWithsortkeys) Filter added in v0.0.2

func (c FtSearchWithsortkeys) Filter(numericField string) FtSearchFilterFilter

func (FtSearchWithsortkeys) Geofilter added in v0.0.2

func (FtSearchWithsortkeys) Highlight added in v0.0.2

func (FtSearchWithsortkeys) Infields added in v0.0.2

func (FtSearchWithsortkeys) Inkeys added in v0.0.2

func (FtSearchWithsortkeys) Inorder added in v0.0.2

func (FtSearchWithsortkeys) Language added in v0.0.2

func (c FtSearchWithsortkeys) Language(language string) FtSearchLanguage

func (FtSearchWithsortkeys) Limit added in v0.0.2

func (FtSearchWithsortkeys) Params added in v0.0.54

func (FtSearchWithsortkeys) Payload added in v0.0.2

func (c FtSearchWithsortkeys) Payload(payload string) FtSearchPayload

func (FtSearchWithsortkeys) Return added in v0.0.2

func (FtSearchWithsortkeys) Scorer added in v0.0.2

func (c FtSearchWithsortkeys) Scorer(scorer string) FtSearchScorer

func (FtSearchWithsortkeys) Slop added in v0.0.2

func (FtSearchWithsortkeys) Sortby added in v0.0.2

func (FtSearchWithsortkeys) Summarize added in v0.0.2

func (FtSearchWithsortkeys) Timeout added in v0.0.54

func (c FtSearchWithsortkeys) Timeout(timeout int64) FtSearchTimeout

type FtSpellcheck added in v0.0.2

type FtSpellcheck Completed

func (FtSpellcheck) Index added in v0.0.2

func (c FtSpellcheck) Index(index string) FtSpellcheckIndex

type FtSpellcheckDialect added in v0.0.43

type FtSpellcheckDialect Completed

func (FtSpellcheckDialect) Build added in v0.0.43

func (c FtSpellcheckDialect) Build() Completed

type FtSpellcheckDistance added in v0.0.2

type FtSpellcheckDistance Completed

func (FtSpellcheckDistance) Build added in v0.0.2

func (c FtSpellcheckDistance) Build() Completed

func (FtSpellcheckDistance) Dialect added in v0.0.43

func (c FtSpellcheckDistance) Dialect(dialect int64) FtSpellcheckDialect

func (FtSpellcheckDistance) TermsExclude added in v0.0.2

func (FtSpellcheckDistance) TermsInclude added in v0.0.2

type FtSpellcheckIndex added in v0.0.2

type FtSpellcheckIndex Completed

func (FtSpellcheckIndex) Query added in v0.0.2

type FtSpellcheckQuery added in v0.0.2

type FtSpellcheckQuery Completed

func (FtSpellcheckQuery) Build added in v0.0.2

func (c FtSpellcheckQuery) Build() Completed

func (FtSpellcheckQuery) Dialect added in v0.0.43

func (c FtSpellcheckQuery) Dialect(dialect int64) FtSpellcheckDialect

func (FtSpellcheckQuery) Distance added in v0.0.2

func (c FtSpellcheckQuery) Distance(distance int64) FtSpellcheckDistance

func (FtSpellcheckQuery) TermsExclude added in v0.0.2

func (FtSpellcheckQuery) TermsInclude added in v0.0.2

type FtSpellcheckTermsDictionary added in v0.0.2

type FtSpellcheckTermsDictionary Completed

func (FtSpellcheckTermsDictionary) Build added in v0.0.2

func (FtSpellcheckTermsDictionary) Dialect added in v0.0.43

func (FtSpellcheckTermsDictionary) Terms added in v0.0.2

type FtSpellcheckTermsTerms added in v0.0.2

type FtSpellcheckTermsTerms Completed

func (FtSpellcheckTermsTerms) Build added in v0.0.2

func (FtSpellcheckTermsTerms) Dialect added in v0.0.43

func (FtSpellcheckTermsTerms) Terms added in v0.0.2

type FtSpellcheckTermsTermsExclude added in v0.0.2

type FtSpellcheckTermsTermsExclude Completed

func (FtSpellcheckTermsTermsExclude) Dictionary added in v0.0.2

type FtSpellcheckTermsTermsInclude added in v0.0.2

type FtSpellcheckTermsTermsInclude Completed

func (FtSpellcheckTermsTermsInclude) Dictionary added in v0.0.2

type FtSugadd added in v0.0.2

type FtSugadd Completed

func (FtSugadd) Key added in v0.0.2

func (c FtSugadd) Key(key string) FtSugaddKey

type FtSugaddIncrementScoreIncr added in v0.0.2

type FtSugaddIncrementScoreIncr Completed

func (FtSugaddIncrementScoreIncr) Build added in v0.0.2

func (FtSugaddIncrementScoreIncr) Payload added in v0.0.2

type FtSugaddKey added in v0.0.2

type FtSugaddKey Completed

func (FtSugaddKey) String added in v0.0.2

func (c FtSugaddKey) String(string string) FtSugaddString

type FtSugaddPayload added in v0.0.2

type FtSugaddPayload Completed

func (FtSugaddPayload) Build added in v0.0.2

func (c FtSugaddPayload) Build() Completed

type FtSugaddScore added in v0.0.2

type FtSugaddScore Completed

func (FtSugaddScore) Build added in v0.0.2

func (c FtSugaddScore) Build() Completed

func (FtSugaddScore) Incr added in v0.0.2

func (FtSugaddScore) Payload added in v0.0.2

func (c FtSugaddScore) Payload(payload string) FtSugaddPayload

type FtSugaddString added in v0.0.2

type FtSugaddString Completed

func (FtSugaddString) Score added in v0.0.2

func (c FtSugaddString) Score(score float64) FtSugaddScore

type FtSugdel added in v0.0.2

type FtSugdel Completed

func (FtSugdel) Key added in v0.0.2

func (c FtSugdel) Key(key string) FtSugdelKey

type FtSugdelKey added in v0.0.2

type FtSugdelKey Completed

func (FtSugdelKey) String added in v0.0.2

func (c FtSugdelKey) String(string string) FtSugdelString

type FtSugdelString added in v0.0.2

type FtSugdelString Completed

func (FtSugdelString) Build added in v0.0.2

func (c FtSugdelString) Build() Completed

type FtSugget added in v0.0.2

type FtSugget Completed

func (FtSugget) Key added in v0.0.2

func (c FtSugget) Key(key string) FtSuggetKey

type FtSuggetFuzzy added in v0.0.2

type FtSuggetFuzzy Completed

func (FtSuggetFuzzy) Build added in v0.0.2

func (c FtSuggetFuzzy) Build() Completed

func (FtSuggetFuzzy) Max added in v0.0.2

func (c FtSuggetFuzzy) Max(max int64) FtSuggetMax

func (FtSuggetFuzzy) Withpayloads added in v0.0.2

func (c FtSuggetFuzzy) Withpayloads() FtSuggetWithpayloads

func (FtSuggetFuzzy) Withscores added in v0.0.2

func (c FtSuggetFuzzy) Withscores() FtSuggetWithscores

type FtSuggetKey added in v0.0.2

type FtSuggetKey Completed

func (FtSuggetKey) Prefix added in v0.0.2

func (c FtSuggetKey) Prefix(prefix string) FtSuggetPrefix

type FtSuggetMax added in v0.0.2

type FtSuggetMax Completed

func (FtSuggetMax) Build added in v0.0.2

func (c FtSuggetMax) Build() Completed

type FtSuggetPrefix added in v0.0.2

type FtSuggetPrefix Completed

func (FtSuggetPrefix) Build added in v0.0.2

func (c FtSuggetPrefix) Build() Completed

func (FtSuggetPrefix) Fuzzy added in v0.0.2

func (c FtSuggetPrefix) Fuzzy() FtSuggetFuzzy

func (FtSuggetPrefix) Max added in v0.0.2

func (c FtSuggetPrefix) Max(max int64) FtSuggetMax

func (FtSuggetPrefix) Withpayloads added in v0.0.2

func (c FtSuggetPrefix) Withpayloads() FtSuggetWithpayloads

func (FtSuggetPrefix) Withscores added in v0.0.2

func (c FtSuggetPrefix) Withscores() FtSuggetWithscores

type FtSuggetWithpayloads added in v0.0.2

type FtSuggetWithpayloads Completed

func (FtSuggetWithpayloads) Build added in v0.0.2

func (c FtSuggetWithpayloads) Build() Completed

func (FtSuggetWithpayloads) Max added in v0.0.2

type FtSuggetWithscores added in v0.0.2

type FtSuggetWithscores Completed

func (FtSuggetWithscores) Build added in v0.0.2

func (c FtSuggetWithscores) Build() Completed

func (FtSuggetWithscores) Max added in v0.0.2

func (FtSuggetWithscores) Withpayloads added in v0.0.2

func (c FtSuggetWithscores) Withpayloads() FtSuggetWithpayloads

type FtSuglen added in v0.0.2

type FtSuglen Completed

func (FtSuglen) Key added in v0.0.2

func (c FtSuglen) Key(key string) FtSuglenKey

type FtSuglenKey added in v0.0.2

type FtSuglenKey Completed

func (FtSuglenKey) Build added in v0.0.2

func (c FtSuglenKey) Build() Completed

type FtSyndump added in v0.0.2

type FtSyndump Completed

func (FtSyndump) Index added in v0.0.2

func (c FtSyndump) Index(index string) FtSyndumpIndex

type FtSyndumpIndex added in v0.0.2

type FtSyndumpIndex Completed

func (FtSyndumpIndex) Build added in v0.0.2

func (c FtSyndumpIndex) Build() Completed

type FtSynupdate added in v0.0.2

type FtSynupdate Completed

func (FtSynupdate) Index added in v0.0.2

func (c FtSynupdate) Index(index string) FtSynupdateIndex

type FtSynupdateIndex added in v0.0.2

type FtSynupdateIndex Completed

func (FtSynupdateIndex) SynonymGroupId added in v0.0.2

func (c FtSynupdateIndex) SynonymGroupId(synonymGroupId string) FtSynupdateSynonymGroupId

type FtSynupdateSkipinitialscan added in v0.0.2

type FtSynupdateSkipinitialscan Completed

func (FtSynupdateSkipinitialscan) Term added in v0.0.2

type FtSynupdateSynonymGroupId added in v0.0.2

type FtSynupdateSynonymGroupId Completed

func (FtSynupdateSynonymGroupId) Skipinitialscan added in v0.0.2

func (FtSynupdateSynonymGroupId) Term added in v0.0.2

type FtSynupdateTerm added in v0.0.2

type FtSynupdateTerm Completed

func (FtSynupdateTerm) Build added in v0.0.2

func (c FtSynupdateTerm) Build() Completed

func (FtSynupdateTerm) Term added in v0.0.2

func (c FtSynupdateTerm) Term(term ...string) FtSynupdateTerm

type FtTagvals added in v0.0.2

type FtTagvals Completed

func (FtTagvals) Index added in v0.0.2

func (c FtTagvals) Index(index string) FtTagvalsIndex

type FtTagvalsFieldName added in v0.0.2

type FtTagvalsFieldName Completed

func (FtTagvalsFieldName) Build added in v0.0.2

func (c FtTagvalsFieldName) Build() Completed

type FtTagvalsIndex added in v0.0.2

type FtTagvalsIndex Completed

func (FtTagvalsIndex) FieldName added in v0.0.2

func (c FtTagvalsIndex) FieldName(fieldName string) FtTagvalsFieldName

type FunctionDelete added in v0.0.34

type FunctionDelete Completed

func (FunctionDelete) LibraryName added in v0.0.55

func (c FunctionDelete) LibraryName(libraryName string) FunctionDeleteLibraryName

type FunctionDeleteLibraryName added in v0.0.55

type FunctionDeleteLibraryName Completed

func (FunctionDeleteLibraryName) Build added in v0.0.55

type FunctionDump added in v0.0.34

type FunctionDump Completed

func (FunctionDump) Build added in v0.0.34

func (c FunctionDump) Build() Completed

type FunctionFlush added in v0.0.34

type FunctionFlush Completed

func (FunctionFlush) Async added in v0.0.34

func (FunctionFlush) Build added in v0.0.34

func (c FunctionFlush) Build() Completed

func (FunctionFlush) Sync added in v0.0.34

type FunctionFlushAsync added in v0.0.34

type FunctionFlushAsync Completed

func (FunctionFlushAsync) Build added in v0.0.34

func (c FunctionFlushAsync) Build() Completed

type FunctionFlushAsyncSync added in v0.0.34

type FunctionFlushAsyncSync Completed

func (FunctionFlushAsyncSync) Build added in v0.0.34

type FunctionHelp added in v0.0.34

type FunctionHelp Completed

func (FunctionHelp) Build added in v0.0.34

func (c FunctionHelp) Build() Completed

type FunctionKill added in v0.0.34

type FunctionKill Completed

func (FunctionKill) Build added in v0.0.34

func (c FunctionKill) Build() Completed

type FunctionList added in v0.0.34

type FunctionList Completed

func (FunctionList) Build added in v0.0.34

func (c FunctionList) Build() Completed

func (FunctionList) Libraryname added in v0.0.34

func (c FunctionList) Libraryname(libraryNamePattern string) FunctionListLibraryname

func (FunctionList) Withcode added in v0.0.34

func (c FunctionList) Withcode() FunctionListWithcode

type FunctionListLibraryname added in v0.0.34

type FunctionListLibraryname Completed

func (FunctionListLibraryname) Build added in v0.0.34

func (FunctionListLibraryname) Withcode added in v0.0.34

type FunctionListWithcode added in v0.0.34

type FunctionListWithcode Completed

func (FunctionListWithcode) Build added in v0.0.34

func (c FunctionListWithcode) Build() Completed

type FunctionLoad added in v0.0.34

type FunctionLoad Completed

func (FunctionLoad) FunctionCode added in v0.0.42

func (c FunctionLoad) FunctionCode(functionCode string) FunctionLoadFunctionCode

func (FunctionLoad) Replace added in v0.0.42

func (c FunctionLoad) Replace() FunctionLoadReplace

type FunctionLoadFunctionCode added in v0.0.34

type FunctionLoadFunctionCode Completed

func (FunctionLoadFunctionCode) Build added in v0.0.34

type FunctionLoadReplace added in v0.0.34

type FunctionLoadReplace Completed

func (FunctionLoadReplace) FunctionCode added in v0.0.34

func (c FunctionLoadReplace) FunctionCode(functionCode string) FunctionLoadFunctionCode

type FunctionRestore added in v0.0.34

type FunctionRestore Completed

func (FunctionRestore) SerializedValue added in v0.0.34

func (c FunctionRestore) SerializedValue(serializedValue string) FunctionRestoreSerializedValue

type FunctionRestorePolicyAppend added in v0.0.34

type FunctionRestorePolicyAppend Completed

func (FunctionRestorePolicyAppend) Build added in v0.0.34

type FunctionRestorePolicyFlush added in v0.0.34

type FunctionRestorePolicyFlush Completed

func (FunctionRestorePolicyFlush) Build added in v0.0.34

type FunctionRestorePolicyReplace added in v0.0.34

type FunctionRestorePolicyReplace Completed

func (FunctionRestorePolicyReplace) Build added in v0.0.34

type FunctionRestoreSerializedValue added in v0.0.34

type FunctionRestoreSerializedValue Completed

func (FunctionRestoreSerializedValue) Append added in v0.0.34

func (FunctionRestoreSerializedValue) Build added in v0.0.34

func (FunctionRestoreSerializedValue) Flush added in v0.0.34

func (FunctionRestoreSerializedValue) Replace added in v0.0.34

type FunctionStats added in v0.0.34

type FunctionStats Completed

func (FunctionStats) Build added in v0.0.34

func (c FunctionStats) Build() Completed

type Geoadd

type Geoadd Completed

func (Geoadd) Key

func (c Geoadd) Key(key string) GeoaddKey

type GeoaddChangeCh

type GeoaddChangeCh Completed

func (GeoaddChangeCh) LongitudeLatitudeMember

func (c GeoaddChangeCh) LongitudeLatitudeMember() GeoaddLongitudeLatitudeMember

type GeoaddConditionNx

type GeoaddConditionNx Completed

func (GeoaddConditionNx) Ch

func (GeoaddConditionNx) LongitudeLatitudeMember

func (c GeoaddConditionNx) LongitudeLatitudeMember() GeoaddLongitudeLatitudeMember

type GeoaddConditionXx

type GeoaddConditionXx Completed

func (GeoaddConditionXx) Ch

func (GeoaddConditionXx) LongitudeLatitudeMember

func (c GeoaddConditionXx) LongitudeLatitudeMember() GeoaddLongitudeLatitudeMember

type GeoaddKey

type GeoaddKey Completed

func (GeoaddKey) Ch

func (c GeoaddKey) Ch() GeoaddChangeCh

func (GeoaddKey) LongitudeLatitudeMember

func (c GeoaddKey) LongitudeLatitudeMember() GeoaddLongitudeLatitudeMember

func (GeoaddKey) Nx

func (GeoaddKey) Xx

type GeoaddLongitudeLatitudeMember

type GeoaddLongitudeLatitudeMember Completed

func (GeoaddLongitudeLatitudeMember) Build

func (GeoaddLongitudeLatitudeMember) LongitudeLatitudeMember

func (c GeoaddLongitudeLatitudeMember) LongitudeLatitudeMember(longitude float64, latitude float64, member string) GeoaddLongitudeLatitudeMember

type Geodist

type Geodist Completed

func (Geodist) Key

func (c Geodist) Key(key string) GeodistKey

type GeodistKey

type GeodistKey Completed

func (GeodistKey) Member1

func (c GeodistKey) Member1(member1 string) GeodistMember1

type GeodistMember1

type GeodistMember1 Completed

func (GeodistMember1) Member2

func (c GeodistMember1) Member2(member2 string) GeodistMember2

type GeodistMember2

type GeodistMember2 Completed

func (GeodistMember2) Build

func (c GeodistMember2) Build() Completed

func (GeodistMember2) Cache

func (c GeodistMember2) Cache() Cacheable

func (GeodistMember2) Ft

func (GeodistMember2) Km

func (GeodistMember2) M

func (GeodistMember2) Mi

type GeodistUnitFt

type GeodistUnitFt Completed

func (GeodistUnitFt) Build

func (c GeodistUnitFt) Build() Completed

func (GeodistUnitFt) Cache

func (c GeodistUnitFt) Cache() Cacheable

type GeodistUnitKm

type GeodistUnitKm Completed

func (GeodistUnitKm) Build

func (c GeodistUnitKm) Build() Completed

func (GeodistUnitKm) Cache

func (c GeodistUnitKm) Cache() Cacheable

type GeodistUnitM

type GeodistUnitM Completed

func (GeodistUnitM) Build

func (c GeodistUnitM) Build() Completed

func (GeodistUnitM) Cache

func (c GeodistUnitM) Cache() Cacheable

type GeodistUnitMi

type GeodistUnitMi Completed

func (GeodistUnitMi) Build

func (c GeodistUnitMi) Build() Completed

func (GeodistUnitMi) Cache

func (c GeodistUnitMi) Cache() Cacheable

type Geohash

type Geohash Completed

func (Geohash) Key

func (c Geohash) Key(key string) GeohashKey

type GeohashKey

type GeohashKey Completed

func (GeohashKey) Build added in v0.0.95

func (c GeohashKey) Build() Completed

func (GeohashKey) Cache added in v0.0.95

func (c GeohashKey) Cache() Cacheable

func (GeohashKey) Member

func (c GeohashKey) Member(member ...string) GeohashMember

type GeohashMember

type GeohashMember Completed

func (GeohashMember) Build

func (c GeohashMember) Build() Completed

func (GeohashMember) Cache

func (c GeohashMember) Cache() Cacheable

func (GeohashMember) Member

func (c GeohashMember) Member(member ...string) GeohashMember

type Geopos

type Geopos Completed

func (Geopos) Key

func (c Geopos) Key(key string) GeoposKey

type GeoposKey

type GeoposKey Completed

func (GeoposKey) Build added in v0.0.95

func (c GeoposKey) Build() Completed

func (GeoposKey) Cache added in v0.0.95

func (c GeoposKey) Cache() Cacheable

func (GeoposKey) Member

func (c GeoposKey) Member(member ...string) GeoposMember

type GeoposMember

type GeoposMember Completed

func (GeoposMember) Build

func (c GeoposMember) Build() Completed

func (GeoposMember) Cache

func (c GeoposMember) Cache() Cacheable

func (GeoposMember) Member

func (c GeoposMember) Member(member ...string) GeoposMember

type Georadius

type Georadius Completed

func (Georadius) Key

func (c Georadius) Key(key string) GeoradiusKey

type GeoradiusCountAny added in v0.0.2

type GeoradiusCountAny Completed

func (GeoradiusCountAny) Asc added in v0.0.2

func (GeoradiusCountAny) Build added in v0.0.2

func (c GeoradiusCountAny) Build() Completed

func (GeoradiusCountAny) Desc added in v0.0.2

func (GeoradiusCountAny) Store added in v0.0.2

func (GeoradiusCountAny) Storedist added in v0.0.2

func (c GeoradiusCountAny) Storedist(key string) GeoradiusStoredist

type GeoradiusCountCount

type GeoradiusCountCount Completed

func (GeoradiusCountCount) Any

func (GeoradiusCountCount) Asc

func (GeoradiusCountCount) Build

func (c GeoradiusCountCount) Build() Completed

func (GeoradiusCountCount) Desc

func (GeoradiusCountCount) Store

func (GeoradiusCountCount) Storedist

type GeoradiusKey

type GeoradiusKey Completed

func (GeoradiusKey) Longitude

func (c GeoradiusKey) Longitude(longitude float64) GeoradiusLongitude

type GeoradiusLatitude

type GeoradiusLatitude Completed

func (GeoradiusLatitude) Radius

func (c GeoradiusLatitude) Radius(radius float64) GeoradiusRadius

type GeoradiusLongitude

type GeoradiusLongitude Completed

func (GeoradiusLongitude) Latitude

func (c GeoradiusLongitude) Latitude(latitude float64) GeoradiusLatitude

type GeoradiusOrderAsc

type GeoradiusOrderAsc Completed

func (GeoradiusOrderAsc) Build

func (c GeoradiusOrderAsc) Build() Completed

func (GeoradiusOrderAsc) Store

func (GeoradiusOrderAsc) Storedist

func (c GeoradiusOrderAsc) Storedist(key string) GeoradiusStoredist

type GeoradiusOrderDesc

type GeoradiusOrderDesc Completed

func (GeoradiusOrderDesc) Build

func (c GeoradiusOrderDesc) Build() Completed

func (GeoradiusOrderDesc) Store

func (GeoradiusOrderDesc) Storedist

func (c GeoradiusOrderDesc) Storedist(key string) GeoradiusStoredist

type GeoradiusRadius

type GeoradiusRadius Completed

func (GeoradiusRadius) Ft

func (GeoradiusRadius) Km

func (GeoradiusRadius) M

func (GeoradiusRadius) Mi

type GeoradiusRo

type GeoradiusRo Completed

func (GeoradiusRo) Key

func (c GeoradiusRo) Key(key string) GeoradiusRoKey

type GeoradiusRoCountAny added in v0.0.2

type GeoradiusRoCountAny Completed

func (GeoradiusRoCountAny) Asc added in v0.0.2

func (GeoradiusRoCountAny) Build added in v0.0.2

func (c GeoradiusRoCountAny) Build() Completed

func (GeoradiusRoCountAny) Cache added in v0.0.2

func (c GeoradiusRoCountAny) Cache() Cacheable

func (GeoradiusRoCountAny) Desc added in v0.0.2

type GeoradiusRoCountCount

type GeoradiusRoCountCount Completed

func (GeoradiusRoCountCount) Any

func (GeoradiusRoCountCount) Asc

func (GeoradiusRoCountCount) Build

func (c GeoradiusRoCountCount) Build() Completed

func (GeoradiusRoCountCount) Cache

func (c GeoradiusRoCountCount) Cache() Cacheable

func (GeoradiusRoCountCount) Desc

type GeoradiusRoKey

type GeoradiusRoKey Completed

func (GeoradiusRoKey) Longitude

func (c GeoradiusRoKey) Longitude(longitude float64) GeoradiusRoLongitude

type GeoradiusRoLatitude

type GeoradiusRoLatitude Completed

func (GeoradiusRoLatitude) Radius

type GeoradiusRoLongitude

type GeoradiusRoLongitude Completed

func (GeoradiusRoLongitude) Latitude

func (c GeoradiusRoLongitude) Latitude(latitude float64) GeoradiusRoLatitude

type GeoradiusRoOrderAsc

type GeoradiusRoOrderAsc Completed

func (GeoradiusRoOrderAsc) Build

func (c GeoradiusRoOrderAsc) Build() Completed

func (GeoradiusRoOrderAsc) Cache

func (c GeoradiusRoOrderAsc) Cache() Cacheable

type GeoradiusRoOrderDesc

type GeoradiusRoOrderDesc Completed

func (GeoradiusRoOrderDesc) Build

func (c GeoradiusRoOrderDesc) Build() Completed

func (GeoradiusRoOrderDesc) Cache

func (c GeoradiusRoOrderDesc) Cache() Cacheable

type GeoradiusRoRadius

type GeoradiusRoRadius Completed

func (GeoradiusRoRadius) Ft

func (GeoradiusRoRadius) Km

func (GeoradiusRoRadius) M

func (GeoradiusRoRadius) Mi

type GeoradiusRoUnitFt

type GeoradiusRoUnitFt Completed

func (GeoradiusRoUnitFt) Asc

func (GeoradiusRoUnitFt) Build

func (c GeoradiusRoUnitFt) Build() Completed

func (GeoradiusRoUnitFt) Cache

func (c GeoradiusRoUnitFt) Cache() Cacheable

func (GeoradiusRoUnitFt) Count

func (GeoradiusRoUnitFt) Desc

func (GeoradiusRoUnitFt) Withcoord

func (GeoradiusRoUnitFt) Withdist

func (GeoradiusRoUnitFt) Withhash

type GeoradiusRoUnitKm

type GeoradiusRoUnitKm Completed

func (GeoradiusRoUnitKm) Asc

func (GeoradiusRoUnitKm) Build

func (c GeoradiusRoUnitKm) Build() Completed

func (GeoradiusRoUnitKm) Cache

func (c GeoradiusRoUnitKm) Cache() Cacheable

func (GeoradiusRoUnitKm) Count

func (GeoradiusRoUnitKm) Desc

func (GeoradiusRoUnitKm) Withcoord

func (GeoradiusRoUnitKm) Withdist

func (GeoradiusRoUnitKm) Withhash

type GeoradiusRoUnitM

type GeoradiusRoUnitM Completed

func (GeoradiusRoUnitM) Asc

func (GeoradiusRoUnitM) Build

func (c GeoradiusRoUnitM) Build() Completed

func (GeoradiusRoUnitM) Cache

func (c GeoradiusRoUnitM) Cache() Cacheable

func (GeoradiusRoUnitM) Count

func (GeoradiusRoUnitM) Desc

func (GeoradiusRoUnitM) Withcoord

func (c GeoradiusRoUnitM) Withcoord() GeoradiusRoWithcoord

func (GeoradiusRoUnitM) Withdist

func (GeoradiusRoUnitM) Withhash

type GeoradiusRoUnitMi

type GeoradiusRoUnitMi Completed

func (GeoradiusRoUnitMi) Asc

func (GeoradiusRoUnitMi) Build

func (c GeoradiusRoUnitMi) Build() Completed

func (GeoradiusRoUnitMi) Cache

func (c GeoradiusRoUnitMi) Cache() Cacheable

func (GeoradiusRoUnitMi) Count

func (GeoradiusRoUnitMi) Desc

func (GeoradiusRoUnitMi) Withcoord

func (GeoradiusRoUnitMi) Withdist

func (GeoradiusRoUnitMi) Withhash

type GeoradiusRoWithcoord added in v0.0.2

type GeoradiusRoWithcoord Completed

func (GeoradiusRoWithcoord) Asc added in v0.0.2

func (GeoradiusRoWithcoord) Build added in v0.0.2

func (c GeoradiusRoWithcoord) Build() Completed

func (GeoradiusRoWithcoord) Cache added in v0.0.2

func (c GeoradiusRoWithcoord) Cache() Cacheable

func (GeoradiusRoWithcoord) Count added in v0.0.2

func (GeoradiusRoWithcoord) Desc added in v0.0.2

func (GeoradiusRoWithcoord) Withdist added in v0.0.2

func (GeoradiusRoWithcoord) Withhash added in v0.0.2

type GeoradiusRoWithdist added in v0.0.2

type GeoradiusRoWithdist Completed

func (GeoradiusRoWithdist) Asc added in v0.0.2

func (GeoradiusRoWithdist) Build added in v0.0.2

func (c GeoradiusRoWithdist) Build() Completed

func (GeoradiusRoWithdist) Cache added in v0.0.2

func (c GeoradiusRoWithdist) Cache() Cacheable

func (GeoradiusRoWithdist) Count added in v0.0.2

func (GeoradiusRoWithdist) Desc added in v0.0.2

func (GeoradiusRoWithdist) Withhash added in v0.0.2

type GeoradiusRoWithhash added in v0.0.2

type GeoradiusRoWithhash Completed

func (GeoradiusRoWithhash) Asc added in v0.0.2

func (GeoradiusRoWithhash) Build added in v0.0.2

func (c GeoradiusRoWithhash) Build() Completed

func (GeoradiusRoWithhash) Cache added in v0.0.2

func (c GeoradiusRoWithhash) Cache() Cacheable

func (GeoradiusRoWithhash) Count added in v0.0.2

func (GeoradiusRoWithhash) Desc added in v0.0.2

type GeoradiusStore

type GeoradiusStore Completed

func (GeoradiusStore) Build

func (c GeoradiusStore) Build() Completed

func (GeoradiusStore) Storedist

func (c GeoradiusStore) Storedist(key string) GeoradiusStoredist

type GeoradiusStoredist

type GeoradiusStoredist Completed

func (GeoradiusStoredist) Build

func (c GeoradiusStoredist) Build() Completed

type GeoradiusUnitFt

type GeoradiusUnitFt Completed

func (GeoradiusUnitFt) Asc

func (GeoradiusUnitFt) Build

func (c GeoradiusUnitFt) Build() Completed

func (GeoradiusUnitFt) Count

func (c GeoradiusUnitFt) Count(count int64) GeoradiusCountCount

func (GeoradiusUnitFt) Desc

func (GeoradiusUnitFt) Store

func (c GeoradiusUnitFt) Store(key string) GeoradiusStore

func (GeoradiusUnitFt) Storedist

func (c GeoradiusUnitFt) Storedist(key string) GeoradiusStoredist

func (GeoradiusUnitFt) Withcoord

func (c GeoradiusUnitFt) Withcoord() GeoradiusWithcoord

func (GeoradiusUnitFt) Withdist

func (c GeoradiusUnitFt) Withdist() GeoradiusWithdist

func (GeoradiusUnitFt) Withhash

func (c GeoradiusUnitFt) Withhash() GeoradiusWithhash

type GeoradiusUnitKm

type GeoradiusUnitKm Completed

func (GeoradiusUnitKm) Asc

func (GeoradiusUnitKm) Build

func (c GeoradiusUnitKm) Build() Completed

func (GeoradiusUnitKm) Count

func (c GeoradiusUnitKm) Count(count int64) GeoradiusCountCount

func (GeoradiusUnitKm) Desc

func (GeoradiusUnitKm) Store

func (c GeoradiusUnitKm) Store(key string) GeoradiusStore

func (GeoradiusUnitKm) Storedist

func (c GeoradiusUnitKm) Storedist(key string) GeoradiusStoredist

func (GeoradiusUnitKm) Withcoord

func (c GeoradiusUnitKm) Withcoord() GeoradiusWithcoord

func (GeoradiusUnitKm) Withdist

func (c GeoradiusUnitKm) Withdist() GeoradiusWithdist

func (GeoradiusUnitKm) Withhash

func (c GeoradiusUnitKm) Withhash() GeoradiusWithhash

type GeoradiusUnitM

type GeoradiusUnitM Completed

func (GeoradiusUnitM) Asc

func (GeoradiusUnitM) Build

func (c GeoradiusUnitM) Build() Completed

func (GeoradiusUnitM) Count

func (c GeoradiusUnitM) Count(count int64) GeoradiusCountCount

func (GeoradiusUnitM) Desc

func (GeoradiusUnitM) Store

func (c GeoradiusUnitM) Store(key string) GeoradiusStore

func (GeoradiusUnitM) Storedist

func (c GeoradiusUnitM) Storedist(key string) GeoradiusStoredist

func (GeoradiusUnitM) Withcoord

func (c GeoradiusUnitM) Withcoord() GeoradiusWithcoord

func (GeoradiusUnitM) Withdist

func (c GeoradiusUnitM) Withdist() GeoradiusWithdist

func (GeoradiusUnitM) Withhash

func (c GeoradiusUnitM) Withhash() GeoradiusWithhash

type GeoradiusUnitMi

type GeoradiusUnitMi Completed

func (GeoradiusUnitMi) Asc

func (GeoradiusUnitMi) Build

func (c GeoradiusUnitMi) Build() Completed

func (GeoradiusUnitMi) Count

func (c GeoradiusUnitMi) Count(count int64) GeoradiusCountCount

func (GeoradiusUnitMi) Desc

func (GeoradiusUnitMi) Store

func (c GeoradiusUnitMi) Store(key string) GeoradiusStore

func (GeoradiusUnitMi) Storedist

func (c GeoradiusUnitMi) Storedist(key string) GeoradiusStoredist

func (GeoradiusUnitMi) Withcoord

func (c GeoradiusUnitMi) Withcoord() GeoradiusWithcoord

func (GeoradiusUnitMi) Withdist

func (c GeoradiusUnitMi) Withdist() GeoradiusWithdist

func (GeoradiusUnitMi) Withhash

func (c GeoradiusUnitMi) Withhash() GeoradiusWithhash

type GeoradiusWithcoord added in v0.0.2

type GeoradiusWithcoord Completed

func (GeoradiusWithcoord) Asc added in v0.0.2

func (GeoradiusWithcoord) Build added in v0.0.2

func (c GeoradiusWithcoord) Build() Completed

func (GeoradiusWithcoord) Count added in v0.0.2

func (GeoradiusWithcoord) Desc added in v0.0.2

func (GeoradiusWithcoord) Store added in v0.0.2

func (GeoradiusWithcoord) Storedist added in v0.0.2

func (c GeoradiusWithcoord) Storedist(key string) GeoradiusStoredist

func (GeoradiusWithcoord) Withdist added in v0.0.2

func (GeoradiusWithcoord) Withhash added in v0.0.2

type GeoradiusWithdist added in v0.0.2

type GeoradiusWithdist Completed

func (GeoradiusWithdist) Asc added in v0.0.2

func (GeoradiusWithdist) Build added in v0.0.2

func (c GeoradiusWithdist) Build() Completed

func (GeoradiusWithdist) Count added in v0.0.2

func (GeoradiusWithdist) Desc added in v0.0.2

func (GeoradiusWithdist) Store added in v0.0.2

func (GeoradiusWithdist) Storedist added in v0.0.2

func (c GeoradiusWithdist) Storedist(key string) GeoradiusStoredist

func (GeoradiusWithdist) Withhash added in v0.0.2

func (c GeoradiusWithdist) Withhash() GeoradiusWithhash

type GeoradiusWithhash added in v0.0.2

type GeoradiusWithhash Completed

func (GeoradiusWithhash) Asc added in v0.0.2

func (GeoradiusWithhash) Build added in v0.0.2

func (c GeoradiusWithhash) Build() Completed

func (GeoradiusWithhash) Count added in v0.0.2

func (GeoradiusWithhash) Desc added in v0.0.2

func (GeoradiusWithhash) Store added in v0.0.2

func (GeoradiusWithhash) Storedist added in v0.0.2

func (c GeoradiusWithhash) Storedist(key string) GeoradiusStoredist

type Georadiusbymember

type Georadiusbymember Completed

func (Georadiusbymember) Key

type GeoradiusbymemberCountAny added in v0.0.2

type GeoradiusbymemberCountAny Completed

func (GeoradiusbymemberCountAny) Asc added in v0.0.2

func (GeoradiusbymemberCountAny) Build added in v0.0.2

func (GeoradiusbymemberCountAny) Desc added in v0.0.2

func (GeoradiusbymemberCountAny) Store added in v0.0.2

func (GeoradiusbymemberCountAny) Storedist added in v0.0.2

type GeoradiusbymemberCountCount

type GeoradiusbymemberCountCount Completed

func (GeoradiusbymemberCountCount) Any

func (GeoradiusbymemberCountCount) Asc

func (GeoradiusbymemberCountCount) Build

func (GeoradiusbymemberCountCount) Desc

func (GeoradiusbymemberCountCount) Store

func (GeoradiusbymemberCountCount) Storedist

type GeoradiusbymemberKey

type GeoradiusbymemberKey Completed

func (GeoradiusbymemberKey) Member

type GeoradiusbymemberMember

type GeoradiusbymemberMember Completed

func (GeoradiusbymemberMember) Radius

type GeoradiusbymemberOrderAsc

type GeoradiusbymemberOrderAsc Completed

func (GeoradiusbymemberOrderAsc) Build

func (GeoradiusbymemberOrderAsc) Store

func (GeoradiusbymemberOrderAsc) Storedist

type GeoradiusbymemberOrderDesc

type GeoradiusbymemberOrderDesc Completed

func (GeoradiusbymemberOrderDesc) Build

func (GeoradiusbymemberOrderDesc) Store

func (GeoradiusbymemberOrderDesc) Storedist

type GeoradiusbymemberRadius

type GeoradiusbymemberRadius Completed

func (GeoradiusbymemberRadius) Ft

func (GeoradiusbymemberRadius) Km

func (GeoradiusbymemberRadius) M

func (GeoradiusbymemberRadius) Mi

type GeoradiusbymemberRo

type GeoradiusbymemberRo Completed

func (GeoradiusbymemberRo) Key

type GeoradiusbymemberRoCountAny added in v0.0.2

type GeoradiusbymemberRoCountAny Completed

func (GeoradiusbymemberRoCountAny) Asc added in v0.0.2

func (GeoradiusbymemberRoCountAny) Build added in v0.0.2

func (GeoradiusbymemberRoCountAny) Cache added in v0.0.2

func (GeoradiusbymemberRoCountAny) Desc added in v0.0.2

type GeoradiusbymemberRoCountCount

type GeoradiusbymemberRoCountCount Completed

func (GeoradiusbymemberRoCountCount) Any

func (GeoradiusbymemberRoCountCount) Asc

func (GeoradiusbymemberRoCountCount) Build

func (GeoradiusbymemberRoCountCount) Cache

func (GeoradiusbymemberRoCountCount) Desc

type GeoradiusbymemberRoKey

type GeoradiusbymemberRoKey Completed

func (GeoradiusbymemberRoKey) Member

type GeoradiusbymemberRoMember

type GeoradiusbymemberRoMember Completed

func (GeoradiusbymemberRoMember) Radius

type GeoradiusbymemberRoOrderAsc

type GeoradiusbymemberRoOrderAsc Completed

func (GeoradiusbymemberRoOrderAsc) Build

func (GeoradiusbymemberRoOrderAsc) Cache

type GeoradiusbymemberRoOrderDesc

type GeoradiusbymemberRoOrderDesc Completed

func (GeoradiusbymemberRoOrderDesc) Build

func (GeoradiusbymemberRoOrderDesc) Cache

type GeoradiusbymemberRoRadius

type GeoradiusbymemberRoRadius Completed

func (GeoradiusbymemberRoRadius) Ft

func (GeoradiusbymemberRoRadius) Km

func (GeoradiusbymemberRoRadius) M

func (GeoradiusbymemberRoRadius) Mi

type GeoradiusbymemberRoUnitFt

type GeoradiusbymemberRoUnitFt Completed

func (GeoradiusbymemberRoUnitFt) Asc

func (GeoradiusbymemberRoUnitFt) Build

func (GeoradiusbymemberRoUnitFt) Cache

func (GeoradiusbymemberRoUnitFt) Count

func (GeoradiusbymemberRoUnitFt) Desc

func (GeoradiusbymemberRoUnitFt) Withcoord

func (GeoradiusbymemberRoUnitFt) Withdist

func (GeoradiusbymemberRoUnitFt) Withhash

type GeoradiusbymemberRoUnitKm

type GeoradiusbymemberRoUnitKm Completed

func (GeoradiusbymemberRoUnitKm) Asc

func (GeoradiusbymemberRoUnitKm) Build

func (GeoradiusbymemberRoUnitKm) Cache

func (GeoradiusbymemberRoUnitKm) Count

func (GeoradiusbymemberRoUnitKm) Desc

func (GeoradiusbymemberRoUnitKm) Withcoord

func (GeoradiusbymemberRoUnitKm) Withdist

func (GeoradiusbymemberRoUnitKm) Withhash

type GeoradiusbymemberRoUnitM

type GeoradiusbymemberRoUnitM Completed

func (GeoradiusbymemberRoUnitM) Asc

func (GeoradiusbymemberRoUnitM) Build

func (GeoradiusbymemberRoUnitM) Cache

func (GeoradiusbymemberRoUnitM) Count

func (GeoradiusbymemberRoUnitM) Desc

func (GeoradiusbymemberRoUnitM) Withcoord

func (GeoradiusbymemberRoUnitM) Withdist

func (GeoradiusbymemberRoUnitM) Withhash

type GeoradiusbymemberRoUnitMi

type GeoradiusbymemberRoUnitMi Completed

func (GeoradiusbymemberRoUnitMi) Asc

func (GeoradiusbymemberRoUnitMi) Build

func (GeoradiusbymemberRoUnitMi) Cache

func (GeoradiusbymemberRoUnitMi) Count

func (GeoradiusbymemberRoUnitMi) Desc

func (GeoradiusbymemberRoUnitMi) Withcoord

func (GeoradiusbymemberRoUnitMi) Withdist

func (GeoradiusbymemberRoUnitMi) Withhash

type GeoradiusbymemberRoWithcoord added in v0.0.2

type GeoradiusbymemberRoWithcoord Completed

func (GeoradiusbymemberRoWithcoord) Asc added in v0.0.2

func (GeoradiusbymemberRoWithcoord) Build added in v0.0.2

func (GeoradiusbymemberRoWithcoord) Cache added in v0.0.2

func (GeoradiusbymemberRoWithcoord) Count added in v0.0.2

func (GeoradiusbymemberRoWithcoord) Desc added in v0.0.2

func (GeoradiusbymemberRoWithcoord) Withdist added in v0.0.2

func (GeoradiusbymemberRoWithcoord) Withhash added in v0.0.2

type GeoradiusbymemberRoWithdist added in v0.0.2

type GeoradiusbymemberRoWithdist Completed

func (GeoradiusbymemberRoWithdist) Asc added in v0.0.2

func (GeoradiusbymemberRoWithdist) Build added in v0.0.2

func (GeoradiusbymemberRoWithdist) Cache added in v0.0.2

func (GeoradiusbymemberRoWithdist) Count added in v0.0.2

func (GeoradiusbymemberRoWithdist) Desc added in v0.0.2

func (GeoradiusbymemberRoWithdist) Withhash added in v0.0.2

type GeoradiusbymemberRoWithhash added in v0.0.2

type GeoradiusbymemberRoWithhash Completed

func (GeoradiusbymemberRoWithhash) Asc added in v0.0.2

func (GeoradiusbymemberRoWithhash) Build added in v0.0.2

func (GeoradiusbymemberRoWithhash) Cache added in v0.0.2

func (GeoradiusbymemberRoWithhash) Count added in v0.0.2

func (GeoradiusbymemberRoWithhash) Desc added in v0.0.2

type GeoradiusbymemberStore

type GeoradiusbymemberStore Completed

func (GeoradiusbymemberStore) Build

func (GeoradiusbymemberStore) Storedist

type GeoradiusbymemberStoredist

type GeoradiusbymemberStoredist Completed

func (GeoradiusbymemberStoredist) Build

type GeoradiusbymemberUnitFt

type GeoradiusbymemberUnitFt Completed

func (GeoradiusbymemberUnitFt) Asc

func (GeoradiusbymemberUnitFt) Build

func (GeoradiusbymemberUnitFt) Count

func (GeoradiusbymemberUnitFt) Desc

func (GeoradiusbymemberUnitFt) Store

func (GeoradiusbymemberUnitFt) Storedist

func (GeoradiusbymemberUnitFt) Withcoord

func (GeoradiusbymemberUnitFt) Withdist

func (GeoradiusbymemberUnitFt) Withhash

type GeoradiusbymemberUnitKm

type GeoradiusbymemberUnitKm Completed

func (GeoradiusbymemberUnitKm) Asc

func (GeoradiusbymemberUnitKm) Build

func (GeoradiusbymemberUnitKm) Count

func (GeoradiusbymemberUnitKm) Desc

func (GeoradiusbymemberUnitKm) Store

func (GeoradiusbymemberUnitKm) Storedist

func (GeoradiusbymemberUnitKm) Withcoord

func (GeoradiusbymemberUnitKm) Withdist

func (GeoradiusbymemberUnitKm) Withhash

type GeoradiusbymemberUnitM

type GeoradiusbymemberUnitM Completed

func (GeoradiusbymemberUnitM) Asc

func (GeoradiusbymemberUnitM) Build

func (GeoradiusbymemberUnitM) Count

func (GeoradiusbymemberUnitM) Desc

func (GeoradiusbymemberUnitM) Store

func (GeoradiusbymemberUnitM) Storedist

func (GeoradiusbymemberUnitM) Withcoord

func (GeoradiusbymemberUnitM) Withdist

func (GeoradiusbymemberUnitM) Withhash

type GeoradiusbymemberUnitMi

type GeoradiusbymemberUnitMi Completed

func (GeoradiusbymemberUnitMi) Asc

func (GeoradiusbymemberUnitMi) Build

func (GeoradiusbymemberUnitMi) Count

func (GeoradiusbymemberUnitMi) Desc

func (GeoradiusbymemberUnitMi) Store

func (GeoradiusbymemberUnitMi) Storedist

func (GeoradiusbymemberUnitMi) Withcoord

func (GeoradiusbymemberUnitMi) Withdist

func (GeoradiusbymemberUnitMi) Withhash

type GeoradiusbymemberWithcoord added in v0.0.2

type GeoradiusbymemberWithcoord Completed

func (GeoradiusbymemberWithcoord) Asc added in v0.0.2

func (GeoradiusbymemberWithcoord) Build added in v0.0.2

func (GeoradiusbymemberWithcoord) Count added in v0.0.2

func (GeoradiusbymemberWithcoord) Desc added in v0.0.2

func (GeoradiusbymemberWithcoord) Store added in v0.0.2

func (GeoradiusbymemberWithcoord) Storedist added in v0.0.2

func (GeoradiusbymemberWithcoord) Withdist added in v0.0.2

func (GeoradiusbymemberWithcoord) Withhash added in v0.0.2

type GeoradiusbymemberWithdist added in v0.0.2

type GeoradiusbymemberWithdist Completed

func (GeoradiusbymemberWithdist) Asc added in v0.0.2

func (GeoradiusbymemberWithdist) Build added in v0.0.2

func (GeoradiusbymemberWithdist) Count added in v0.0.2

func (GeoradiusbymemberWithdist) Desc added in v0.0.2

func (GeoradiusbymemberWithdist) Store added in v0.0.2

func (GeoradiusbymemberWithdist) Storedist added in v0.0.2

func (GeoradiusbymemberWithdist) Withhash added in v0.0.2

type GeoradiusbymemberWithhash added in v0.0.2

type GeoradiusbymemberWithhash Completed

func (GeoradiusbymemberWithhash) Asc added in v0.0.2

func (GeoradiusbymemberWithhash) Build added in v0.0.2

func (GeoradiusbymemberWithhash) Count added in v0.0.2

func (GeoradiusbymemberWithhash) Desc added in v0.0.2

func (GeoradiusbymemberWithhash) Store added in v0.0.2

func (GeoradiusbymemberWithhash) Storedist added in v0.0.2

type Geosearch

type Geosearch Completed

func (Geosearch) Key

func (c Geosearch) Key(key string) GeosearchKey

type GeosearchCircleBoxBybox added in v0.0.54

type GeosearchCircleBoxBybox Completed

func (GeosearchCircleBoxBybox) Height added in v0.0.54

type GeosearchCircleBoxHeight added in v0.0.54

type GeosearchCircleBoxHeight Completed

func (GeosearchCircleBoxHeight) Ft added in v0.0.54

func (GeosearchCircleBoxHeight) Km added in v0.0.54

func (GeosearchCircleBoxHeight) M added in v0.0.54

func (GeosearchCircleBoxHeight) Mi added in v0.0.54

type GeosearchCircleBoxUnitFt added in v0.0.54

type GeosearchCircleBoxUnitFt Completed

func (GeosearchCircleBoxUnitFt) Asc added in v0.0.54

func (GeosearchCircleBoxUnitFt) Build added in v0.0.54

func (GeosearchCircleBoxUnitFt) Cache added in v0.0.54

func (GeosearchCircleBoxUnitFt) Count added in v0.0.54

func (GeosearchCircleBoxUnitFt) Desc added in v0.0.54

func (GeosearchCircleBoxUnitFt) Withcoord added in v0.0.54

func (GeosearchCircleBoxUnitFt) Withdist added in v0.0.54

func (GeosearchCircleBoxUnitFt) Withhash added in v0.0.54

type GeosearchCircleBoxUnitKm added in v0.0.54

type GeosearchCircleBoxUnitKm Completed

func (GeosearchCircleBoxUnitKm) Asc added in v0.0.54

func (GeosearchCircleBoxUnitKm) Build added in v0.0.54

func (GeosearchCircleBoxUnitKm) Cache added in v0.0.54

func (GeosearchCircleBoxUnitKm) Count added in v0.0.54

func (GeosearchCircleBoxUnitKm) Desc added in v0.0.54

func (GeosearchCircleBoxUnitKm) Withcoord added in v0.0.54

func (GeosearchCircleBoxUnitKm) Withdist added in v0.0.54

func (GeosearchCircleBoxUnitKm) Withhash added in v0.0.54

type GeosearchCircleBoxUnitM added in v0.0.54

type GeosearchCircleBoxUnitM Completed

func (GeosearchCircleBoxUnitM) Asc added in v0.0.54

func (GeosearchCircleBoxUnitM) Build added in v0.0.54

func (GeosearchCircleBoxUnitM) Cache added in v0.0.54

func (GeosearchCircleBoxUnitM) Count added in v0.0.54

func (GeosearchCircleBoxUnitM) Desc added in v0.0.54

func (GeosearchCircleBoxUnitM) Withcoord added in v0.0.54

func (GeosearchCircleBoxUnitM) Withdist added in v0.0.54

func (GeosearchCircleBoxUnitM) Withhash added in v0.0.54

type GeosearchCircleBoxUnitMi added in v0.0.54

type GeosearchCircleBoxUnitMi Completed

func (GeosearchCircleBoxUnitMi) Asc added in v0.0.54

func (GeosearchCircleBoxUnitMi) Build added in v0.0.54

func (GeosearchCircleBoxUnitMi) Cache added in v0.0.54

func (GeosearchCircleBoxUnitMi) Count added in v0.0.54

func (GeosearchCircleBoxUnitMi) Desc added in v0.0.54

func (GeosearchCircleBoxUnitMi) Withcoord added in v0.0.54

func (GeosearchCircleBoxUnitMi) Withdist added in v0.0.54

func (GeosearchCircleBoxUnitMi) Withhash added in v0.0.54

type GeosearchCircleCircleByradius added in v0.0.54

type GeosearchCircleCircleByradius Completed

func (GeosearchCircleCircleByradius) Ft added in v0.0.54

func (GeosearchCircleCircleByradius) Km added in v0.0.54

func (GeosearchCircleCircleByradius) M added in v0.0.54

func (GeosearchCircleCircleByradius) Mi added in v0.0.54

type GeosearchCircleCircleUnitFt added in v0.0.54

type GeosearchCircleCircleUnitFt Completed

func (GeosearchCircleCircleUnitFt) Asc added in v0.0.54

func (GeosearchCircleCircleUnitFt) Build added in v0.0.54

func (GeosearchCircleCircleUnitFt) Bybox added in v0.0.54

func (GeosearchCircleCircleUnitFt) Cache added in v0.0.54

func (GeosearchCircleCircleUnitFt) Count added in v0.0.54

func (GeosearchCircleCircleUnitFt) Desc added in v0.0.54

func (GeosearchCircleCircleUnitFt) Withcoord added in v0.0.54

func (GeosearchCircleCircleUnitFt) Withdist added in v0.0.54

func (GeosearchCircleCircleUnitFt) Withhash added in v0.0.54

type GeosearchCircleCircleUnitKm added in v0.0.54

type GeosearchCircleCircleUnitKm Completed

func (GeosearchCircleCircleUnitKm) Asc added in v0.0.54

func (GeosearchCircleCircleUnitKm) Build added in v0.0.54

func (GeosearchCircleCircleUnitKm) Bybox added in v0.0.54

func (GeosearchCircleCircleUnitKm) Cache added in v0.0.54

func (GeosearchCircleCircleUnitKm) Count added in v0.0.54

func (GeosearchCircleCircleUnitKm) Desc added in v0.0.54

func (GeosearchCircleCircleUnitKm) Withcoord added in v0.0.54

func (GeosearchCircleCircleUnitKm) Withdist added in v0.0.54

func (GeosearchCircleCircleUnitKm) Withhash added in v0.0.54

type GeosearchCircleCircleUnitM added in v0.0.54

type GeosearchCircleCircleUnitM Completed

func (GeosearchCircleCircleUnitM) Asc added in v0.0.54

func (GeosearchCircleCircleUnitM) Build added in v0.0.54

func (GeosearchCircleCircleUnitM) Bybox added in v0.0.54

func (GeosearchCircleCircleUnitM) Cache added in v0.0.54

func (GeosearchCircleCircleUnitM) Count added in v0.0.54

func (GeosearchCircleCircleUnitM) Desc added in v0.0.54

func (GeosearchCircleCircleUnitM) Withcoord added in v0.0.54

func (GeosearchCircleCircleUnitM) Withdist added in v0.0.54

func (GeosearchCircleCircleUnitM) Withhash added in v0.0.54

type GeosearchCircleCircleUnitMi added in v0.0.54

type GeosearchCircleCircleUnitMi Completed

func (GeosearchCircleCircleUnitMi) Asc added in v0.0.54

func (GeosearchCircleCircleUnitMi) Build added in v0.0.54

func (GeosearchCircleCircleUnitMi) Bybox added in v0.0.54

func (GeosearchCircleCircleUnitMi) Cache added in v0.0.54

func (GeosearchCircleCircleUnitMi) Count added in v0.0.54

func (GeosearchCircleCircleUnitMi) Desc added in v0.0.54

func (GeosearchCircleCircleUnitMi) Withcoord added in v0.0.54

func (GeosearchCircleCircleUnitMi) Withdist added in v0.0.54

func (GeosearchCircleCircleUnitMi) Withhash added in v0.0.54

type GeosearchCountAny added in v0.0.2

type GeosearchCountAny Completed

func (GeosearchCountAny) Build added in v0.0.2

func (c GeosearchCountAny) Build() Completed

func (GeosearchCountAny) Cache added in v0.0.2

func (c GeosearchCountAny) Cache() Cacheable

func (GeosearchCountAny) Withcoord added in v0.0.2

func (c GeosearchCountAny) Withcoord() GeosearchWithcoord

func (GeosearchCountAny) Withdist added in v0.0.2

func (c GeosearchCountAny) Withdist() GeosearchWithdist

func (GeosearchCountAny) Withhash added in v0.0.2

func (c GeosearchCountAny) Withhash() GeosearchWithhash

type GeosearchCountCount

type GeosearchCountCount Completed

func (GeosearchCountCount) Any

func (GeosearchCountCount) Build

func (c GeosearchCountCount) Build() Completed

func (GeosearchCountCount) Cache

func (c GeosearchCountCount) Cache() Cacheable

func (GeosearchCountCount) Withcoord

func (GeosearchCountCount) Withdist

func (GeosearchCountCount) Withhash

type GeosearchFrommemberFromlonlat added in v0.0.54

type GeosearchFrommemberFromlonlat Completed

func (GeosearchFrommemberFromlonlat) Bybox added in v0.0.54

func (GeosearchFrommemberFromlonlat) Byradius added in v0.0.54

type GeosearchFrommemberFrommember added in v0.0.54

type GeosearchFrommemberFrommember Completed

func (GeosearchFrommemberFrommember) Bybox added in v0.0.54

func (GeosearchFrommemberFrommember) Byradius added in v0.0.54

func (GeosearchFrommemberFrommember) Fromlonlat added in v0.0.54

type GeosearchKey

type GeosearchKey Completed

func (GeosearchKey) Fromlonlat

func (c GeosearchKey) Fromlonlat(longitude float64, latitude float64) GeosearchFrommemberFromlonlat

func (GeosearchKey) Frommember

func (c GeosearchKey) Frommember(member string) GeosearchFrommemberFrommember

type GeosearchOrderAsc

type GeosearchOrderAsc Completed

func (GeosearchOrderAsc) Build

func (c GeosearchOrderAsc) Build() Completed

func (GeosearchOrderAsc) Cache

func (c GeosearchOrderAsc) Cache() Cacheable

func (GeosearchOrderAsc) Count

func (GeosearchOrderAsc) Withcoord

func (c GeosearchOrderAsc) Withcoord() GeosearchWithcoord

func (GeosearchOrderAsc) Withdist

func (c GeosearchOrderAsc) Withdist() GeosearchWithdist

func (GeosearchOrderAsc) Withhash

func (c GeosearchOrderAsc) Withhash() GeosearchWithhash

type GeosearchOrderDesc

type GeosearchOrderDesc Completed

func (GeosearchOrderDesc) Build

func (c GeosearchOrderDesc) Build() Completed

func (GeosearchOrderDesc) Cache

func (c GeosearchOrderDesc) Cache() Cacheable

func (GeosearchOrderDesc) Count

func (GeosearchOrderDesc) Withcoord

func (c GeosearchOrderDesc) Withcoord() GeosearchWithcoord

func (GeosearchOrderDesc) Withdist

func (GeosearchOrderDesc) Withhash

type GeosearchWithcoord added in v0.0.2

type GeosearchWithcoord Completed

func (GeosearchWithcoord) Build added in v0.0.2

func (c GeosearchWithcoord) Build() Completed

func (GeosearchWithcoord) Cache added in v0.0.2

func (c GeosearchWithcoord) Cache() Cacheable

func (GeosearchWithcoord) Withdist added in v0.0.2

func (GeosearchWithcoord) Withhash added in v0.0.2

type GeosearchWithdist added in v0.0.2

type GeosearchWithdist Completed

func (GeosearchWithdist) Build added in v0.0.2

func (c GeosearchWithdist) Build() Completed

func (GeosearchWithdist) Cache added in v0.0.2

func (c GeosearchWithdist) Cache() Cacheable

func (GeosearchWithdist) Withhash added in v0.0.2

func (c GeosearchWithdist) Withhash() GeosearchWithhash

type GeosearchWithhash added in v0.0.2

type GeosearchWithhash Completed

func (GeosearchWithhash) Build added in v0.0.2

func (c GeosearchWithhash) Build() Completed

func (GeosearchWithhash) Cache added in v0.0.2

func (c GeosearchWithhash) Cache() Cacheable

type Geosearchstore

type Geosearchstore Completed

func (Geosearchstore) Destination

func (c Geosearchstore) Destination(destination string) GeosearchstoreDestination

type GeosearchstoreCircleBoxBybox added in v0.0.54

type GeosearchstoreCircleBoxBybox Completed

func (GeosearchstoreCircleBoxBybox) Height added in v0.0.54

type GeosearchstoreCircleBoxHeight added in v0.0.54

type GeosearchstoreCircleBoxHeight Completed

func (GeosearchstoreCircleBoxHeight) Ft added in v0.0.54

func (GeosearchstoreCircleBoxHeight) Km added in v0.0.54

func (GeosearchstoreCircleBoxHeight) M added in v0.0.54

func (GeosearchstoreCircleBoxHeight) Mi added in v0.0.54

type GeosearchstoreCircleBoxUnitFt added in v0.0.54

type GeosearchstoreCircleBoxUnitFt Completed

func (GeosearchstoreCircleBoxUnitFt) Asc added in v0.0.54

func (GeosearchstoreCircleBoxUnitFt) Build added in v0.0.54

func (GeosearchstoreCircleBoxUnitFt) Count added in v0.0.54

func (GeosearchstoreCircleBoxUnitFt) Desc added in v0.0.54

func (GeosearchstoreCircleBoxUnitFt) Storedist added in v0.0.54

type GeosearchstoreCircleBoxUnitKm added in v0.0.54

type GeosearchstoreCircleBoxUnitKm Completed

func (GeosearchstoreCircleBoxUnitKm) Asc added in v0.0.54

func (GeosearchstoreCircleBoxUnitKm) Build added in v0.0.54

func (GeosearchstoreCircleBoxUnitKm) Count added in v0.0.54

func (GeosearchstoreCircleBoxUnitKm) Desc added in v0.0.54

func (GeosearchstoreCircleBoxUnitKm) Storedist added in v0.0.54

type GeosearchstoreCircleBoxUnitM added in v0.0.54

type GeosearchstoreCircleBoxUnitM Completed

func (GeosearchstoreCircleBoxUnitM) Asc added in v0.0.54

func (GeosearchstoreCircleBoxUnitM) Build added in v0.0.54

func (GeosearchstoreCircleBoxUnitM) Count added in v0.0.54

func (GeosearchstoreCircleBoxUnitM) Desc added in v0.0.54

func (GeosearchstoreCircleBoxUnitM) Storedist added in v0.0.54

type GeosearchstoreCircleBoxUnitMi added in v0.0.54

type GeosearchstoreCircleBoxUnitMi Completed

func (GeosearchstoreCircleBoxUnitMi) Asc added in v0.0.54

func (GeosearchstoreCircleBoxUnitMi) Build added in v0.0.54

func (GeosearchstoreCircleBoxUnitMi) Count added in v0.0.54

func (GeosearchstoreCircleBoxUnitMi) Desc added in v0.0.54

func (GeosearchstoreCircleBoxUnitMi) Storedist added in v0.0.54

type GeosearchstoreCircleCircleByradius added in v0.0.54

type GeosearchstoreCircleCircleByradius Completed

func (GeosearchstoreCircleCircleByradius) Ft added in v0.0.54

func (GeosearchstoreCircleCircleByradius) Km added in v0.0.54

func (GeosearchstoreCircleCircleByradius) M added in v0.0.54

func (GeosearchstoreCircleCircleByradius) Mi added in v0.0.54

type GeosearchstoreCircleCircleUnitFt added in v0.0.54

type GeosearchstoreCircleCircleUnitFt Completed

func (GeosearchstoreCircleCircleUnitFt) Asc added in v0.0.54

func (GeosearchstoreCircleCircleUnitFt) Build added in v0.0.54

func (GeosearchstoreCircleCircleUnitFt) Bybox added in v0.0.54

func (GeosearchstoreCircleCircleUnitFt) Count added in v0.0.54

func (GeosearchstoreCircleCircleUnitFt) Desc added in v0.0.54

func (GeosearchstoreCircleCircleUnitFt) Storedist added in v0.0.54

type GeosearchstoreCircleCircleUnitKm added in v0.0.54

type GeosearchstoreCircleCircleUnitKm Completed

func (GeosearchstoreCircleCircleUnitKm) Asc added in v0.0.54

func (GeosearchstoreCircleCircleUnitKm) Build added in v0.0.54

func (GeosearchstoreCircleCircleUnitKm) Bybox added in v0.0.54

func (GeosearchstoreCircleCircleUnitKm) Count added in v0.0.54

func (GeosearchstoreCircleCircleUnitKm) Desc added in v0.0.54

func (GeosearchstoreCircleCircleUnitKm) Storedist added in v0.0.54

type GeosearchstoreCircleCircleUnitM added in v0.0.54

type GeosearchstoreCircleCircleUnitM Completed

func (GeosearchstoreCircleCircleUnitM) Asc added in v0.0.54

func (GeosearchstoreCircleCircleUnitM) Build added in v0.0.54

func (GeosearchstoreCircleCircleUnitM) Bybox added in v0.0.54

func (GeosearchstoreCircleCircleUnitM) Count added in v0.0.54

func (GeosearchstoreCircleCircleUnitM) Desc added in v0.0.54

func (GeosearchstoreCircleCircleUnitM) Storedist added in v0.0.54

type GeosearchstoreCircleCircleUnitMi added in v0.0.54

type GeosearchstoreCircleCircleUnitMi Completed

func (GeosearchstoreCircleCircleUnitMi) Asc added in v0.0.54

func (GeosearchstoreCircleCircleUnitMi) Build added in v0.0.54

func (GeosearchstoreCircleCircleUnitMi) Bybox added in v0.0.54

func (GeosearchstoreCircleCircleUnitMi) Count added in v0.0.54

func (GeosearchstoreCircleCircleUnitMi) Desc added in v0.0.54

func (GeosearchstoreCircleCircleUnitMi) Storedist added in v0.0.54

type GeosearchstoreCountAny added in v0.0.2

type GeosearchstoreCountAny Completed

func (GeosearchstoreCountAny) Build added in v0.0.2

func (GeosearchstoreCountAny) Storedist added in v0.0.2

type GeosearchstoreCountCount

type GeosearchstoreCountCount Completed

func (GeosearchstoreCountCount) Any

func (GeosearchstoreCountCount) Build

func (GeosearchstoreCountCount) Storedist

type GeosearchstoreDestination

type GeosearchstoreDestination Completed

func (GeosearchstoreDestination) Source

type GeosearchstoreFrommemberFromlonlat added in v0.0.54

type GeosearchstoreFrommemberFromlonlat Completed

func (GeosearchstoreFrommemberFromlonlat) Bybox added in v0.0.54

func (GeosearchstoreFrommemberFromlonlat) Byradius added in v0.0.54

type GeosearchstoreFrommemberFrommember added in v0.0.54

type GeosearchstoreFrommemberFrommember Completed

func (GeosearchstoreFrommemberFrommember) Bybox added in v0.0.54

func (GeosearchstoreFrommemberFrommember) Byradius added in v0.0.54

func (GeosearchstoreFrommemberFrommember) Fromlonlat added in v0.0.54

type GeosearchstoreOrderAsc

type GeosearchstoreOrderAsc Completed

func (GeosearchstoreOrderAsc) Build

func (GeosearchstoreOrderAsc) Count

func (GeosearchstoreOrderAsc) Storedist

type GeosearchstoreOrderDesc

type GeosearchstoreOrderDesc Completed

func (GeosearchstoreOrderDesc) Build

func (GeosearchstoreOrderDesc) Count

func (GeosearchstoreOrderDesc) Storedist

type GeosearchstoreSource

type GeosearchstoreSource Completed

func (GeosearchstoreSource) Fromlonlat

func (c GeosearchstoreSource) Fromlonlat(longitude float64, latitude float64) GeosearchstoreFrommemberFromlonlat

func (GeosearchstoreSource) Frommember

type GeosearchstoreStoredist added in v0.0.2

type GeosearchstoreStoredist Completed

func (GeosearchstoreStoredist) Build added in v0.0.2

type Get

type Get Completed

func (Get) Key

func (c Get) Key(key string) GetKey

type GetKey

type GetKey Completed

func (GetKey) Build

func (c GetKey) Build() Completed

func (GetKey) Cache

func (c GetKey) Cache() Cacheable

type Getbit

type Getbit Completed

func (Getbit) Key

func (c Getbit) Key(key string) GetbitKey

type GetbitKey

type GetbitKey Completed

func (GetbitKey) Offset

func (c GetbitKey) Offset(offset int64) GetbitOffset

type GetbitOffset

type GetbitOffset Completed

func (GetbitOffset) Build

func (c GetbitOffset) Build() Completed

func (GetbitOffset) Cache

func (c GetbitOffset) Cache() Cacheable

type Getdel

type Getdel Completed

func (Getdel) Key

func (c Getdel) Key(key string) GetdelKey

type GetdelKey

type GetdelKey Completed

func (GetdelKey) Build

func (c GetdelKey) Build() Completed

type Getex

type Getex Completed

func (Getex) Key

func (c Getex) Key(key string) GetexKey

type GetexExpirationExSeconds added in v0.0.2

type GetexExpirationExSeconds Completed

func (GetexExpirationExSeconds) Build added in v0.0.2

type GetexExpirationExatTimestamp added in v0.0.2

type GetexExpirationExatTimestamp Completed

func (GetexExpirationExatTimestamp) Build added in v0.0.2

type GetexExpirationPersist

type GetexExpirationPersist Completed

func (GetexExpirationPersist) Build

type GetexExpirationPxMilliseconds added in v0.0.2

type GetexExpirationPxMilliseconds Completed

func (GetexExpirationPxMilliseconds) Build added in v0.0.2

type GetexExpirationPxatMillisecondsTimestamp added in v0.0.2

type GetexExpirationPxatMillisecondsTimestamp Completed

func (GetexExpirationPxatMillisecondsTimestamp) Build added in v0.0.2

type GetexKey

type GetexKey Completed

func (GetexKey) Build

func (c GetexKey) Build() Completed

func (GetexKey) ExSeconds added in v0.0.2

func (c GetexKey) ExSeconds(seconds int64) GetexExpirationExSeconds

func (GetexKey) ExatTimestamp added in v0.0.2

func (c GetexKey) ExatTimestamp(timestamp int64) GetexExpirationExatTimestamp

func (GetexKey) Persist

func (c GetexKey) Persist() GetexExpirationPersist

func (GetexKey) PxMilliseconds added in v0.0.2

func (c GetexKey) PxMilliseconds(milliseconds int64) GetexExpirationPxMilliseconds

func (GetexKey) PxatMillisecondsTimestamp added in v0.0.2

func (c GetexKey) PxatMillisecondsTimestamp(millisecondsTimestamp int64) GetexExpirationPxatMillisecondsTimestamp

type Getrange

type Getrange Completed

func (Getrange) Key

func (c Getrange) Key(key string) GetrangeKey

type GetrangeEnd

type GetrangeEnd Completed

func (GetrangeEnd) Build

func (c GetrangeEnd) Build() Completed

func (GetrangeEnd) Cache

func (c GetrangeEnd) Cache() Cacheable

type GetrangeKey

type GetrangeKey Completed

func (GetrangeKey) Start

func (c GetrangeKey) Start(start int64) GetrangeStart

type GetrangeStart

type GetrangeStart Completed

func (GetrangeStart) End

func (c GetrangeStart) End(end int64) GetrangeEnd

type Getset

type Getset Completed

func (Getset) Key

func (c Getset) Key(key string) GetsetKey

type GetsetKey

type GetsetKey Completed

func (GetsetKey) Value

func (c GetsetKey) Value(value string) GetsetValue

type GetsetValue

type GetsetValue Completed

func (GetsetValue) Build

func (c GetsetValue) Build() Completed

type GraphConfigGet added in v0.0.3

type GraphConfigGet Completed

func (GraphConfigGet) Name added in v0.0.3

type GraphConfigGetName added in v0.0.3

type GraphConfigGetName Completed

func (GraphConfigGetName) Build added in v0.0.3

func (c GraphConfigGetName) Build() Completed

type GraphConfigSet added in v0.0.3

type GraphConfigSet Completed

func (GraphConfigSet) Name added in v0.0.3

type GraphConfigSetName added in v0.0.3

type GraphConfigSetName Completed

func (GraphConfigSetName) Value added in v0.0.3

type GraphConfigSetValue added in v0.0.3

type GraphConfigSetValue Completed

func (GraphConfigSetValue) Build added in v0.0.3

func (c GraphConfigSetValue) Build() Completed

type GraphDelete added in v0.0.3

type GraphDelete Completed

func (GraphDelete) Graph added in v0.0.3

func (c GraphDelete) Graph(graph string) GraphDeleteGraph

type GraphDeleteGraph added in v0.0.3

type GraphDeleteGraph Completed

func (GraphDeleteGraph) Build added in v0.0.3

func (c GraphDeleteGraph) Build() Completed

type GraphExplain added in v0.0.3

type GraphExplain Completed

func (GraphExplain) Graph added in v0.0.3

func (c GraphExplain) Graph(graph string) GraphExplainGraph

type GraphExplainGraph added in v0.0.3

type GraphExplainGraph Completed

func (GraphExplainGraph) Query added in v0.0.3

type GraphExplainQuery added in v0.0.3

type GraphExplainQuery Completed

func (GraphExplainQuery) Build added in v0.0.3

func (c GraphExplainQuery) Build() Completed

type GraphList added in v0.0.3

type GraphList Completed

func (GraphList) Build added in v0.0.3

func (c GraphList) Build() Completed

type GraphProfile added in v0.0.3

type GraphProfile Completed

func (GraphProfile) Graph added in v0.0.3

func (c GraphProfile) Graph(graph string) GraphProfileGraph

type GraphProfileGraph added in v0.0.3

type GraphProfileGraph Completed

func (GraphProfileGraph) Query added in v0.0.3

type GraphProfileQuery added in v0.0.3

type GraphProfileQuery Completed

func (GraphProfileQuery) Build added in v0.0.3

func (c GraphProfileQuery) Build() Completed

func (GraphProfileQuery) Timeout added in v0.0.83

func (c GraphProfileQuery) Timeout(timeout int64) GraphProfileTimeout

type GraphProfileTimeout added in v0.0.83

type GraphProfileTimeout Completed

func (GraphProfileTimeout) Build added in v0.0.83

func (c GraphProfileTimeout) Build() Completed

type GraphQuery added in v0.0.3

type GraphQuery Completed

func (GraphQuery) Graph added in v0.0.3

func (c GraphQuery) Graph(graph string) GraphQueryGraph

type GraphQueryGraph added in v0.0.3

type GraphQueryGraph Completed

func (GraphQueryGraph) Query added in v0.0.3

func (c GraphQueryGraph) Query(query string) GraphQueryQuery

type GraphQueryQuery added in v0.0.3

type GraphQueryQuery Completed

func (GraphQueryQuery) Build added in v0.0.3

func (c GraphQueryQuery) Build() Completed

func (GraphQueryQuery) Timeout added in v0.0.83

func (c GraphQueryQuery) Timeout(timeout int64) GraphQueryTimeout

type GraphQueryTimeout added in v0.0.83

type GraphQueryTimeout Completed

func (GraphQueryTimeout) Build added in v0.0.83

func (c GraphQueryTimeout) Build() Completed

type GraphRoQuery added in v0.0.3

type GraphRoQuery Completed

func (GraphRoQuery) Graph added in v0.0.3

func (c GraphRoQuery) Graph(graph string) GraphRoQueryGraph

type GraphRoQueryGraph added in v0.0.3

type GraphRoQueryGraph Completed

func (GraphRoQueryGraph) Query added in v0.0.3

type GraphRoQueryQuery added in v0.0.3

type GraphRoQueryQuery Completed

func (GraphRoQueryQuery) Build added in v0.0.3

func (c GraphRoQueryQuery) Build() Completed

func (GraphRoQueryQuery) Cache added in v0.0.43

func (c GraphRoQueryQuery) Cache() Cacheable

func (GraphRoQueryQuery) Timeout added in v0.0.83

func (c GraphRoQueryQuery) Timeout(timeout int64) GraphRoQueryTimeout

type GraphRoQueryTimeout added in v0.0.83

type GraphRoQueryTimeout Completed

func (GraphRoQueryTimeout) Build added in v0.0.83

func (c GraphRoQueryTimeout) Build() Completed

func (GraphRoQueryTimeout) Cache added in v0.0.83

func (c GraphRoQueryTimeout) Cache() Cacheable

type GraphSlowlog added in v0.0.3

type GraphSlowlog Completed

func (GraphSlowlog) Graph added in v0.0.3

func (c GraphSlowlog) Graph(graph string) GraphSlowlogGraph

type GraphSlowlogGraph added in v0.0.3

type GraphSlowlogGraph Completed

func (GraphSlowlogGraph) Build added in v0.0.3

func (c GraphSlowlogGraph) Build() Completed

type Hdel

type Hdel Completed

func (Hdel) Key

func (c Hdel) Key(key string) HdelKey

type HdelField

type HdelField Completed

func (HdelField) Build

func (c HdelField) Build() Completed

func (HdelField) Field

func (c HdelField) Field(field ...string) HdelField

type HdelKey

type HdelKey Completed

func (HdelKey) Field

func (c HdelKey) Field(field ...string) HdelField

type Hello

type Hello Completed

func (Hello) Build

func (c Hello) Build() Completed

func (Hello) Protover

func (c Hello) Protover(protover int64) HelloArgumentsProtover

type HelloArgumentsAuth

type HelloArgumentsAuth Completed

func (HelloArgumentsAuth) Build

func (c HelloArgumentsAuth) Build() Completed

func (HelloArgumentsAuth) Setname

func (c HelloArgumentsAuth) Setname(clientname string) HelloArgumentsSetname

type HelloArgumentsProtover

type HelloArgumentsProtover Completed

func (HelloArgumentsProtover) Auth

func (c HelloArgumentsProtover) Auth(username string, password string) HelloArgumentsAuth

func (HelloArgumentsProtover) Build

func (HelloArgumentsProtover) Setname

func (c HelloArgumentsProtover) Setname(clientname string) HelloArgumentsSetname

type HelloArgumentsSetname

type HelloArgumentsSetname Completed

func (HelloArgumentsSetname) Build

func (c HelloArgumentsSetname) Build() Completed

type Hexists

type Hexists Completed

func (Hexists) Key

func (c Hexists) Key(key string) HexistsKey

type HexistsField

type HexistsField Completed

func (HexistsField) Build

func (c HexistsField) Build() Completed

func (HexistsField) Cache

func (c HexistsField) Cache() Cacheable

type HexistsKey

type HexistsKey Completed

func (HexistsKey) Field

func (c HexistsKey) Field(field string) HexistsField

type Hget

type Hget Completed

func (Hget) Key

func (c Hget) Key(key string) HgetKey

type HgetField

type HgetField Completed

func (HgetField) Build

func (c HgetField) Build() Completed

func (HgetField) Cache

func (c HgetField) Cache() Cacheable

type HgetKey

type HgetKey Completed

func (HgetKey) Field

func (c HgetKey) Field(field string) HgetField

type Hgetall

type Hgetall Completed

func (Hgetall) Key

func (c Hgetall) Key(key string) HgetallKey

type HgetallKey

type HgetallKey Completed

func (HgetallKey) Build

func (c HgetallKey) Build() Completed

func (HgetallKey) Cache

func (c HgetallKey) Cache() Cacheable

type Hincrby

type Hincrby Completed

func (Hincrby) Key

func (c Hincrby) Key(key string) HincrbyKey

type HincrbyField

type HincrbyField Completed

func (HincrbyField) Increment

func (c HincrbyField) Increment(increment int64) HincrbyIncrement

type HincrbyIncrement

type HincrbyIncrement Completed

func (HincrbyIncrement) Build

func (c HincrbyIncrement) Build() Completed

type HincrbyKey

type HincrbyKey Completed

func (HincrbyKey) Field

func (c HincrbyKey) Field(field string) HincrbyField

type Hincrbyfloat

type Hincrbyfloat Completed

func (Hincrbyfloat) Key

func (c Hincrbyfloat) Key(key string) HincrbyfloatKey

type HincrbyfloatField

type HincrbyfloatField Completed

func (HincrbyfloatField) Increment

func (c HincrbyfloatField) Increment(increment float64) HincrbyfloatIncrement

type HincrbyfloatIncrement

type HincrbyfloatIncrement Completed

func (HincrbyfloatIncrement) Build

func (c HincrbyfloatIncrement) Build() Completed

type HincrbyfloatKey

type HincrbyfloatKey Completed

func (HincrbyfloatKey) Field

func (c HincrbyfloatKey) Field(field string) HincrbyfloatField

type Hkeys

type Hkeys Completed

func (Hkeys) Key

func (c Hkeys) Key(key string) HkeysKey

type HkeysKey

type HkeysKey Completed

func (HkeysKey) Build

func (c HkeysKey) Build() Completed

func (HkeysKey) Cache

func (c HkeysKey) Cache() Cacheable

type Hlen

type Hlen Completed

func (Hlen) Key

func (c Hlen) Key(key string) HlenKey

type HlenKey

type HlenKey Completed

func (HlenKey) Build

func (c HlenKey) Build() Completed

func (HlenKey) Cache

func (c HlenKey) Cache() Cacheable

type Hmget

type Hmget Completed

func (Hmget) Key

func (c Hmget) Key(key string) HmgetKey

type HmgetField

type HmgetField Completed

func (HmgetField) Build

func (c HmgetField) Build() Completed

func (HmgetField) Cache

func (c HmgetField) Cache() Cacheable

func (HmgetField) Field

func (c HmgetField) Field(field ...string) HmgetField

type HmgetKey

type HmgetKey Completed

func (HmgetKey) Field

func (c HmgetKey) Field(field ...string) HmgetField

type Hmset

type Hmset Completed

func (Hmset) Key

func (c Hmset) Key(key string) HmsetKey

type HmsetFieldValue

type HmsetFieldValue Completed

func (HmsetFieldValue) Build

func (c HmsetFieldValue) Build() Completed

func (HmsetFieldValue) FieldValue

func (c HmsetFieldValue) FieldValue(field string, value string) HmsetFieldValue

type HmsetKey

type HmsetKey Completed

func (HmsetKey) FieldValue

func (c HmsetKey) FieldValue() HmsetFieldValue

type Hrandfield

type Hrandfield Completed

func (Hrandfield) Key

func (c Hrandfield) Key(key string) HrandfieldKey

type HrandfieldKey

type HrandfieldKey Completed

func (HrandfieldKey) Build

func (c HrandfieldKey) Build() Completed

func (HrandfieldKey) Count

type HrandfieldOptionsCount

type HrandfieldOptionsCount Completed

func (HrandfieldOptionsCount) Build

func (HrandfieldOptionsCount) Withvalues

type HrandfieldOptionsWithvalues added in v0.0.2

type HrandfieldOptionsWithvalues Completed

func (HrandfieldOptionsWithvalues) Build added in v0.0.2

type Hscan

type Hscan Completed

func (Hscan) Key

func (c Hscan) Key(key string) HscanKey

type HscanCount

type HscanCount Completed

func (HscanCount) Build

func (c HscanCount) Build() Completed

type HscanCursor

type HscanCursor Completed

func (HscanCursor) Build

func (c HscanCursor) Build() Completed

func (HscanCursor) Count

func (c HscanCursor) Count(count int64) HscanCount

func (HscanCursor) Match

func (c HscanCursor) Match(pattern string) HscanMatch

type HscanKey

type HscanKey Completed

func (HscanKey) Cursor

func (c HscanKey) Cursor(cursor uint64) HscanCursor

type HscanMatch

type HscanMatch Completed

func (HscanMatch) Build

func (c HscanMatch) Build() Completed

func (HscanMatch) Count

func (c HscanMatch) Count(count int64) HscanCount

type Hset

type Hset Completed

func (Hset) Key

func (c Hset) Key(key string) HsetKey

type HsetFieldValue

type HsetFieldValue Completed

func (HsetFieldValue) Build

func (c HsetFieldValue) Build() Completed

func (HsetFieldValue) FieldValue

func (c HsetFieldValue) FieldValue(field string, value string) HsetFieldValue

type HsetKey

type HsetKey Completed

func (HsetKey) FieldValue

func (c HsetKey) FieldValue() HsetFieldValue

type Hsetnx

type Hsetnx Completed

func (Hsetnx) Key

func (c Hsetnx) Key(key string) HsetnxKey

type HsetnxField

type HsetnxField Completed

func (HsetnxField) Value

func (c HsetnxField) Value(value string) HsetnxValue

type HsetnxKey

type HsetnxKey Completed

func (HsetnxKey) Field

func (c HsetnxKey) Field(field string) HsetnxField

type HsetnxValue

type HsetnxValue Completed

func (HsetnxValue) Build

func (c HsetnxValue) Build() Completed

type Hstrlen

type Hstrlen Completed

func (Hstrlen) Key

func (c Hstrlen) Key(key string) HstrlenKey

type HstrlenField

type HstrlenField Completed

func (HstrlenField) Build

func (c HstrlenField) Build() Completed

func (HstrlenField) Cache

func (c HstrlenField) Cache() Cacheable

type HstrlenKey

type HstrlenKey Completed

func (HstrlenKey) Field

func (c HstrlenKey) Field(field string) HstrlenField

type Hvals

type Hvals Completed

func (Hvals) Key

func (c Hvals) Key(key string) HvalsKey

type HvalsKey

type HvalsKey Completed

func (HvalsKey) Build

func (c HvalsKey) Build() Completed

func (HvalsKey) Cache

func (c HvalsKey) Cache() Cacheable

type Incr

type Incr Completed

func (Incr) Key

func (c Incr) Key(key string) IncrKey

type IncrKey

type IncrKey Completed

func (IncrKey) Build

func (c IncrKey) Build() Completed

type Incrby

type Incrby Completed

func (Incrby) Key

func (c Incrby) Key(key string) IncrbyKey

type IncrbyIncrement

type IncrbyIncrement Completed

func (IncrbyIncrement) Build

func (c IncrbyIncrement) Build() Completed

type IncrbyKey

type IncrbyKey Completed

func (IncrbyKey) Increment

func (c IncrbyKey) Increment(increment int64) IncrbyIncrement

type Incrbyfloat

type Incrbyfloat Completed

func (Incrbyfloat) Key

func (c Incrbyfloat) Key(key string) IncrbyfloatKey

type IncrbyfloatIncrement

type IncrbyfloatIncrement Completed

func (IncrbyfloatIncrement) Build

func (c IncrbyfloatIncrement) Build() Completed

type IncrbyfloatKey

type IncrbyfloatKey Completed

func (IncrbyfloatKey) Increment

func (c IncrbyfloatKey) Increment(increment float64) IncrbyfloatIncrement

type Info

type Info Completed

func (Info) Build

func (c Info) Build() Completed

func (Info) Section

func (c Info) Section(section ...string) InfoSection

type InfoSection

type InfoSection Completed

func (InfoSection) Build

func (c InfoSection) Build() Completed

func (InfoSection) Section added in v0.0.38

func (c InfoSection) Section(section ...string) InfoSection

type JsonArrappend added in v0.0.2

type JsonArrappend Completed

func (JsonArrappend) Key added in v0.0.2

type JsonArrappendKey added in v0.0.2

type JsonArrappendKey Completed

func (JsonArrappendKey) Path added in v0.0.2

func (JsonArrappendKey) Value added in v0.0.2

func (c JsonArrappendKey) Value(value ...string) JsonArrappendValue

type JsonArrappendPath added in v0.0.2

type JsonArrappendPath Completed

func (JsonArrappendPath) Value added in v0.0.2

func (c JsonArrappendPath) Value(value ...string) JsonArrappendValue

type JsonArrappendValue added in v0.0.2

type JsonArrappendValue Completed

func (JsonArrappendValue) Build added in v0.0.2

func (c JsonArrappendValue) Build() Completed

func (JsonArrappendValue) Value added in v0.0.2

func (c JsonArrappendValue) Value(value ...string) JsonArrappendValue

type JsonArrindex added in v0.0.2

type JsonArrindex Completed

func (JsonArrindex) Key added in v0.0.2

func (c JsonArrindex) Key(key string) JsonArrindexKey

type JsonArrindexKey added in v0.0.2

type JsonArrindexKey Completed

func (JsonArrindexKey) Path added in v0.0.2

type JsonArrindexPath added in v0.0.2

type JsonArrindexPath Completed

func (JsonArrindexPath) Value added in v0.0.2

func (c JsonArrindexPath) Value(value string) JsonArrindexValue

type JsonArrindexStartStart added in v0.0.2

type JsonArrindexStartStart Completed

func (JsonArrindexStartStart) Build added in v0.0.2

func (JsonArrindexStartStart) Cache added in v0.0.2

func (JsonArrindexStartStart) Stop added in v0.0.2

type JsonArrindexStartStop added in v0.0.2

type JsonArrindexStartStop Completed

func (JsonArrindexStartStop) Build added in v0.0.2

func (c JsonArrindexStartStop) Build() Completed

func (JsonArrindexStartStop) Cache added in v0.0.2

func (c JsonArrindexStartStop) Cache() Cacheable

type JsonArrindexValue added in v0.0.2

type JsonArrindexValue Completed

func (JsonArrindexValue) Build added in v0.0.2

func (c JsonArrindexValue) Build() Completed

func (JsonArrindexValue) Cache added in v0.0.2

func (c JsonArrindexValue) Cache() Cacheable

func (JsonArrindexValue) Start added in v0.0.2

type JsonArrinsert added in v0.0.2

type JsonArrinsert Completed

func (JsonArrinsert) Key added in v0.0.2

type JsonArrinsertIndex added in v0.0.2

type JsonArrinsertIndex Completed

func (JsonArrinsertIndex) Value added in v0.0.2

func (c JsonArrinsertIndex) Value(value ...string) JsonArrinsertValue

type JsonArrinsertKey added in v0.0.2

type JsonArrinsertKey Completed

func (JsonArrinsertKey) Path added in v0.0.2

type JsonArrinsertPath added in v0.0.2

type JsonArrinsertPath Completed

func (JsonArrinsertPath) Index added in v0.0.2

type JsonArrinsertValue added in v0.0.2

type JsonArrinsertValue Completed

func (JsonArrinsertValue) Build added in v0.0.2

func (c JsonArrinsertValue) Build() Completed

func (JsonArrinsertValue) Value added in v0.0.2

func (c JsonArrinsertValue) Value(value ...string) JsonArrinsertValue

type JsonArrlen added in v0.0.2

type JsonArrlen Completed

func (JsonArrlen) Key added in v0.0.2

func (c JsonArrlen) Key(key string) JsonArrlenKey

type JsonArrlenKey added in v0.0.2

type JsonArrlenKey Completed

func (JsonArrlenKey) Build added in v0.0.81

func (c JsonArrlenKey) Build() Completed

func (JsonArrlenKey) Cache added in v0.0.81

func (c JsonArrlenKey) Cache() Cacheable

func (JsonArrlenKey) Path added in v0.0.2

func (c JsonArrlenKey) Path(path string) JsonArrlenPath

type JsonArrlenPath added in v0.0.2

type JsonArrlenPath Completed

func (JsonArrlenPath) Build added in v0.0.2

func (c JsonArrlenPath) Build() Completed

func (JsonArrlenPath) Cache added in v0.0.2

func (c JsonArrlenPath) Cache() Cacheable

type JsonArrpop added in v0.0.2

type JsonArrpop Completed

func (JsonArrpop) Key added in v0.0.2

func (c JsonArrpop) Key(key string) JsonArrpopKey

type JsonArrpopKey added in v0.0.2

type JsonArrpopKey Completed

func (JsonArrpopKey) Build added in v0.0.2

func (c JsonArrpopKey) Build() Completed

func (JsonArrpopKey) Path added in v0.0.2

type JsonArrpopPathIndex added in v0.0.2

type JsonArrpopPathIndex Completed

func (JsonArrpopPathIndex) Build added in v0.0.2

func (c JsonArrpopPathIndex) Build() Completed

type JsonArrpopPathPath added in v0.0.2

type JsonArrpopPathPath Completed

func (JsonArrpopPathPath) Build added in v0.0.2

func (c JsonArrpopPathPath) Build() Completed

func (JsonArrpopPathPath) Index added in v0.0.2

type JsonArrtrim added in v0.0.2

type JsonArrtrim Completed

func (JsonArrtrim) Key added in v0.0.2

func (c JsonArrtrim) Key(key string) JsonArrtrimKey

type JsonArrtrimKey added in v0.0.2

type JsonArrtrimKey Completed

func (JsonArrtrimKey) Path added in v0.0.2

func (c JsonArrtrimKey) Path(path string) JsonArrtrimPath

type JsonArrtrimPath added in v0.0.2

type JsonArrtrimPath Completed

func (JsonArrtrimPath) Start added in v0.0.2

func (c JsonArrtrimPath) Start(start int64) JsonArrtrimStart

type JsonArrtrimStart added in v0.0.2

type JsonArrtrimStart Completed

func (JsonArrtrimStart) Stop added in v0.0.2

func (c JsonArrtrimStart) Stop(stop int64) JsonArrtrimStop

type JsonArrtrimStop added in v0.0.2

type JsonArrtrimStop Completed

func (JsonArrtrimStop) Build added in v0.0.2

func (c JsonArrtrimStop) Build() Completed

type JsonClear added in v0.0.2

type JsonClear Completed

func (JsonClear) Key added in v0.0.2

func (c JsonClear) Key(key string) JsonClearKey

type JsonClearKey added in v0.0.2

type JsonClearKey Completed

func (JsonClearKey) Build added in v0.0.2

func (c JsonClearKey) Build() Completed

func (JsonClearKey) Path added in v0.0.2

func (c JsonClearKey) Path(path string) JsonClearPath

type JsonClearPath added in v0.0.2

type JsonClearPath Completed

func (JsonClearPath) Build added in v0.0.2

func (c JsonClearPath) Build() Completed

type JsonDebugHelp added in v0.0.54

type JsonDebugHelp Completed

func (JsonDebugHelp) Build added in v0.0.54

func (c JsonDebugHelp) Build() Completed

type JsonDebugMemory added in v0.0.54

type JsonDebugMemory Completed

func (JsonDebugMemory) Key added in v0.0.54

type JsonDebugMemoryKey added in v0.0.54

type JsonDebugMemoryKey Completed

func (JsonDebugMemoryKey) Build added in v0.0.54

func (c JsonDebugMemoryKey) Build() Completed

func (JsonDebugMemoryKey) Path added in v0.0.54

type JsonDebugMemoryPath added in v0.0.54

type JsonDebugMemoryPath Completed

func (JsonDebugMemoryPath) Build added in v0.0.54

func (c JsonDebugMemoryPath) Build() Completed

type JsonDel added in v0.0.2

type JsonDel Completed

func (JsonDel) Key added in v0.0.2

func (c JsonDel) Key(key string) JsonDelKey

type JsonDelKey added in v0.0.2

type JsonDelKey Completed

func (JsonDelKey) Build added in v0.0.2

func (c JsonDelKey) Build() Completed

func (JsonDelKey) Path added in v0.0.2

func (c JsonDelKey) Path(path string) JsonDelPath

type JsonDelPath added in v0.0.2

type JsonDelPath Completed

func (JsonDelPath) Build added in v0.0.2

func (c JsonDelPath) Build() Completed

type JsonForget added in v0.0.54

type JsonForget Completed

func (JsonForget) Key added in v0.0.54

func (c JsonForget) Key(key string) JsonForgetKey

type JsonForgetKey added in v0.0.54

type JsonForgetKey Completed

func (JsonForgetKey) Build added in v0.0.54

func (c JsonForgetKey) Build() Completed

func (JsonForgetKey) Path added in v0.0.54

func (c JsonForgetKey) Path(path string) JsonForgetPath

type JsonForgetPath added in v0.0.54

type JsonForgetPath Completed

func (JsonForgetPath) Build added in v0.0.54

func (c JsonForgetPath) Build() Completed

type JsonGet added in v0.0.2

type JsonGet Completed

func (JsonGet) Key added in v0.0.2

func (c JsonGet) Key(key string) JsonGetKey

type JsonGetIndent added in v0.0.2

type JsonGetIndent Completed

func (JsonGetIndent) Build added in v0.0.2

func (c JsonGetIndent) Build() Completed

func (JsonGetIndent) Cache added in v0.0.2

func (c JsonGetIndent) Cache() Cacheable

func (JsonGetIndent) Newline added in v0.0.2

func (c JsonGetIndent) Newline(newline string) JsonGetNewline

func (JsonGetIndent) Path added in v0.0.95

func (c JsonGetIndent) Path(path ...string) JsonGetPath

func (JsonGetIndent) Space added in v0.0.2

func (c JsonGetIndent) Space(space string) JsonGetSpace

type JsonGetKey added in v0.0.2

type JsonGetKey Completed

func (JsonGetKey) Build added in v0.0.2

func (c JsonGetKey) Build() Completed

func (JsonGetKey) Cache added in v0.0.2

func (c JsonGetKey) Cache() Cacheable

func (JsonGetKey) Indent added in v0.0.2

func (c JsonGetKey) Indent(indent string) JsonGetIndent

func (JsonGetKey) Newline added in v0.0.2

func (c JsonGetKey) Newline(newline string) JsonGetNewline

func (JsonGetKey) Path added in v0.0.95

func (c JsonGetKey) Path(path ...string) JsonGetPath

func (JsonGetKey) Space added in v0.0.2

func (c JsonGetKey) Space(space string) JsonGetSpace

type JsonGetNewline added in v0.0.2

type JsonGetNewline Completed

func (JsonGetNewline) Build added in v0.0.2

func (c JsonGetNewline) Build() Completed

func (JsonGetNewline) Cache added in v0.0.2

func (c JsonGetNewline) Cache() Cacheable

func (JsonGetNewline) Path added in v0.0.95

func (c JsonGetNewline) Path(path ...string) JsonGetPath

func (JsonGetNewline) Space added in v0.0.2

func (c JsonGetNewline) Space(space string) JsonGetSpace

type JsonGetPath added in v0.0.95

type JsonGetPath Completed

func (JsonGetPath) Build added in v0.0.95

func (c JsonGetPath) Build() Completed

func (JsonGetPath) Cache added in v0.0.95

func (c JsonGetPath) Cache() Cacheable

func (JsonGetPath) Path added in v0.0.95

func (c JsonGetPath) Path(path ...string) JsonGetPath

type JsonGetSpace added in v0.0.2

type JsonGetSpace Completed

func (JsonGetSpace) Build added in v0.0.2

func (c JsonGetSpace) Build() Completed

func (JsonGetSpace) Cache added in v0.0.2

func (c JsonGetSpace) Cache() Cacheable

func (JsonGetSpace) Path added in v0.0.95

func (c JsonGetSpace) Path(path ...string) JsonGetPath

type JsonMget added in v0.0.2

type JsonMget Completed

func (JsonMget) Key added in v0.0.2

func (c JsonMget) Key(key ...string) JsonMgetKey

type JsonMgetKey added in v0.0.2

type JsonMgetKey Completed

func (JsonMgetKey) Key added in v0.0.2

func (c JsonMgetKey) Key(key ...string) JsonMgetKey

func (JsonMgetKey) Path added in v0.0.2

func (c JsonMgetKey) Path(path string) JsonMgetPath

type JsonMgetPath added in v0.0.2

type JsonMgetPath Completed

func (JsonMgetPath) Build added in v0.0.2

func (c JsonMgetPath) Build() Completed

func (JsonMgetPath) Cache added in v0.0.63

func (c JsonMgetPath) Cache() Cacheable

type JsonNumincrby added in v0.0.2

type JsonNumincrby Completed

func (JsonNumincrby) Key added in v0.0.2

type JsonNumincrbyKey added in v0.0.2

type JsonNumincrbyKey Completed

func (JsonNumincrbyKey) Path added in v0.0.2

type JsonNumincrbyPath added in v0.0.2

type JsonNumincrbyPath Completed

func (JsonNumincrbyPath) Value added in v0.0.2

type JsonNumincrbyValue added in v0.0.2

type JsonNumincrbyValue Completed

func (JsonNumincrbyValue) Build added in v0.0.2

func (c JsonNumincrbyValue) Build() Completed

type JsonNummultby added in v0.0.54

type JsonNummultby Completed

func (JsonNummultby) Key added in v0.0.54

type JsonNummultbyKey added in v0.0.54

type JsonNummultbyKey Completed

func (JsonNummultbyKey) Path added in v0.0.54

type JsonNummultbyPath added in v0.0.54

type JsonNummultbyPath Completed

func (JsonNummultbyPath) Value added in v0.0.54

type JsonNummultbyValue added in v0.0.54

type JsonNummultbyValue Completed

func (JsonNummultbyValue) Build added in v0.0.54

func (c JsonNummultbyValue) Build() Completed

type JsonObjkeys added in v0.0.2

type JsonObjkeys Completed

func (JsonObjkeys) Key added in v0.0.2

func (c JsonObjkeys) Key(key string) JsonObjkeysKey

type JsonObjkeysKey added in v0.0.2

type JsonObjkeysKey Completed

func (JsonObjkeysKey) Build added in v0.0.2

func (c JsonObjkeysKey) Build() Completed

func (JsonObjkeysKey) Cache added in v0.0.2

func (c JsonObjkeysKey) Cache() Cacheable

func (JsonObjkeysKey) Path added in v0.0.2

func (c JsonObjkeysKey) Path(path string) JsonObjkeysPath

type JsonObjkeysPath added in v0.0.2

type JsonObjkeysPath Completed

func (JsonObjkeysPath) Build added in v0.0.2

func (c JsonObjkeysPath) Build() Completed

func (JsonObjkeysPath) Cache added in v0.0.2

func (c JsonObjkeysPath) Cache() Cacheable

type JsonObjlen added in v0.0.2

type JsonObjlen Completed

func (JsonObjlen) Key added in v0.0.2

func (c JsonObjlen) Key(key string) JsonObjlenKey

type JsonObjlenKey added in v0.0.2

type JsonObjlenKey Completed

func (JsonObjlenKey) Build added in v0.0.2

func (c JsonObjlenKey) Build() Completed

func (JsonObjlenKey) Cache added in v0.0.2

func (c JsonObjlenKey) Cache() Cacheable

func (JsonObjlenKey) Path added in v0.0.2

func (c JsonObjlenKey) Path(path string) JsonObjlenPath

type JsonObjlenPath added in v0.0.2

type JsonObjlenPath Completed

func (JsonObjlenPath) Build added in v0.0.2

func (c JsonObjlenPath) Build() Completed

func (JsonObjlenPath) Cache added in v0.0.2

func (c JsonObjlenPath) Cache() Cacheable

type JsonResp added in v0.0.2

type JsonResp Completed

func (JsonResp) Key added in v0.0.2

func (c JsonResp) Key(key string) JsonRespKey

type JsonRespKey added in v0.0.2

type JsonRespKey Completed

func (JsonRespKey) Build added in v0.0.2

func (c JsonRespKey) Build() Completed

func (JsonRespKey) Cache added in v0.0.2

func (c JsonRespKey) Cache() Cacheable

func (JsonRespKey) Path added in v0.0.2

func (c JsonRespKey) Path(path string) JsonRespPath

type JsonRespPath added in v0.0.2

type JsonRespPath Completed

func (JsonRespPath) Build added in v0.0.2

func (c JsonRespPath) Build() Completed

func (JsonRespPath) Cache added in v0.0.2

func (c JsonRespPath) Cache() Cacheable

type JsonSet added in v0.0.2

type JsonSet Completed

func (JsonSet) Key added in v0.0.2

func (c JsonSet) Key(key string) JsonSetKey

type JsonSetConditionNx added in v0.0.2

type JsonSetConditionNx Completed

func (JsonSetConditionNx) Build added in v0.0.2

func (c JsonSetConditionNx) Build() Completed

type JsonSetConditionXx added in v0.0.2

type JsonSetConditionXx Completed

func (JsonSetConditionXx) Build added in v0.0.2

func (c JsonSetConditionXx) Build() Completed

type JsonSetKey added in v0.0.2

type JsonSetKey Completed

func (JsonSetKey) Path added in v0.0.2

func (c JsonSetKey) Path(path string) JsonSetPath

type JsonSetPath added in v0.0.2

type JsonSetPath Completed

func (JsonSetPath) Value added in v0.0.2

func (c JsonSetPath) Value(value string) JsonSetValue

type JsonSetValue added in v0.0.2

type JsonSetValue Completed

func (JsonSetValue) Build added in v0.0.2

func (c JsonSetValue) Build() Completed

func (JsonSetValue) Nx added in v0.0.2

func (JsonSetValue) Xx added in v0.0.2

type JsonStrappend added in v0.0.2

type JsonStrappend Completed

func (JsonStrappend) Key added in v0.0.2

type JsonStrappendKey added in v0.0.2

type JsonStrappendKey Completed

func (JsonStrappendKey) Path added in v0.0.2

func (JsonStrappendKey) Value added in v0.0.2

type JsonStrappendPath added in v0.0.2

type JsonStrappendPath Completed

func (JsonStrappendPath) Value added in v0.0.2

type JsonStrappendValue added in v0.0.2

type JsonStrappendValue Completed

func (JsonStrappendValue) Build added in v0.0.2

func (c JsonStrappendValue) Build() Completed

type JsonStrlen added in v0.0.2

type JsonStrlen Completed

func (JsonStrlen) Key added in v0.0.2

func (c JsonStrlen) Key(key string) JsonStrlenKey

type JsonStrlenKey added in v0.0.2

type JsonStrlenKey Completed

func (JsonStrlenKey) Build added in v0.0.2

func (c JsonStrlenKey) Build() Completed

func (JsonStrlenKey) Cache added in v0.0.2

func (c JsonStrlenKey) Cache() Cacheable

func (JsonStrlenKey) Path added in v0.0.2

func (c JsonStrlenKey) Path(path string) JsonStrlenPath

type JsonStrlenPath added in v0.0.2

type JsonStrlenPath Completed

func (JsonStrlenPath) Build added in v0.0.2

func (c JsonStrlenPath) Build() Completed

func (JsonStrlenPath) Cache added in v0.0.2

func (c JsonStrlenPath) Cache() Cacheable

type JsonToggle added in v0.0.2

type JsonToggle Completed

func (JsonToggle) Key added in v0.0.2

func (c JsonToggle) Key(key string) JsonToggleKey

type JsonToggleKey added in v0.0.2

type JsonToggleKey Completed

func (JsonToggleKey) Path added in v0.0.2

func (c JsonToggleKey) Path(path string) JsonTogglePath

type JsonTogglePath added in v0.0.2

type JsonTogglePath Completed

func (JsonTogglePath) Build added in v0.0.2

func (c JsonTogglePath) Build() Completed

type JsonType added in v0.0.2

type JsonType Completed

func (JsonType) Key added in v0.0.2

func (c JsonType) Key(key string) JsonTypeKey

type JsonTypeKey added in v0.0.2

type JsonTypeKey Completed

func (JsonTypeKey) Build added in v0.0.2

func (c JsonTypeKey) Build() Completed

func (JsonTypeKey) Cache added in v0.0.2

func (c JsonTypeKey) Cache() Cacheable

func (JsonTypeKey) Path added in v0.0.2

func (c JsonTypeKey) Path(path string) JsonTypePath

type JsonTypePath added in v0.0.2

type JsonTypePath Completed

func (JsonTypePath) Build added in v0.0.2

func (c JsonTypePath) Build() Completed

func (JsonTypePath) Cache added in v0.0.2

func (c JsonTypePath) Cache() Cacheable

type Keys

type Keys Completed

func (Keys) Pattern

func (c Keys) Pattern(pattern string) KeysPattern

type KeysPattern

type KeysPattern Completed

func (KeysPattern) Build

func (c KeysPattern) Build() Completed

type Lastsave

type Lastsave Completed

func (Lastsave) Build

func (c Lastsave) Build() Completed

type LatencyDoctor

type LatencyDoctor Completed

func (LatencyDoctor) Build

func (c LatencyDoctor) Build() Completed

type LatencyGraph

type LatencyGraph Completed

func (LatencyGraph) Event

func (c LatencyGraph) Event(event string) LatencyGraphEvent

type LatencyGraphEvent

type LatencyGraphEvent Completed

func (LatencyGraphEvent) Build

func (c LatencyGraphEvent) Build() Completed

type LatencyHelp

type LatencyHelp Completed

func (LatencyHelp) Build

func (c LatencyHelp) Build() Completed

type LatencyHistogram added in v0.0.34

type LatencyHistogram Completed

func (LatencyHistogram) Build added in v0.0.34

func (c LatencyHistogram) Build() Completed

func (LatencyHistogram) Command added in v0.0.34

func (c LatencyHistogram) Command(command ...string) LatencyHistogramCommand

type LatencyHistogramCommand added in v0.0.34

type LatencyHistogramCommand Completed

func (LatencyHistogramCommand) Build added in v0.0.34

func (LatencyHistogramCommand) Command added in v0.0.34

type LatencyHistory

type LatencyHistory Completed

func (LatencyHistory) Event

func (c LatencyHistory) Event(event string) LatencyHistoryEvent

type LatencyHistoryEvent

type LatencyHistoryEvent Completed

func (LatencyHistoryEvent) Build

func (c LatencyHistoryEvent) Build() Completed

type LatencyLatest

type LatencyLatest Completed

func (LatencyLatest) Build

func (c LatencyLatest) Build() Completed

type LatencyReset

type LatencyReset Completed

func (LatencyReset) Build

func (c LatencyReset) Build() Completed

func (LatencyReset) Event

func (c LatencyReset) Event(event ...string) LatencyResetEvent

type LatencyResetEvent

type LatencyResetEvent Completed

func (LatencyResetEvent) Build

func (c LatencyResetEvent) Build() Completed

func (LatencyResetEvent) Event

func (c LatencyResetEvent) Event(event ...string) LatencyResetEvent

type Lcs added in v0.0.2

type Lcs Completed

func (Lcs) Key1 added in v0.0.2

func (c Lcs) Key1(key1 string) LcsKey1

type LcsIdx added in v0.0.2

type LcsIdx Completed

func (LcsIdx) Build added in v0.0.2

func (c LcsIdx) Build() Completed

func (LcsIdx) Minmatchlen added in v0.0.2

func (c LcsIdx) Minmatchlen(len int64) LcsMinmatchlen

func (LcsIdx) Withmatchlen added in v0.0.2

func (c LcsIdx) Withmatchlen() LcsWithmatchlen

type LcsKey1 added in v0.0.2

type LcsKey1 Completed

func (LcsKey1) Key2 added in v0.0.2

func (c LcsKey1) Key2(key2 string) LcsKey2

type LcsKey2 added in v0.0.2

type LcsKey2 Completed

func (LcsKey2) Build added in v0.0.2

func (c LcsKey2) Build() Completed

func (LcsKey2) Idx added in v0.0.2

func (c LcsKey2) Idx() LcsIdx

func (LcsKey2) Len added in v0.0.2

func (c LcsKey2) Len() LcsLen

func (LcsKey2) Minmatchlen added in v0.0.2

func (c LcsKey2) Minmatchlen(len int64) LcsMinmatchlen

func (LcsKey2) Withmatchlen added in v0.0.2

func (c LcsKey2) Withmatchlen() LcsWithmatchlen

type LcsLen added in v0.0.2

type LcsLen Completed

func (LcsLen) Build added in v0.0.2

func (c LcsLen) Build() Completed

func (LcsLen) Idx added in v0.0.2

func (c LcsLen) Idx() LcsIdx

func (LcsLen) Minmatchlen added in v0.0.2

func (c LcsLen) Minmatchlen(len int64) LcsMinmatchlen

func (LcsLen) Withmatchlen added in v0.0.2

func (c LcsLen) Withmatchlen() LcsWithmatchlen

type LcsMinmatchlen added in v0.0.2

type LcsMinmatchlen Completed

func (LcsMinmatchlen) Build added in v0.0.2

func (c LcsMinmatchlen) Build() Completed

func (LcsMinmatchlen) Withmatchlen added in v0.0.2

func (c LcsMinmatchlen) Withmatchlen() LcsWithmatchlen

type LcsWithmatchlen added in v0.0.2

type LcsWithmatchlen Completed

func (LcsWithmatchlen) Build added in v0.0.2

func (c LcsWithmatchlen) Build() Completed

type Lindex

type Lindex Completed

func (Lindex) Key

func (c Lindex) Key(key string) LindexKey

type LindexIndex

type LindexIndex Completed

func (LindexIndex) Build

func (c LindexIndex) Build() Completed

func (LindexIndex) Cache

func (c LindexIndex) Cache() Cacheable

type LindexKey

type LindexKey Completed

func (LindexKey) Index

func (c LindexKey) Index(index int64) LindexIndex

type Linsert

type Linsert Completed

func (Linsert) Key

func (c Linsert) Key(key string) LinsertKey

type LinsertElement

type LinsertElement Completed

func (LinsertElement) Build

func (c LinsertElement) Build() Completed

type LinsertKey

type LinsertKey Completed

func (LinsertKey) After

func (c LinsertKey) After() LinsertWhereAfter

func (LinsertKey) Before

func (c LinsertKey) Before() LinsertWhereBefore

type LinsertPivot

type LinsertPivot Completed

func (LinsertPivot) Element

func (c LinsertPivot) Element(element string) LinsertElement

type LinsertWhereAfter

type LinsertWhereAfter Completed

func (LinsertWhereAfter) Pivot

func (c LinsertWhereAfter) Pivot(pivot string) LinsertPivot

type LinsertWhereBefore

type LinsertWhereBefore Completed

func (LinsertWhereBefore) Pivot

func (c LinsertWhereBefore) Pivot(pivot string) LinsertPivot

type Llen

type Llen Completed

func (Llen) Key

func (c Llen) Key(key string) LlenKey

type LlenKey

type LlenKey Completed

func (LlenKey) Build

func (c LlenKey) Build() Completed

func (LlenKey) Cache

func (c LlenKey) Cache() Cacheable

type Lmove

type Lmove Completed

func (Lmove) Source

func (c Lmove) Source(source string) LmoveSource

type LmoveDestination

type LmoveDestination Completed

func (LmoveDestination) Left

func (LmoveDestination) Right

type LmoveSource

type LmoveSource Completed

func (LmoveSource) Destination

func (c LmoveSource) Destination(destination string) LmoveDestination

type LmoveWherefromLeft

type LmoveWherefromLeft Completed

func (LmoveWherefromLeft) Left

func (LmoveWherefromLeft) Right

type LmoveWherefromRight

type LmoveWherefromRight Completed

func (LmoveWherefromRight) Left

func (LmoveWherefromRight) Right

type LmoveWheretoLeft

type LmoveWheretoLeft Completed

func (LmoveWheretoLeft) Build

func (c LmoveWheretoLeft) Build() Completed

type LmoveWheretoRight

type LmoveWheretoRight Completed

func (LmoveWheretoRight) Build

func (c LmoveWheretoRight) Build() Completed

type Lmpop

type Lmpop Completed

func (Lmpop) Numkeys

func (c Lmpop) Numkeys(numkeys int64) LmpopNumkeys

type LmpopCount

type LmpopCount Completed

func (LmpopCount) Build

func (c LmpopCount) Build() Completed

type LmpopKey

type LmpopKey Completed

func (LmpopKey) Key

func (c LmpopKey) Key(key ...string) LmpopKey

func (LmpopKey) Left

func (c LmpopKey) Left() LmpopWhereLeft

func (LmpopKey) Right

func (c LmpopKey) Right() LmpopWhereRight

type LmpopNumkeys

type LmpopNumkeys Completed

func (LmpopNumkeys) Key

func (c LmpopNumkeys) Key(key ...string) LmpopKey

type LmpopWhereLeft

type LmpopWhereLeft Completed

func (LmpopWhereLeft) Build

func (c LmpopWhereLeft) Build() Completed

func (LmpopWhereLeft) Count

func (c LmpopWhereLeft) Count(count int64) LmpopCount

type LmpopWhereRight

type LmpopWhereRight Completed

func (LmpopWhereRight) Build

func (c LmpopWhereRight) Build() Completed

func (LmpopWhereRight) Count

func (c LmpopWhereRight) Count(count int64) LmpopCount

type Lolwut

type Lolwut Completed

func (Lolwut) Build

func (c Lolwut) Build() Completed

func (Lolwut) Version

func (c Lolwut) Version(version int64) LolwutVersion

type LolwutVersion

type LolwutVersion Completed

func (LolwutVersion) Build

func (c LolwutVersion) Build() Completed

type Lpop

type Lpop Completed

func (Lpop) Key

func (c Lpop) Key(key string) LpopKey

type LpopCount

type LpopCount Completed

func (LpopCount) Build

func (c LpopCount) Build() Completed

type LpopKey

type LpopKey Completed

func (LpopKey) Build

func (c LpopKey) Build() Completed

func (LpopKey) Count

func (c LpopKey) Count(count int64) LpopCount

type Lpos

type Lpos Completed

func (Lpos) Key

func (c Lpos) Key(key string) LposKey

type LposCount

type LposCount Completed

func (LposCount) Build

func (c LposCount) Build() Completed

func (LposCount) Cache

func (c LposCount) Cache() Cacheable

func (LposCount) Maxlen

func (c LposCount) Maxlen(len int64) LposMaxlen

type LposElement

type LposElement Completed

func (LposElement) Build

func (c LposElement) Build() Completed

func (LposElement) Cache

func (c LposElement) Cache() Cacheable

func (LposElement) Count

func (c LposElement) Count(numMatches int64) LposCount

func (LposElement) Maxlen

func (c LposElement) Maxlen(len int64) LposMaxlen

func (LposElement) Rank

func (c LposElement) Rank(rank int64) LposRank

type LposKey

type LposKey Completed

func (LposKey) Element

func (c LposKey) Element(element string) LposElement

type LposMaxlen

type LposMaxlen Completed

func (LposMaxlen) Build

func (c LposMaxlen) Build() Completed

func (LposMaxlen) Cache

func (c LposMaxlen) Cache() Cacheable

type LposRank

type LposRank Completed

func (LposRank) Build

func (c LposRank) Build() Completed

func (LposRank) Cache

func (c LposRank) Cache() Cacheable

func (LposRank) Count

func (c LposRank) Count(numMatches int64) LposCount

func (LposRank) Maxlen

func (c LposRank) Maxlen(len int64) LposMaxlen

type Lpush

type Lpush Completed

func (Lpush) Key

func (c Lpush) Key(key string) LpushKey

type LpushElement

type LpushElement Completed

func (LpushElement) Build

func (c LpushElement) Build() Completed

func (LpushElement) Element

func (c LpushElement) Element(element ...string) LpushElement

type LpushKey

type LpushKey Completed

func (LpushKey) Element

func (c LpushKey) Element(element ...string) LpushElement

type Lpushx

type Lpushx Completed

func (Lpushx) Key

func (c Lpushx) Key(key string) LpushxKey

type LpushxElement

type LpushxElement Completed

func (LpushxElement) Build

func (c LpushxElement) Build() Completed

func (LpushxElement) Element

func (c LpushxElement) Element(element ...string) LpushxElement

type LpushxKey

type LpushxKey Completed

func (LpushxKey) Element

func (c LpushxKey) Element(element ...string) LpushxElement

type Lrange

type Lrange Completed

func (Lrange) Key

func (c Lrange) Key(key string) LrangeKey

type LrangeKey

type LrangeKey Completed

func (LrangeKey) Start

func (c LrangeKey) Start(start int64) LrangeStart

type LrangeStart

type LrangeStart Completed

func (LrangeStart) Stop

func (c LrangeStart) Stop(stop int64) LrangeStop

type LrangeStop

type LrangeStop Completed

func (LrangeStop) Build

func (c LrangeStop) Build() Completed

func (LrangeStop) Cache

func (c LrangeStop) Cache() Cacheable

type Lrem

type Lrem Completed

func (Lrem) Key

func (c Lrem) Key(key string) LremKey

type LremCount

type LremCount Completed

func (LremCount) Element

func (c LremCount) Element(element string) LremElement

type LremElement

type LremElement Completed

func (LremElement) Build

func (c LremElement) Build() Completed

type LremKey

type LremKey Completed

func (LremKey) Count

func (c LremKey) Count(count int64) LremCount

type Lset

type Lset Completed

func (Lset) Key

func (c Lset) Key(key string) LsetKey

type LsetElement

type LsetElement Completed

func (LsetElement) Build

func (c LsetElement) Build() Completed

type LsetIndex

type LsetIndex Completed

func (LsetIndex) Element

func (c LsetIndex) Element(element string) LsetElement

type LsetKey

type LsetKey Completed

func (LsetKey) Index

func (c LsetKey) Index(index int64) LsetIndex

type Ltrim

type Ltrim Completed

func (Ltrim) Key

func (c Ltrim) Key(key string) LtrimKey

type LtrimKey

type LtrimKey Completed

func (LtrimKey) Start

func (c LtrimKey) Start(start int64) LtrimStart

type LtrimStart

type LtrimStart Completed

func (LtrimStart) Stop

func (c LtrimStart) Stop(stop int64) LtrimStop

type LtrimStop

type LtrimStop Completed

func (LtrimStop) Build

func (c LtrimStop) Build() Completed

type MemoryDoctor

type MemoryDoctor Completed

func (MemoryDoctor) Build

func (c MemoryDoctor) Build() Completed

type MemoryHelp

type MemoryHelp Completed

func (MemoryHelp) Build

func (c MemoryHelp) Build() Completed

type MemoryMallocStats

type MemoryMallocStats Completed

func (MemoryMallocStats) Build

func (c MemoryMallocStats) Build() Completed

type MemoryPurge

type MemoryPurge Completed

func (MemoryPurge) Build

func (c MemoryPurge) Build() Completed

type MemoryStats

type MemoryStats Completed

func (MemoryStats) Build

func (c MemoryStats) Build() Completed

type MemoryUsage

type MemoryUsage Completed

func (MemoryUsage) Key

func (c MemoryUsage) Key(key string) MemoryUsageKey

type MemoryUsageKey

type MemoryUsageKey Completed

func (MemoryUsageKey) Build

func (c MemoryUsageKey) Build() Completed

func (MemoryUsageKey) Samples

func (c MemoryUsageKey) Samples(count int64) MemoryUsageSamples

type MemoryUsageSamples

type MemoryUsageSamples Completed

func (MemoryUsageSamples) Build

func (c MemoryUsageSamples) Build() Completed

type Mget

type Mget Completed

func (Mget) Key

func (c Mget) Key(key ...string) MgetKey

type MgetKey

type MgetKey Completed

func (MgetKey) Build

func (c MgetKey) Build() Completed

func (MgetKey) Cache added in v0.0.62

func (c MgetKey) Cache() Cacheable

func (MgetKey) Key

func (c MgetKey) Key(key ...string) MgetKey

type Migrate

type Migrate Completed

func (Migrate) Host

func (c Migrate) Host(host string) MigrateHost

type MigrateAuthAuth added in v0.0.54

type MigrateAuthAuth Completed

func (MigrateAuthAuth) Auth2 added in v0.0.54

func (c MigrateAuthAuth) Auth2(username string, password string) MigrateAuthAuth2

func (MigrateAuthAuth) Build added in v0.0.54

func (c MigrateAuthAuth) Build() Completed

func (MigrateAuthAuth) Keys added in v0.0.54

func (c MigrateAuthAuth) Keys(key ...string) MigrateKeys

type MigrateAuthAuth2 added in v0.0.54

type MigrateAuthAuth2 Completed

func (MigrateAuthAuth2) Build added in v0.0.54

func (c MigrateAuthAuth2) Build() Completed

func (MigrateAuthAuth2) Keys added in v0.0.54

func (c MigrateAuthAuth2) Keys(key ...string) MigrateKeys

type MigrateCopy added in v0.0.2

type MigrateCopy Completed

func (MigrateCopy) Auth added in v0.0.2

func (c MigrateCopy) Auth(password string) MigrateAuthAuth

func (MigrateCopy) Auth2 added in v0.0.2

func (c MigrateCopy) Auth2(username string, password string) MigrateAuthAuth2

func (MigrateCopy) Build added in v0.0.2

func (c MigrateCopy) Build() Completed

func (MigrateCopy) Keys added in v0.0.2

func (c MigrateCopy) Keys(key ...string) MigrateKeys

func (MigrateCopy) Replace added in v0.0.2

func (c MigrateCopy) Replace() MigrateReplace

type MigrateDestinationDb

type MigrateDestinationDb Completed

func (MigrateDestinationDb) Timeout

func (c MigrateDestinationDb) Timeout(timeout int64) MigrateTimeout

type MigrateHost

type MigrateHost Completed

func (MigrateHost) Port

func (c MigrateHost) Port(port int64) MigratePort

type MigrateKey added in v0.0.2

type MigrateKey Completed

func (MigrateKey) DestinationDb added in v0.0.2

func (c MigrateKey) DestinationDb(destinationDb int64) MigrateDestinationDb

type MigrateKeys

type MigrateKeys Completed

func (MigrateKeys) Build

func (c MigrateKeys) Build() Completed

func (MigrateKeys) Keys

func (c MigrateKeys) Keys(key ...string) MigrateKeys

type MigratePort

type MigratePort Completed

func (MigratePort) Key

func (c MigratePort) Key(key string) MigrateKey

type MigrateReplace added in v0.0.2

type MigrateReplace Completed

func (MigrateReplace) Auth added in v0.0.2

func (c MigrateReplace) Auth(password string) MigrateAuthAuth

func (MigrateReplace) Auth2 added in v0.0.2

func (c MigrateReplace) Auth2(username string, password string) MigrateAuthAuth2

func (MigrateReplace) Build added in v0.0.2

func (c MigrateReplace) Build() Completed

func (MigrateReplace) Keys added in v0.0.2

func (c MigrateReplace) Keys(key ...string) MigrateKeys

type MigrateTimeout

type MigrateTimeout Completed

func (MigrateTimeout) Auth

func (c MigrateTimeout) Auth(password string) MigrateAuthAuth

func (MigrateTimeout) Auth2

func (c MigrateTimeout) Auth2(username string, password string) MigrateAuthAuth2

func (MigrateTimeout) Build

func (c MigrateTimeout) Build() Completed

func (MigrateTimeout) Copy

func (c MigrateTimeout) Copy() MigrateCopy

func (MigrateTimeout) Keys

func (c MigrateTimeout) Keys(key ...string) MigrateKeys

func (MigrateTimeout) Replace

func (c MigrateTimeout) Replace() MigrateReplace

type ModuleList

type ModuleList Completed

func (ModuleList) Build

func (c ModuleList) Build() Completed

type ModuleLoad

type ModuleLoad Completed

func (ModuleLoad) Path

func (c ModuleLoad) Path(path string) ModuleLoadPath

type ModuleLoadArg

type ModuleLoadArg Completed

func (ModuleLoadArg) Arg

func (c ModuleLoadArg) Arg(arg ...string) ModuleLoadArg

func (ModuleLoadArg) Build

func (c ModuleLoadArg) Build() Completed

type ModuleLoadPath

type ModuleLoadPath Completed

func (ModuleLoadPath) Arg

func (c ModuleLoadPath) Arg(arg ...string) ModuleLoadArg

func (ModuleLoadPath) Build

func (c ModuleLoadPath) Build() Completed

type ModuleLoadex added in v0.0.42

type ModuleLoadex Completed

func (ModuleLoadex) Path added in v0.0.42

func (c ModuleLoadex) Path(path string) ModuleLoadexPath

type ModuleLoadexArgs added in v0.0.42

type ModuleLoadexArgs Completed

func (ModuleLoadexArgs) Args added in v0.0.42

func (c ModuleLoadexArgs) Args(args ...string) ModuleLoadexArgs

func (ModuleLoadexArgs) Build added in v0.0.42

func (c ModuleLoadexArgs) Build() Completed

type ModuleLoadexConfig added in v0.0.42

type ModuleLoadexConfig Completed

func (ModuleLoadexConfig) Args added in v0.0.42

func (c ModuleLoadexConfig) Args(args ...string) ModuleLoadexArgs

func (ModuleLoadexConfig) Build added in v0.0.42

func (c ModuleLoadexConfig) Build() Completed

func (ModuleLoadexConfig) Config added in v0.0.42

func (c ModuleLoadexConfig) Config(name string, value string) ModuleLoadexConfig

type ModuleLoadexPath added in v0.0.42

type ModuleLoadexPath Completed

func (ModuleLoadexPath) Args added in v0.0.42

func (c ModuleLoadexPath) Args(args ...string) ModuleLoadexArgs

func (ModuleLoadexPath) Build added in v0.0.42

func (c ModuleLoadexPath) Build() Completed

func (ModuleLoadexPath) Config added in v0.0.42

type ModuleUnload

type ModuleUnload Completed

func (ModuleUnload) Name

func (c ModuleUnload) Name(name string) ModuleUnloadName

type ModuleUnloadName

type ModuleUnloadName Completed

func (ModuleUnloadName) Build

func (c ModuleUnloadName) Build() Completed

type Monitor

type Monitor Completed

func (Monitor) Build

func (c Monitor) Build() Completed

type Move

type Move Completed

func (Move) Key

func (c Move) Key(key string) MoveKey

type MoveDb

type MoveDb Completed

func (MoveDb) Build

func (c MoveDb) Build() Completed

type MoveKey

type MoveKey Completed

func (MoveKey) Db

func (c MoveKey) Db(db int64) MoveDb

type Mset

type Mset Completed

func (Mset) KeyValue

func (c Mset) KeyValue() MsetKeyValue

type MsetKeyValue

type MsetKeyValue Completed

func (MsetKeyValue) Build

func (c MsetKeyValue) Build() Completed

func (MsetKeyValue) KeyValue

func (c MsetKeyValue) KeyValue(key string, value string) MsetKeyValue

type Msetnx

type Msetnx Completed

func (Msetnx) KeyValue

func (c Msetnx) KeyValue() MsetnxKeyValue

type MsetnxKeyValue

type MsetnxKeyValue Completed

func (MsetnxKeyValue) Build

func (c MsetnxKeyValue) Build() Completed

func (MsetnxKeyValue) KeyValue

func (c MsetnxKeyValue) KeyValue(key string, value string) MsetnxKeyValue

type Multi

type Multi Completed

func (Multi) Build

func (c Multi) Build() Completed

type ObjectEncoding added in v0.0.2

type ObjectEncoding Completed

func (ObjectEncoding) Key added in v0.0.2

type ObjectEncodingKey added in v0.0.2

type ObjectEncodingKey Completed

func (ObjectEncodingKey) Build added in v0.0.2

func (c ObjectEncodingKey) Build() Completed

type ObjectFreq added in v0.0.2

type ObjectFreq Completed

func (ObjectFreq) Key added in v0.0.2

func (c ObjectFreq) Key(key string) ObjectFreqKey

type ObjectFreqKey added in v0.0.2

type ObjectFreqKey Completed

func (ObjectFreqKey) Build added in v0.0.2

func (c ObjectFreqKey) Build() Completed

type ObjectHelp added in v0.0.2

type ObjectHelp Completed

func (ObjectHelp) Build added in v0.0.2

func (c ObjectHelp) Build() Completed

type ObjectIdletime added in v0.0.2

type ObjectIdletime Completed

func (ObjectIdletime) Key added in v0.0.2

type ObjectIdletimeKey added in v0.0.2

type ObjectIdletimeKey Completed

func (ObjectIdletimeKey) Build added in v0.0.2

func (c ObjectIdletimeKey) Build() Completed

type ObjectRefcount added in v0.0.2

type ObjectRefcount Completed

func (ObjectRefcount) Key added in v0.0.2

type ObjectRefcountKey added in v0.0.2

type ObjectRefcountKey Completed

func (ObjectRefcountKey) Build added in v0.0.2

func (c ObjectRefcountKey) Build() Completed

type Persist

type Persist Completed

func (Persist) Key

func (c Persist) Key(key string) PersistKey

type PersistKey

type PersistKey Completed

func (PersistKey) Build

func (c PersistKey) Build() Completed

type Pexpire

type Pexpire Completed

func (Pexpire) Key

func (c Pexpire) Key(key string) PexpireKey

type PexpireConditionGt

type PexpireConditionGt Completed

func (PexpireConditionGt) Build

func (c PexpireConditionGt) Build() Completed

type PexpireConditionLt

type PexpireConditionLt Completed

func (PexpireConditionLt) Build

func (c PexpireConditionLt) Build() Completed

type PexpireConditionNx

type PexpireConditionNx Completed

func (PexpireConditionNx) Build

func (c PexpireConditionNx) Build() Completed

type PexpireConditionXx

type PexpireConditionXx Completed

func (PexpireConditionXx) Build

func (c PexpireConditionXx) Build() Completed

type PexpireKey

type PexpireKey Completed

func (PexpireKey) Milliseconds

func (c PexpireKey) Milliseconds(milliseconds int64) PexpireMilliseconds

type PexpireMilliseconds

type PexpireMilliseconds Completed

func (PexpireMilliseconds) Build

func (c PexpireMilliseconds) Build() Completed

func (PexpireMilliseconds) Gt

func (PexpireMilliseconds) Lt

func (PexpireMilliseconds) Nx

func (PexpireMilliseconds) Xx

type Pexpireat

type Pexpireat Completed

func (Pexpireat) Key

func (c Pexpireat) Key(key string) PexpireatKey

type PexpireatConditionGt

type PexpireatConditionGt Completed

func (PexpireatConditionGt) Build

func (c PexpireatConditionGt) Build() Completed

type PexpireatConditionLt

type PexpireatConditionLt Completed

func (PexpireatConditionLt) Build

func (c PexpireatConditionLt) Build() Completed

type PexpireatConditionNx

type PexpireatConditionNx Completed

func (PexpireatConditionNx) Build

func (c PexpireatConditionNx) Build() Completed

type PexpireatConditionXx

type PexpireatConditionXx Completed

func (PexpireatConditionXx) Build

func (c PexpireatConditionXx) Build() Completed

type PexpireatKey

type PexpireatKey Completed

func (PexpireatKey) MillisecondsTimestamp

func (c PexpireatKey) MillisecondsTimestamp(millisecondsTimestamp int64) PexpireatMillisecondsTimestamp

type PexpireatMillisecondsTimestamp

type PexpireatMillisecondsTimestamp Completed

func (PexpireatMillisecondsTimestamp) Build

func (PexpireatMillisecondsTimestamp) Gt

func (PexpireatMillisecondsTimestamp) Lt

func (PexpireatMillisecondsTimestamp) Nx

func (PexpireatMillisecondsTimestamp) Xx

type Pexpiretime

type Pexpiretime Completed

func (Pexpiretime) Key

func (c Pexpiretime) Key(key string) PexpiretimeKey

type PexpiretimeKey

type PexpiretimeKey Completed

func (PexpiretimeKey) Build

func (c PexpiretimeKey) Build() Completed

func (PexpiretimeKey) Cache

func (c PexpiretimeKey) Cache() Cacheable

type Pfadd

type Pfadd Completed

func (Pfadd) Key

func (c Pfadd) Key(key string) PfaddKey

type PfaddElement

type PfaddElement Completed

func (PfaddElement) Build

func (c PfaddElement) Build() Completed

func (PfaddElement) Element

func (c PfaddElement) Element(element ...string) PfaddElement

type PfaddKey

type PfaddKey Completed

func (PfaddKey) Build

func (c PfaddKey) Build() Completed

func (PfaddKey) Element

func (c PfaddKey) Element(element ...string) PfaddElement

type Pfcount

type Pfcount Completed

func (Pfcount) Key

func (c Pfcount) Key(key ...string) PfcountKey

type PfcountKey

type PfcountKey Completed

func (PfcountKey) Build

func (c PfcountKey) Build() Completed

func (PfcountKey) Key

func (c PfcountKey) Key(key ...string) PfcountKey

type Pfmerge

type Pfmerge Completed

func (Pfmerge) Destkey

func (c Pfmerge) Destkey(destkey string) PfmergeDestkey

type PfmergeDestkey

type PfmergeDestkey Completed

func (PfmergeDestkey) Build added in v0.0.95

func (c PfmergeDestkey) Build() Completed

func (PfmergeDestkey) Sourcekey

func (c PfmergeDestkey) Sourcekey(sourcekey ...string) PfmergeSourcekey

type PfmergeSourcekey

type PfmergeSourcekey Completed

func (PfmergeSourcekey) Build

func (c PfmergeSourcekey) Build() Completed

func (PfmergeSourcekey) Sourcekey

func (c PfmergeSourcekey) Sourcekey(sourcekey ...string) PfmergeSourcekey

type Ping

type Ping Completed

func (Ping) Build

func (c Ping) Build() Completed

func (Ping) Message

func (c Ping) Message(message string) PingMessage

type PingMessage

type PingMessage Completed

func (PingMessage) Build

func (c PingMessage) Build() Completed

type Psetex

type Psetex Completed

func (Psetex) Key

func (c Psetex) Key(key string) PsetexKey

type PsetexKey

type PsetexKey Completed

func (PsetexKey) Milliseconds

func (c PsetexKey) Milliseconds(milliseconds int64) PsetexMilliseconds

type PsetexMilliseconds

type PsetexMilliseconds Completed

func (PsetexMilliseconds) Value

func (c PsetexMilliseconds) Value(value string) PsetexValue

type PsetexValue

type PsetexValue Completed

func (PsetexValue) Build

func (c PsetexValue) Build() Completed

type Psubscribe

type Psubscribe Completed

func (Psubscribe) Pattern

func (c Psubscribe) Pattern(pattern ...string) PsubscribePattern

type PsubscribePattern

type PsubscribePattern Completed

func (PsubscribePattern) Build

func (c PsubscribePattern) Build() Completed

func (PsubscribePattern) Pattern

func (c PsubscribePattern) Pattern(pattern ...string) PsubscribePattern

type Psync

type Psync Completed

func (Psync) Replicationid

func (c Psync) Replicationid(replicationid string) PsyncReplicationid

type PsyncOffset

type PsyncOffset Completed

func (PsyncOffset) Build

func (c PsyncOffset) Build() Completed

type PsyncReplicationid

type PsyncReplicationid Completed

func (PsyncReplicationid) Offset

func (c PsyncReplicationid) Offset(offset int64) PsyncOffset

type Pttl

type Pttl Completed

func (Pttl) Key

func (c Pttl) Key(key string) PttlKey

type PttlKey

type PttlKey Completed

func (PttlKey) Build

func (c PttlKey) Build() Completed

func (PttlKey) Cache

func (c PttlKey) Cache() Cacheable

type Publish

type Publish Completed

func (Publish) Channel

func (c Publish) Channel(channel string) PublishChannel

type PublishChannel

type PublishChannel Completed

func (PublishChannel) Message

func (c PublishChannel) Message(message string) PublishMessage

type PublishMessage

type PublishMessage Completed

func (PublishMessage) Build

func (c PublishMessage) Build() Completed

type PubsubChannels added in v0.0.2

type PubsubChannels Completed

func (PubsubChannels) Build added in v0.0.2

func (c PubsubChannels) Build() Completed

func (PubsubChannels) Pattern added in v0.0.2

func (c PubsubChannels) Pattern(pattern string) PubsubChannelsPattern

type PubsubChannelsPattern added in v0.0.2

type PubsubChannelsPattern Completed

func (PubsubChannelsPattern) Build added in v0.0.2

func (c PubsubChannelsPattern) Build() Completed

type PubsubHelp added in v0.0.2

type PubsubHelp Completed

func (PubsubHelp) Build added in v0.0.2

func (c PubsubHelp) Build() Completed

type PubsubNumpat added in v0.0.2

type PubsubNumpat Completed

func (PubsubNumpat) Build added in v0.0.2

func (c PubsubNumpat) Build() Completed

type PubsubNumsub added in v0.0.2

type PubsubNumsub Completed

func (PubsubNumsub) Build added in v0.0.2

func (c PubsubNumsub) Build() Completed

func (PubsubNumsub) Channel added in v0.0.2

func (c PubsubNumsub) Channel(channel ...string) PubsubNumsubChannel

type PubsubNumsubChannel added in v0.0.2

type PubsubNumsubChannel Completed

func (PubsubNumsubChannel) Build added in v0.0.2

func (c PubsubNumsubChannel) Build() Completed

func (PubsubNumsubChannel) Channel added in v0.0.2

func (c PubsubNumsubChannel) Channel(channel ...string) PubsubNumsubChannel

type PubsubShardchannels added in v0.0.34

type PubsubShardchannels Completed

func (PubsubShardchannels) Build added in v0.0.34

func (c PubsubShardchannels) Build() Completed

func (PubsubShardchannels) Pattern added in v0.0.34

type PubsubShardchannelsPattern added in v0.0.34

type PubsubShardchannelsPattern Completed

func (PubsubShardchannelsPattern) Build added in v0.0.34

type PubsubShardnumsub added in v0.0.34

type PubsubShardnumsub Completed

func (PubsubShardnumsub) Build added in v0.0.34

func (c PubsubShardnumsub) Build() Completed

func (PubsubShardnumsub) Channel added in v0.0.42

func (c PubsubShardnumsub) Channel(channel ...string) PubsubShardnumsubChannel

type PubsubShardnumsubChannel added in v0.0.42

type PubsubShardnumsubChannel Completed

func (PubsubShardnumsubChannel) Build added in v0.0.42

func (PubsubShardnumsubChannel) Channel added in v0.0.42

type Punsubscribe

type Punsubscribe Completed

func (Punsubscribe) Build

func (c Punsubscribe) Build() Completed

func (Punsubscribe) Pattern

func (c Punsubscribe) Pattern(pattern ...string) PunsubscribePattern

type PunsubscribePattern

type PunsubscribePattern Completed

func (PunsubscribePattern) Build

func (c PunsubscribePattern) Build() Completed

func (PunsubscribePattern) Pattern

func (c PunsubscribePattern) Pattern(pattern ...string) PunsubscribePattern

type Quit

type Quit Completed

func (Quit) Build

func (c Quit) Build() Completed

type Randomkey

type Randomkey Completed

func (Randomkey) Build

func (c Randomkey) Build() Completed

type Readonly

type Readonly Completed

func (Readonly) Build

func (c Readonly) Build() Completed

type Readwrite

type Readwrite Completed

func (Readwrite) Build

func (c Readwrite) Build() Completed

type Rename

type Rename Completed

func (Rename) Key

func (c Rename) Key(key string) RenameKey

type RenameKey

type RenameKey Completed

func (RenameKey) Newkey

func (c RenameKey) Newkey(newkey string) RenameNewkey

type RenameNewkey

type RenameNewkey Completed

func (RenameNewkey) Build

func (c RenameNewkey) Build() Completed

type Renamenx

type Renamenx Completed

func (Renamenx) Key

func (c Renamenx) Key(key string) RenamenxKey

type RenamenxKey

type RenamenxKey Completed

func (RenamenxKey) Newkey

func (c RenamenxKey) Newkey(newkey string) RenamenxNewkey

type RenamenxNewkey

type RenamenxNewkey Completed

func (RenamenxNewkey) Build

func (c RenamenxNewkey) Build() Completed

type Replicaof

type Replicaof Completed

func (Replicaof) Host

func (c Replicaof) Host(host string) ReplicaofHost

type ReplicaofHost

type ReplicaofHost Completed

func (ReplicaofHost) Port

func (c ReplicaofHost) Port(port int64) ReplicaofPort

type ReplicaofPort

type ReplicaofPort Completed

func (ReplicaofPort) Build

func (c ReplicaofPort) Build() Completed

type Reset

type Reset Completed

func (Reset) Build

func (c Reset) Build() Completed

type Restore

type Restore Completed

func (Restore) Key

func (c Restore) Key(key string) RestoreKey

type RestoreAbsttl added in v0.0.2

type RestoreAbsttl Completed

func (RestoreAbsttl) Build added in v0.0.2

func (c RestoreAbsttl) Build() Completed

func (RestoreAbsttl) Freq added in v0.0.2

func (c RestoreAbsttl) Freq(frequency int64) RestoreFreq

func (RestoreAbsttl) Idletime added in v0.0.2

func (c RestoreAbsttl) Idletime(seconds int64) RestoreIdletime

type RestoreFreq

type RestoreFreq Completed

func (RestoreFreq) Build

func (c RestoreFreq) Build() Completed

type RestoreIdletime

type RestoreIdletime Completed

func (RestoreIdletime) Build

func (c RestoreIdletime) Build() Completed

func (RestoreIdletime) Freq

func (c RestoreIdletime) Freq(frequency int64) RestoreFreq

type RestoreKey

type RestoreKey Completed

func (RestoreKey) Ttl

func (c RestoreKey) Ttl(ttl int64) RestoreTtl

type RestoreReplace added in v0.0.2

type RestoreReplace Completed

func (RestoreReplace) Absttl added in v0.0.2

func (c RestoreReplace) Absttl() RestoreAbsttl

func (RestoreReplace) Build added in v0.0.2

func (c RestoreReplace) Build() Completed

func (RestoreReplace) Freq added in v0.0.2

func (c RestoreReplace) Freq(frequency int64) RestoreFreq

func (RestoreReplace) Idletime added in v0.0.2

func (c RestoreReplace) Idletime(seconds int64) RestoreIdletime

type RestoreSerializedValue

type RestoreSerializedValue Completed

func (RestoreSerializedValue) Absttl

func (RestoreSerializedValue) Build

func (RestoreSerializedValue) Freq

func (c RestoreSerializedValue) Freq(frequency int64) RestoreFreq

func (RestoreSerializedValue) Idletime

func (c RestoreSerializedValue) Idletime(seconds int64) RestoreIdletime

func (RestoreSerializedValue) Replace

type RestoreTtl

type RestoreTtl Completed

func (RestoreTtl) SerializedValue

func (c RestoreTtl) SerializedValue(serializedValue string) RestoreSerializedValue

type RgAbortexecution added in v0.0.40

type RgAbortexecution Completed

func (RgAbortexecution) Id added in v0.0.40

type RgAbortexecutionId added in v0.0.40

type RgAbortexecutionId Completed

func (RgAbortexecutionId) Build added in v0.0.40

func (c RgAbortexecutionId) Build() Completed

type RgConfigget added in v0.0.40

type RgConfigget Completed

func (RgConfigget) Key added in v0.0.40

func (c RgConfigget) Key(key ...string) RgConfiggetKey

type RgConfiggetKey added in v0.0.40

type RgConfiggetKey Completed

func (RgConfiggetKey) Build added in v0.0.40

func (c RgConfiggetKey) Build() Completed

func (RgConfiggetKey) Key added in v0.0.40

func (c RgConfiggetKey) Key(key ...string) RgConfiggetKey

type RgConfigset added in v0.0.40

type RgConfigset Completed

func (RgConfigset) KeyValue added in v0.0.40

func (c RgConfigset) KeyValue() RgConfigsetKeyValue

type RgConfigsetKeyValue added in v0.0.40

type RgConfigsetKeyValue Completed

func (RgConfigsetKeyValue) Build added in v0.0.40

func (c RgConfigsetKeyValue) Build() Completed

func (RgConfigsetKeyValue) KeyValue added in v0.0.40

func (c RgConfigsetKeyValue) KeyValue(key string, value string) RgConfigsetKeyValue

type RgDropexecution added in v0.0.40

type RgDropexecution Completed

func (RgDropexecution) Id added in v0.0.40

type RgDropexecutionId added in v0.0.40

type RgDropexecutionId Completed

func (RgDropexecutionId) Build added in v0.0.40

func (c RgDropexecutionId) Build() Completed

type RgDumpexecutions added in v0.0.40

type RgDumpexecutions Completed

func (RgDumpexecutions) Build added in v0.0.40

func (c RgDumpexecutions) Build() Completed

type RgDumpregistrations added in v0.0.40

type RgDumpregistrations Completed

func (RgDumpregistrations) Build added in v0.0.40

func (c RgDumpregistrations) Build() Completed

type RgGetexecution added in v0.0.40

type RgGetexecution Completed

func (RgGetexecution) Id added in v0.0.40

type RgGetexecutionId added in v0.0.40

type RgGetexecutionId Completed

func (RgGetexecutionId) Build added in v0.0.40

func (c RgGetexecutionId) Build() Completed

func (RgGetexecutionId) Cluster added in v0.0.40

func (RgGetexecutionId) Shard added in v0.0.40

type RgGetexecutionModeCluster added in v0.0.40

type RgGetexecutionModeCluster Completed

func (RgGetexecutionModeCluster) Build added in v0.0.40

type RgGetexecutionModeShard added in v0.0.40

type RgGetexecutionModeShard Completed

func (RgGetexecutionModeShard) Build added in v0.0.40

type RgGetresults added in v0.0.40

type RgGetresults Completed

func (RgGetresults) Id added in v0.0.40

type RgGetresultsId added in v0.0.40

type RgGetresultsId Completed

func (RgGetresultsId) Build added in v0.0.40

func (c RgGetresultsId) Build() Completed

type RgGetresultsblocking added in v0.0.40

type RgGetresultsblocking Completed

func (RgGetresultsblocking) Id added in v0.0.40

type RgGetresultsblockingId added in v0.0.40

type RgGetresultsblockingId Completed

func (RgGetresultsblockingId) Build added in v0.0.40

type RgInfocluster added in v0.0.40

type RgInfocluster Completed

func (RgInfocluster) Build added in v0.0.40

func (c RgInfocluster) Build() Completed

type RgPydumpreqs added in v0.0.40

type RgPydumpreqs Completed

func (RgPydumpreqs) Build added in v0.0.40

func (c RgPydumpreqs) Build() Completed

type RgPyexecute added in v0.0.40

type RgPyexecute Completed

func (RgPyexecute) Function added in v0.0.40

func (c RgPyexecute) Function(function string) RgPyexecuteFunction

type RgPyexecuteDescription added in v0.0.40

type RgPyexecuteDescription Completed

func (RgPyexecuteDescription) Build added in v0.0.40

func (RgPyexecuteDescription) ReplaceWith added in v0.0.40

func (c RgPyexecuteDescription) ReplaceWith(replaceWith string) RgPyexecuteReplaceWith

func (RgPyexecuteDescription) Requirements added in v0.0.40

func (c RgPyexecuteDescription) Requirements(requirement ...string) RgPyexecuteRequirementsRequirements

func (RgPyexecuteDescription) Upgrade added in v0.0.40

type RgPyexecuteFunction added in v0.0.40

type RgPyexecuteFunction Completed

func (RgPyexecuteFunction) Build added in v0.0.40

func (c RgPyexecuteFunction) Build() Completed

func (RgPyexecuteFunction) Description added in v0.0.40

func (c RgPyexecuteFunction) Description(description string) RgPyexecuteDescription

func (RgPyexecuteFunction) Id added in v0.0.40

func (RgPyexecuteFunction) ReplaceWith added in v0.0.40

func (c RgPyexecuteFunction) ReplaceWith(replaceWith string) RgPyexecuteReplaceWith

func (RgPyexecuteFunction) Requirements added in v0.0.40

func (c RgPyexecuteFunction) Requirements(requirement ...string) RgPyexecuteRequirementsRequirements

func (RgPyexecuteFunction) Unblocking added in v0.0.40

func (RgPyexecuteFunction) Upgrade added in v0.0.40

type RgPyexecuteId added in v0.0.40

type RgPyexecuteId Completed

func (RgPyexecuteId) Build added in v0.0.40

func (c RgPyexecuteId) Build() Completed

func (RgPyexecuteId) Description added in v0.0.40

func (c RgPyexecuteId) Description(description string) RgPyexecuteDescription

func (RgPyexecuteId) ReplaceWith added in v0.0.40

func (c RgPyexecuteId) ReplaceWith(replaceWith string) RgPyexecuteReplaceWith

func (RgPyexecuteId) Requirements added in v0.0.40

func (c RgPyexecuteId) Requirements(requirement ...string) RgPyexecuteRequirementsRequirements

func (RgPyexecuteId) Upgrade added in v0.0.40

func (c RgPyexecuteId) Upgrade() RgPyexecuteUpgrade

type RgPyexecuteReplaceWith added in v0.0.40

type RgPyexecuteReplaceWith Completed

func (RgPyexecuteReplaceWith) Build added in v0.0.40

func (RgPyexecuteReplaceWith) Requirements added in v0.0.40

func (c RgPyexecuteReplaceWith) Requirements(requirement ...string) RgPyexecuteRequirementsRequirements

type RgPyexecuteRequirementsRequirements added in v0.0.40

type RgPyexecuteRequirementsRequirements Completed

func (RgPyexecuteRequirementsRequirements) Build added in v0.0.40

func (RgPyexecuteRequirementsRequirements) Requirements added in v0.0.40

type RgPyexecuteUnblocking added in v0.0.40

type RgPyexecuteUnblocking Completed

func (RgPyexecuteUnblocking) Build added in v0.0.40

func (c RgPyexecuteUnblocking) Build() Completed

func (RgPyexecuteUnblocking) Description added in v0.0.40

func (c RgPyexecuteUnblocking) Description(description string) RgPyexecuteDescription

func (RgPyexecuteUnblocking) Id added in v0.0.40

func (RgPyexecuteUnblocking) ReplaceWith added in v0.0.40

func (c RgPyexecuteUnblocking) ReplaceWith(replaceWith string) RgPyexecuteReplaceWith

func (RgPyexecuteUnblocking) Requirements added in v0.0.40

func (c RgPyexecuteUnblocking) Requirements(requirement ...string) RgPyexecuteRequirementsRequirements

func (RgPyexecuteUnblocking) Upgrade added in v0.0.40

type RgPyexecuteUpgrade added in v0.0.40

type RgPyexecuteUpgrade Completed

func (RgPyexecuteUpgrade) Build added in v0.0.40

func (c RgPyexecuteUpgrade) Build() Completed

func (RgPyexecuteUpgrade) ReplaceWith added in v0.0.40

func (c RgPyexecuteUpgrade) ReplaceWith(replaceWith string) RgPyexecuteReplaceWith

func (RgPyexecuteUpgrade) Requirements added in v0.0.40

func (c RgPyexecuteUpgrade) Requirements(requirement ...string) RgPyexecuteRequirementsRequirements

type RgPystats added in v0.0.40

type RgPystats Completed

func (RgPystats) Build added in v0.0.40

func (c RgPystats) Build() Completed

type RgRefreshcluster added in v0.0.40

type RgRefreshcluster Completed

func (RgRefreshcluster) Build added in v0.0.40

func (c RgRefreshcluster) Build() Completed

type RgTrigger added in v0.0.40

type RgTrigger Completed

func (RgTrigger) Trigger added in v0.0.40

func (c RgTrigger) Trigger(trigger string) RgTriggerTrigger

type RgTriggerArgument added in v0.0.40

type RgTriggerArgument Completed

func (RgTriggerArgument) Argument added in v0.0.40

func (c RgTriggerArgument) Argument(argument ...string) RgTriggerArgument

func (RgTriggerArgument) Build added in v0.0.40

func (c RgTriggerArgument) Build() Completed

type RgTriggerTrigger added in v0.0.40

type RgTriggerTrigger Completed

func (RgTriggerTrigger) Argument added in v0.0.40

func (c RgTriggerTrigger) Argument(argument ...string) RgTriggerArgument

type RgUnregister added in v0.0.40

type RgUnregister Completed

func (RgUnregister) Id added in v0.0.40

type RgUnregisterId added in v0.0.40

type RgUnregisterId Completed

func (RgUnregisterId) Build added in v0.0.40

func (c RgUnregisterId) Build() Completed

type Role

type Role Completed

func (Role) Build

func (c Role) Build() Completed

type Rpop

type Rpop Completed

func (Rpop) Key

func (c Rpop) Key(key string) RpopKey

type RpopCount

type RpopCount Completed

func (RpopCount) Build

func (c RpopCount) Build() Completed

type RpopKey

type RpopKey Completed

func (RpopKey) Build

func (c RpopKey) Build() Completed

func (RpopKey) Count

func (c RpopKey) Count(count int64) RpopCount

type Rpoplpush

type Rpoplpush Completed

func (Rpoplpush) Source

func (c Rpoplpush) Source(source string) RpoplpushSource

type RpoplpushDestination

type RpoplpushDestination Completed

func (RpoplpushDestination) Build

func (c RpoplpushDestination) Build() Completed

type RpoplpushSource

type RpoplpushSource Completed

func (RpoplpushSource) Destination

func (c RpoplpushSource) Destination(destination string) RpoplpushDestination

type Rpush

type Rpush Completed

func (Rpush) Key

func (c Rpush) Key(key string) RpushKey

type RpushElement

type RpushElement Completed

func (RpushElement) Build

func (c RpushElement) Build() Completed

func (RpushElement) Element

func (c RpushElement) Element(element ...string) RpushElement

type RpushKey

type RpushKey Completed

func (RpushKey) Element

func (c RpushKey) Element(element ...string) RpushElement

type Rpushx

type Rpushx Completed

func (Rpushx) Key

func (c Rpushx) Key(key string) RpushxKey

type RpushxElement

type RpushxElement Completed

func (RpushxElement) Build

func (c RpushxElement) Build() Completed

func (RpushxElement) Element

func (c RpushxElement) Element(element ...string) RpushxElement

type RpushxKey

type RpushxKey Completed

func (RpushxKey) Element

func (c RpushxKey) Element(element ...string) RpushxElement

type Sadd

type Sadd Completed

func (Sadd) Key

func (c Sadd) Key(key string) SaddKey

type SaddKey

type SaddKey Completed

func (SaddKey) Member

func (c SaddKey) Member(member ...string) SaddMember

type SaddMember

type SaddMember Completed

func (SaddMember) Build

func (c SaddMember) Build() Completed

func (SaddMember) Member

func (c SaddMember) Member(member ...string) SaddMember

type Save

type Save Completed

func (Save) Build

func (c Save) Build() Completed

type Scan

type Scan Completed

func (Scan) Cursor

func (c Scan) Cursor(cursor uint64) ScanCursor

type ScanCount

type ScanCount Completed

func (ScanCount) Build

func (c ScanCount) Build() Completed

func (ScanCount) Type

func (c ScanCount) Type(typ string) ScanType

type ScanCursor

type ScanCursor Completed

func (ScanCursor) Build

func (c ScanCursor) Build() Completed

func (ScanCursor) Count

func (c ScanCursor) Count(count int64) ScanCount

func (ScanCursor) Match

func (c ScanCursor) Match(pattern string) ScanMatch

func (ScanCursor) Type

func (c ScanCursor) Type(typ string) ScanType

type ScanMatch

type ScanMatch Completed

func (ScanMatch) Build

func (c ScanMatch) Build() Completed

func (ScanMatch) Count

func (c ScanMatch) Count(count int64) ScanCount

func (ScanMatch) Type

func (c ScanMatch) Type(typ string) ScanType

type ScanType

type ScanType Completed

func (ScanType) Build

func (c ScanType) Build() Completed

type Scard

type Scard Completed

func (Scard) Key

func (c Scard) Key(key string) ScardKey

type ScardKey

type ScardKey Completed

func (ScardKey) Build

func (c ScardKey) Build() Completed

func (ScardKey) Cache

func (c ScardKey) Cache() Cacheable

type ScriptDebug

type ScriptDebug Completed

func (ScriptDebug) No

func (ScriptDebug) Sync

func (ScriptDebug) Yes

type ScriptDebugModeNo

type ScriptDebugModeNo Completed

func (ScriptDebugModeNo) Build

func (c ScriptDebugModeNo) Build() Completed

type ScriptDebugModeSync

type ScriptDebugModeSync Completed

func (ScriptDebugModeSync) Build

func (c ScriptDebugModeSync) Build() Completed

type ScriptDebugModeYes

type ScriptDebugModeYes Completed

func (ScriptDebugModeYes) Build

func (c ScriptDebugModeYes) Build() Completed

type ScriptExists

type ScriptExists Completed

func (ScriptExists) Sha1

func (c ScriptExists) Sha1(sha1 ...string) ScriptExistsSha1

type ScriptExistsSha1

type ScriptExistsSha1 Completed

func (ScriptExistsSha1) Build

func (c ScriptExistsSha1) Build() Completed

func (ScriptExistsSha1) Sha1

func (c ScriptExistsSha1) Sha1(sha1 ...string) ScriptExistsSha1

type ScriptFlush

type ScriptFlush Completed

func (ScriptFlush) Async

func (c ScriptFlush) Async() ScriptFlushAsync

func (ScriptFlush) Build

func (c ScriptFlush) Build() Completed

func (ScriptFlush) Sync

type ScriptFlushAsync added in v0.0.2

type ScriptFlushAsync Completed

func (ScriptFlushAsync) Build added in v0.0.2

func (c ScriptFlushAsync) Build() Completed

type ScriptFlushAsyncSync

type ScriptFlushAsyncSync Completed

func (ScriptFlushAsyncSync) Build

func (c ScriptFlushAsyncSync) Build() Completed

type ScriptKill

type ScriptKill Completed

func (ScriptKill) Build

func (c ScriptKill) Build() Completed

type ScriptLoad

type ScriptLoad Completed

func (ScriptLoad) Script

func (c ScriptLoad) Script(script string) ScriptLoadScript

type ScriptLoadScript

type ScriptLoadScript Completed

func (ScriptLoadScript) Build

func (c ScriptLoadScript) Build() Completed

type Sdiff

type Sdiff Completed

func (Sdiff) Key

func (c Sdiff) Key(key ...string) SdiffKey

type SdiffKey

type SdiffKey Completed

func (SdiffKey) Build

func (c SdiffKey) Build() Completed

func (SdiffKey) Key

func (c SdiffKey) Key(key ...string) SdiffKey

type Sdiffstore

type Sdiffstore Completed

func (Sdiffstore) Destination

func (c Sdiffstore) Destination(destination string) SdiffstoreDestination

type SdiffstoreDestination

type SdiffstoreDestination Completed

func (SdiffstoreDestination) Key

type SdiffstoreKey

type SdiffstoreKey Completed

func (SdiffstoreKey) Build

func (c SdiffstoreKey) Build() Completed

func (SdiffstoreKey) Key

func (c SdiffstoreKey) Key(key ...string) SdiffstoreKey

type Select

type Select Completed

func (Select) Index

func (c Select) Index(index int64) SelectIndex

type SelectIndex

type SelectIndex Completed

func (SelectIndex) Build

func (c SelectIndex) Build() Completed

type SentinelFailover added in v0.0.30

type SentinelFailover Completed

func (SentinelFailover) Master added in v0.0.30

type SentinelFailoverMaster added in v0.0.30

type SentinelFailoverMaster Completed

func (SentinelFailoverMaster) Build added in v0.0.30

type SentinelGetMasterAddrByName added in v0.0.30

type SentinelGetMasterAddrByName Completed

func (SentinelGetMasterAddrByName) Master added in v0.0.30

type SentinelGetMasterAddrByNameMaster added in v0.0.30

type SentinelGetMasterAddrByNameMaster Completed

func (SentinelGetMasterAddrByNameMaster) Build added in v0.0.30

type SentinelSentinels added in v0.0.30

type SentinelSentinels Completed

func (SentinelSentinels) Master added in v0.0.30

type SentinelSentinelsMaster added in v0.0.30

type SentinelSentinelsMaster Completed

func (SentinelSentinelsMaster) Build added in v0.0.30

type Set

type Set Completed

func (Set) Key

func (c Set) Key(key string) SetKey

type SetConditionNx

type SetConditionNx Completed

func (SetConditionNx) Build

func (c SetConditionNx) Build() Completed

func (SetConditionNx) ExSeconds added in v0.0.54

func (c SetConditionNx) ExSeconds(seconds int64) SetExpirationExSeconds

func (SetConditionNx) ExatTimestamp added in v0.0.54

func (c SetConditionNx) ExatTimestamp(timestamp int64) SetExpirationExatTimestamp

func (SetConditionNx) Get

func (c SetConditionNx) Get() SetGet

func (SetConditionNx) Keepttl added in v0.0.54

func (SetConditionNx) PxMilliseconds added in v0.0.54

func (c SetConditionNx) PxMilliseconds(milliseconds int64) SetExpirationPxMilliseconds

func (SetConditionNx) PxatMillisecondsTimestamp added in v0.0.54

func (c SetConditionNx) PxatMillisecondsTimestamp(millisecondsTimestamp int64) SetExpirationPxatMillisecondsTimestamp

type SetConditionXx

type SetConditionXx Completed

func (SetConditionXx) Build

func (c SetConditionXx) Build() Completed

func (SetConditionXx) ExSeconds added in v0.0.54

func (c SetConditionXx) ExSeconds(seconds int64) SetExpirationExSeconds

func (SetConditionXx) ExatTimestamp added in v0.0.54

func (c SetConditionXx) ExatTimestamp(timestamp int64) SetExpirationExatTimestamp

func (SetConditionXx) Get

func (c SetConditionXx) Get() SetGet

func (SetConditionXx) Keepttl added in v0.0.54

func (SetConditionXx) PxMilliseconds added in v0.0.54

func (c SetConditionXx) PxMilliseconds(milliseconds int64) SetExpirationPxMilliseconds

func (SetConditionXx) PxatMillisecondsTimestamp added in v0.0.54

func (c SetConditionXx) PxatMillisecondsTimestamp(millisecondsTimestamp int64) SetExpirationPxatMillisecondsTimestamp

type SetExpirationExSeconds added in v0.0.2

type SetExpirationExSeconds Completed

func (SetExpirationExSeconds) Build added in v0.0.2

type SetExpirationExatTimestamp added in v0.0.2

type SetExpirationExatTimestamp Completed

func (SetExpirationExatTimestamp) Build added in v0.0.2

type SetExpirationKeepttl

type SetExpirationKeepttl Completed

func (SetExpirationKeepttl) Build

func (c SetExpirationKeepttl) Build() Completed

type SetExpirationPxMilliseconds added in v0.0.2

type SetExpirationPxMilliseconds Completed

func (SetExpirationPxMilliseconds) Build added in v0.0.2

type SetExpirationPxatMillisecondsTimestamp added in v0.0.2

type SetExpirationPxatMillisecondsTimestamp Completed

func (SetExpirationPxatMillisecondsTimestamp) Build added in v0.0.2

type SetGet added in v0.0.2

type SetGet Completed

func (SetGet) Build added in v0.0.2

func (c SetGet) Build() Completed

func (SetGet) ExSeconds added in v0.0.54

func (c SetGet) ExSeconds(seconds int64) SetExpirationExSeconds

func (SetGet) ExatTimestamp added in v0.0.54

func (c SetGet) ExatTimestamp(timestamp int64) SetExpirationExatTimestamp

func (SetGet) Keepttl added in v0.0.54

func (c SetGet) Keepttl() SetExpirationKeepttl

func (SetGet) PxMilliseconds added in v0.0.54

func (c SetGet) PxMilliseconds(milliseconds int64) SetExpirationPxMilliseconds

func (SetGet) PxatMillisecondsTimestamp added in v0.0.54

func (c SetGet) PxatMillisecondsTimestamp(millisecondsTimestamp int64) SetExpirationPxatMillisecondsTimestamp

type SetKey

type SetKey Completed

func (SetKey) Value

func (c SetKey) Value(value string) SetValue

type SetValue

type SetValue Completed

func (SetValue) Build

func (c SetValue) Build() Completed

func (SetValue) ExSeconds added in v0.0.2

func (c SetValue) ExSeconds(seconds int64) SetExpirationExSeconds

func (SetValue) ExatTimestamp added in v0.0.2

func (c SetValue) ExatTimestamp(timestamp int64) SetExpirationExatTimestamp

func (SetValue) Get

func (c SetValue) Get() SetGet

func (SetValue) Keepttl

func (c SetValue) Keepttl() SetExpirationKeepttl

func (SetValue) Nx

func (c SetValue) Nx() SetConditionNx

func (SetValue) PxMilliseconds added in v0.0.2

func (c SetValue) PxMilliseconds(milliseconds int64) SetExpirationPxMilliseconds

func (SetValue) PxatMillisecondsTimestamp added in v0.0.2

func (c SetValue) PxatMillisecondsTimestamp(millisecondsTimestamp int64) SetExpirationPxatMillisecondsTimestamp

func (SetValue) Xx

func (c SetValue) Xx() SetConditionXx

type Setbit

type Setbit Completed

func (Setbit) Key

func (c Setbit) Key(key string) SetbitKey

type SetbitKey

type SetbitKey Completed

func (SetbitKey) Offset

func (c SetbitKey) Offset(offset int64) SetbitOffset

type SetbitOffset

type SetbitOffset Completed

func (SetbitOffset) Value

func (c SetbitOffset) Value(value int64) SetbitValue

type SetbitValue

type SetbitValue Completed

func (SetbitValue) Build

func (c SetbitValue) Build() Completed

type Setex

type Setex Completed

func (Setex) Key

func (c Setex) Key(key string) SetexKey

type SetexKey

type SetexKey Completed

func (SetexKey) Seconds

func (c SetexKey) Seconds(seconds int64) SetexSeconds

type SetexSeconds

type SetexSeconds Completed

func (SetexSeconds) Value

func (c SetexSeconds) Value(value string) SetexValue

type SetexValue

type SetexValue Completed

func (SetexValue) Build

func (c SetexValue) Build() Completed

type Setnx

type Setnx Completed

func (Setnx) Key

func (c Setnx) Key(key string) SetnxKey

type SetnxKey

type SetnxKey Completed

func (SetnxKey) Value

func (c SetnxKey) Value(value string) SetnxValue

type SetnxValue

type SetnxValue Completed

func (SetnxValue) Build

func (c SetnxValue) Build() Completed

type Setrange

type Setrange Completed

func (Setrange) Key

func (c Setrange) Key(key string) SetrangeKey

type SetrangeKey

type SetrangeKey Completed

func (SetrangeKey) Offset

func (c SetrangeKey) Offset(offset int64) SetrangeOffset

type SetrangeOffset

type SetrangeOffset Completed

func (SetrangeOffset) Value

func (c SetrangeOffset) Value(value string) SetrangeValue

type SetrangeValue

type SetrangeValue Completed

func (SetrangeValue) Build

func (c SetrangeValue) Build() Completed

type Shutdown

type Shutdown Completed

func (Shutdown) Abort added in v0.0.34

func (c Shutdown) Abort() ShutdownAbort

func (Shutdown) Build

func (c Shutdown) Build() Completed

func (Shutdown) Force added in v0.0.34

func (c Shutdown) Force() ShutdownForce

func (Shutdown) Nosave

func (c Shutdown) Nosave() ShutdownSaveModeNosave

func (Shutdown) Now added in v0.0.34

func (c Shutdown) Now() ShutdownNow

func (Shutdown) Save

func (c Shutdown) Save() ShutdownSaveModeSave

type ShutdownAbort added in v0.0.34

type ShutdownAbort Completed

func (ShutdownAbort) Build added in v0.0.34

func (c ShutdownAbort) Build() Completed

type ShutdownForce added in v0.0.34

type ShutdownForce Completed

func (ShutdownForce) Abort added in v0.0.34

func (c ShutdownForce) Abort() ShutdownAbort

func (ShutdownForce) Build added in v0.0.34

func (c ShutdownForce) Build() Completed

type ShutdownNow added in v0.0.34

type ShutdownNow Completed

func (ShutdownNow) Abort added in v0.0.34

func (c ShutdownNow) Abort() ShutdownAbort

func (ShutdownNow) Build added in v0.0.34

func (c ShutdownNow) Build() Completed

func (ShutdownNow) Force added in v0.0.34

func (c ShutdownNow) Force() ShutdownForce

type ShutdownSaveModeNosave

type ShutdownSaveModeNosave Completed

func (ShutdownSaveModeNosave) Abort added in v0.0.34

func (ShutdownSaveModeNosave) Build

func (ShutdownSaveModeNosave) Force added in v0.0.34

func (ShutdownSaveModeNosave) Now added in v0.0.34

type ShutdownSaveModeSave

type ShutdownSaveModeSave Completed

func (ShutdownSaveModeSave) Abort added in v0.0.34

func (ShutdownSaveModeSave) Build

func (c ShutdownSaveModeSave) Build() Completed

func (ShutdownSaveModeSave) Force added in v0.0.34

func (ShutdownSaveModeSave) Now added in v0.0.34

type Sinter

type Sinter Completed

func (Sinter) Key

func (c Sinter) Key(key ...string) SinterKey

type SinterKey

type SinterKey Completed

func (SinterKey) Build

func (c SinterKey) Build() Completed

func (SinterKey) Key

func (c SinterKey) Key(key ...string) SinterKey

type Sintercard

type Sintercard Completed

func (Sintercard) Numkeys added in v0.0.2

func (c Sintercard) Numkeys(numkeys int64) SintercardNumkeys

type SintercardKey

type SintercardKey Completed

func (SintercardKey) Build

func (c SintercardKey) Build() Completed

func (SintercardKey) Key

func (c SintercardKey) Key(key ...string) SintercardKey

func (SintercardKey) Limit added in v0.0.2

func (c SintercardKey) Limit(limit int64) SintercardLimit

type SintercardLimit added in v0.0.2

type SintercardLimit Completed

func (SintercardLimit) Build added in v0.0.2

func (c SintercardLimit) Build() Completed

type SintercardNumkeys added in v0.0.2

type SintercardNumkeys Completed

func (SintercardNumkeys) Key added in v0.0.2

func (c SintercardNumkeys) Key(key ...string) SintercardKey

type Sinterstore

type Sinterstore Completed

func (Sinterstore) Destination

func (c Sinterstore) Destination(destination string) SinterstoreDestination

type SinterstoreDestination

type SinterstoreDestination Completed

func (SinterstoreDestination) Key

type SinterstoreKey

type SinterstoreKey Completed

func (SinterstoreKey) Build

func (c SinterstoreKey) Build() Completed

func (SinterstoreKey) Key

func (c SinterstoreKey) Key(key ...string) SinterstoreKey

type Sismember

type Sismember Completed

func (Sismember) Key

func (c Sismember) Key(key string) SismemberKey

type SismemberKey

type SismemberKey Completed

func (SismemberKey) Member

func (c SismemberKey) Member(member string) SismemberMember

type SismemberMember

type SismemberMember Completed

func (SismemberMember) Build

func (c SismemberMember) Build() Completed

func (SismemberMember) Cache

func (c SismemberMember) Cache() Cacheable

type Slaveof

type Slaveof Completed

func (Slaveof) Host

func (c Slaveof) Host(host string) SlaveofHost

type SlaveofHost

type SlaveofHost Completed

func (SlaveofHost) Port

func (c SlaveofHost) Port(port int64) SlaveofPort

type SlaveofPort

type SlaveofPort Completed

func (SlaveofPort) Build

func (c SlaveofPort) Build() Completed

type SlowlogGet added in v0.0.2

type SlowlogGet Completed

func (SlowlogGet) Build added in v0.0.2

func (c SlowlogGet) Build() Completed

func (SlowlogGet) Count added in v0.0.2

func (c SlowlogGet) Count(count int64) SlowlogGetCount

type SlowlogGetCount added in v0.0.2

type SlowlogGetCount Completed

func (SlowlogGetCount) Build added in v0.0.2

func (c SlowlogGetCount) Build() Completed

type SlowlogHelp added in v0.0.2

type SlowlogHelp Completed

func (SlowlogHelp) Build added in v0.0.2

func (c SlowlogHelp) Build() Completed

type SlowlogLen added in v0.0.2

type SlowlogLen Completed

func (SlowlogLen) Build added in v0.0.2

func (c SlowlogLen) Build() Completed

type SlowlogReset added in v0.0.2

type SlowlogReset Completed

func (SlowlogReset) Build added in v0.0.2

func (c SlowlogReset) Build() Completed

type Smembers

type Smembers Completed

func (Smembers) Key

func (c Smembers) Key(key string) SmembersKey

type SmembersKey

type SmembersKey Completed

func (SmembersKey) Build

func (c SmembersKey) Build() Completed

func (SmembersKey) Cache

func (c SmembersKey) Cache() Cacheable

type Smismember

type Smismember Completed

func (Smismember) Key

func (c Smismember) Key(key string) SmismemberKey

type SmismemberKey

type SmismemberKey Completed

func (SmismemberKey) Member

func (c SmismemberKey) Member(member ...string) SmismemberMember

type SmismemberMember

type SmismemberMember Completed

func (SmismemberMember) Build

func (c SmismemberMember) Build() Completed

func (SmismemberMember) Cache

func (c SmismemberMember) Cache() Cacheable

func (SmismemberMember) Member

func (c SmismemberMember) Member(member ...string) SmismemberMember

type Smove

type Smove Completed

func (Smove) Source

func (c Smove) Source(source string) SmoveSource

type SmoveDestination

type SmoveDestination Completed

func (SmoveDestination) Member

func (c SmoveDestination) Member(member string) SmoveMember

type SmoveMember

type SmoveMember Completed

func (SmoveMember) Build

func (c SmoveMember) Build() Completed

type SmoveSource

type SmoveSource Completed

func (SmoveSource) Destination

func (c SmoveSource) Destination(destination string) SmoveDestination

type Sort

type Sort Completed

func (Sort) Key

func (c Sort) Key(key string) SortKey

type SortBy

type SortBy Completed

func (SortBy) Alpha

func (c SortBy) Alpha() SortSortingAlpha

func (SortBy) Asc

func (c SortBy) Asc() SortOrderAsc

func (SortBy) Build

func (c SortBy) Build() Completed

func (SortBy) Desc

func (c SortBy) Desc() SortOrderDesc

func (SortBy) Get

func (c SortBy) Get() SortGet

func (SortBy) Limit

func (c SortBy) Limit(offset int64, count int64) SortLimit

func (SortBy) Store

func (c SortBy) Store(destination string) SortStore

type SortGet

type SortGet Completed

func (SortGet) Alpha

func (c SortGet) Alpha() SortSortingAlpha

func (SortGet) Asc

func (c SortGet) Asc() SortOrderAsc

func (SortGet) Build

func (c SortGet) Build() Completed

func (SortGet) Desc

func (c SortGet) Desc() SortOrderDesc

func (SortGet) Get

func (c SortGet) Get(pattern string) SortGet

func (SortGet) Store

func (c SortGet) Store(destination string) SortStore

type SortKey

type SortKey Completed

func (SortKey) Alpha

func (c SortKey) Alpha() SortSortingAlpha

func (SortKey) Asc

func (c SortKey) Asc() SortOrderAsc

func (SortKey) Build

func (c SortKey) Build() Completed

func (SortKey) By

func (c SortKey) By(pattern string) SortBy

func (SortKey) Desc

func (c SortKey) Desc() SortOrderDesc

func (SortKey) Get

func (c SortKey) Get() SortGet

func (SortKey) Limit

func (c SortKey) Limit(offset int64, count int64) SortLimit

func (SortKey) Store

func (c SortKey) Store(destination string) SortStore

type SortLimit

type SortLimit Completed

func (SortLimit) Alpha

func (c SortLimit) Alpha() SortSortingAlpha

func (SortLimit) Asc

func (c SortLimit) Asc() SortOrderAsc

func (SortLimit) Build

func (c SortLimit) Build() Completed

func (SortLimit) Desc

func (c SortLimit) Desc() SortOrderDesc

func (SortLimit) Get

func (c SortLimit) Get() SortGet

func (SortLimit) Store

func (c SortLimit) Store(destination string) SortStore

type SortOrderAsc

type SortOrderAsc Completed

func (SortOrderAsc) Alpha

func (c SortOrderAsc) Alpha() SortSortingAlpha

func (SortOrderAsc) Build

func (c SortOrderAsc) Build() Completed

func (SortOrderAsc) Store

func (c SortOrderAsc) Store(destination string) SortStore

type SortOrderDesc

type SortOrderDesc Completed

func (SortOrderDesc) Alpha

func (c SortOrderDesc) Alpha() SortSortingAlpha

func (SortOrderDesc) Build

func (c SortOrderDesc) Build() Completed

func (SortOrderDesc) Store

func (c SortOrderDesc) Store(destination string) SortStore

type SortRo

type SortRo Completed

func (SortRo) Key

func (c SortRo) Key(key string) SortRoKey

type SortRoBy

type SortRoBy Completed

func (SortRoBy) Alpha

func (c SortRoBy) Alpha() SortRoSortingAlpha

func (SortRoBy) Asc

func (c SortRoBy) Asc() SortRoOrderAsc

func (SortRoBy) Build

func (c SortRoBy) Build() Completed

func (SortRoBy) Cache

func (c SortRoBy) Cache() Cacheable

func (SortRoBy) Desc

func (c SortRoBy) Desc() SortRoOrderDesc

func (SortRoBy) Get

func (c SortRoBy) Get() SortRoGet

func (SortRoBy) Limit

func (c SortRoBy) Limit(offset int64, count int64) SortRoLimit

type SortRoGet

type SortRoGet Completed

func (SortRoGet) Alpha

func (c SortRoGet) Alpha() SortRoSortingAlpha

func (SortRoGet) Asc

func (c SortRoGet) Asc() SortRoOrderAsc

func (SortRoGet) Build

func (c SortRoGet) Build() Completed

func (SortRoGet) Cache

func (c SortRoGet) Cache() Cacheable

func (SortRoGet) Desc

func (c SortRoGet) Desc() SortRoOrderDesc

func (SortRoGet) Get

func (c SortRoGet) Get(pattern string) SortRoGet

type SortRoKey

type SortRoKey Completed

func (SortRoKey) Alpha

func (c SortRoKey) Alpha() SortRoSortingAlpha

func (SortRoKey) Asc

func (c SortRoKey) Asc() SortRoOrderAsc

func (SortRoKey) Build

func (c SortRoKey) Build() Completed

func (SortRoKey) By

func (c SortRoKey) By(pattern string) SortRoBy

func (SortRoKey) Cache

func (c SortRoKey) Cache() Cacheable

func (SortRoKey) Desc

func (c SortRoKey) Desc() SortRoOrderDesc

func (SortRoKey) Get

func (c SortRoKey) Get() SortRoGet

func (SortRoKey) Limit

func (c SortRoKey) Limit(offset int64, count int64) SortRoLimit

type SortRoLimit

type SortRoLimit Completed

func (SortRoLimit) Alpha

func (c SortRoLimit) Alpha() SortRoSortingAlpha

func (SortRoLimit) Asc

func (c SortRoLimit) Asc() SortRoOrderAsc

func (SortRoLimit) Build

func (c SortRoLimit) Build() Completed

func (SortRoLimit) Cache

func (c SortRoLimit) Cache() Cacheable

func (SortRoLimit) Desc

func (c SortRoLimit) Desc() SortRoOrderDesc

func (SortRoLimit) Get

func (c SortRoLimit) Get() SortRoGet

type SortRoOrderAsc

type SortRoOrderAsc Completed

func (SortRoOrderAsc) Alpha

func (SortRoOrderAsc) Build

func (c SortRoOrderAsc) Build() Completed

func (SortRoOrderAsc) Cache

func (c SortRoOrderAsc) Cache() Cacheable

type SortRoOrderDesc

type SortRoOrderDesc Completed

func (SortRoOrderDesc) Alpha

func (SortRoOrderDesc) Build

func (c SortRoOrderDesc) Build() Completed

func (SortRoOrderDesc) Cache

func (c SortRoOrderDesc) Cache() Cacheable

type SortRoSortingAlpha

type SortRoSortingAlpha Completed

func (SortRoSortingAlpha) Build

func (c SortRoSortingAlpha) Build() Completed

func (SortRoSortingAlpha) Cache

func (c SortRoSortingAlpha) Cache() Cacheable

type SortSortingAlpha

type SortSortingAlpha Completed

func (SortSortingAlpha) Build

func (c SortSortingAlpha) Build() Completed

func (SortSortingAlpha) Store

func (c SortSortingAlpha) Store(destination string) SortStore

type SortStore

type SortStore Completed

func (SortStore) Build

func (c SortStore) Build() Completed

type Spop

type Spop Completed

func (Spop) Key

func (c Spop) Key(key string) SpopKey

type SpopCount

type SpopCount Completed

func (SpopCount) Build

func (c SpopCount) Build() Completed

type SpopKey

type SpopKey Completed

func (SpopKey) Build

func (c SpopKey) Build() Completed

func (SpopKey) Count

func (c SpopKey) Count(count int64) SpopCount

type Spublish added in v0.0.34

type Spublish Completed

func (Spublish) Channel added in v0.0.34

func (c Spublish) Channel(channel string) SpublishChannel

type SpublishChannel added in v0.0.34

type SpublishChannel Completed

func (SpublishChannel) Message added in v0.0.34

func (c SpublishChannel) Message(message string) SpublishMessage

type SpublishMessage added in v0.0.34

type SpublishMessage Completed

func (SpublishMessage) Build added in v0.0.34

func (c SpublishMessage) Build() Completed

type Srandmember

type Srandmember Completed

func (Srandmember) Key

func (c Srandmember) Key(key string) SrandmemberKey

type SrandmemberCount

type SrandmemberCount Completed

func (SrandmemberCount) Build

func (c SrandmemberCount) Build() Completed

type SrandmemberKey

type SrandmemberKey Completed

func (SrandmemberKey) Build

func (c SrandmemberKey) Build() Completed

func (SrandmemberKey) Count

func (c SrandmemberKey) Count(count int64) SrandmemberCount

type Srem

type Srem Completed

func (Srem) Key

func (c Srem) Key(key string) SremKey

type SremKey

type SremKey Completed

func (SremKey) Member

func (c SremKey) Member(member ...string) SremMember

type SremMember

type SremMember Completed

func (SremMember) Build

func (c SremMember) Build() Completed

func (SremMember) Member

func (c SremMember) Member(member ...string) SremMember

type Sscan

type Sscan Completed

func (Sscan) Key

func (c Sscan) Key(key string) SscanKey

type SscanCount

type SscanCount Completed

func (SscanCount) Build

func (c SscanCount) Build() Completed

type SscanCursor

type SscanCursor Completed

func (SscanCursor) Build

func (c SscanCursor) Build() Completed

func (SscanCursor) Count

func (c SscanCursor) Count(count int64) SscanCount

func (SscanCursor) Match

func (c SscanCursor) Match(pattern string) SscanMatch

type SscanKey

type SscanKey Completed

func (SscanKey) Cursor

func (c SscanKey) Cursor(cursor uint64) SscanCursor

type SscanMatch

type SscanMatch Completed

func (SscanMatch) Build

func (c SscanMatch) Build() Completed

func (SscanMatch) Count

func (c SscanMatch) Count(count int64) SscanCount

type Ssubscribe added in v0.0.34

type Ssubscribe Completed

func (Ssubscribe) Channel added in v0.0.34

func (c Ssubscribe) Channel(channel ...string) SsubscribeChannel

type SsubscribeChannel added in v0.0.34

type SsubscribeChannel Completed

func (SsubscribeChannel) Build added in v0.0.34

func (c SsubscribeChannel) Build() Completed

func (SsubscribeChannel) Channel added in v0.0.34

func (c SsubscribeChannel) Channel(channel ...string) SsubscribeChannel

type Strlen

type Strlen Completed

func (Strlen) Key

func (c Strlen) Key(key string) StrlenKey

type StrlenKey

type StrlenKey Completed

func (StrlenKey) Build

func (c StrlenKey) Build() Completed

func (StrlenKey) Cache

func (c StrlenKey) Cache() Cacheable

type Subscribe

type Subscribe Completed

func (Subscribe) Channel

func (c Subscribe) Channel(channel ...string) SubscribeChannel

type SubscribeChannel

type SubscribeChannel Completed

func (SubscribeChannel) Build

func (c SubscribeChannel) Build() Completed

func (SubscribeChannel) Channel

func (c SubscribeChannel) Channel(channel ...string) SubscribeChannel

type Sunion

type Sunion Completed

func (Sunion) Key

func (c Sunion) Key(key ...string) SunionKey

type SunionKey

type SunionKey Completed

func (SunionKey) Build

func (c SunionKey) Build() Completed

func (SunionKey) Key

func (c SunionKey) Key(key ...string) SunionKey

type Sunionstore

type Sunionstore Completed

func (Sunionstore) Destination

func (c Sunionstore) Destination(destination string) SunionstoreDestination

type SunionstoreDestination

type SunionstoreDestination Completed

func (SunionstoreDestination) Key

type SunionstoreKey

type SunionstoreKey Completed

func (SunionstoreKey) Build

func (c SunionstoreKey) Build() Completed

func (SunionstoreKey) Key

func (c SunionstoreKey) Key(key ...string) SunionstoreKey

type Sunsubscribe added in v0.0.34

type Sunsubscribe Completed

func (Sunsubscribe) Build added in v0.0.34

func (c Sunsubscribe) Build() Completed

func (Sunsubscribe) Channel added in v0.0.34

func (c Sunsubscribe) Channel(channel ...string) SunsubscribeChannel

type SunsubscribeChannel added in v0.0.34

type SunsubscribeChannel Completed

func (SunsubscribeChannel) Build added in v0.0.34

func (c SunsubscribeChannel) Build() Completed

func (SunsubscribeChannel) Channel added in v0.0.34

func (c SunsubscribeChannel) Channel(channel ...string) SunsubscribeChannel

type Swapdb

type Swapdb Completed

func (Swapdb) Index1

func (c Swapdb) Index1(index1 int64) SwapdbIndex1

type SwapdbIndex1

type SwapdbIndex1 Completed

func (SwapdbIndex1) Index2

func (c SwapdbIndex1) Index2(index2 int64) SwapdbIndex2

type SwapdbIndex2

type SwapdbIndex2 Completed

func (SwapdbIndex2) Build

func (c SwapdbIndex2) Build() Completed

type Sync

type Sync Completed

func (Sync) Build

func (c Sync) Build() Completed

type TdigestAdd added in v0.0.2

type TdigestAdd Completed

func (TdigestAdd) Key added in v0.0.2

func (c TdigestAdd) Key(key string) TdigestAddKey

type TdigestAddKey added in v0.0.2

type TdigestAddKey Completed

func (TdigestAddKey) Value added in v0.0.2

type TdigestAddValuesValue added in v0.0.2

type TdigestAddValuesValue Completed

func (TdigestAddValuesValue) Build added in v0.0.81

func (c TdigestAddValuesValue) Build() Completed

func (TdigestAddValuesValue) Value added in v0.0.81

type TdigestByrank added in v0.0.81

type TdigestByrank Completed

func (TdigestByrank) Key added in v0.0.81

type TdigestByrankKey added in v0.0.81

type TdigestByrankKey Completed

func (TdigestByrankKey) Rank added in v0.0.81

func (c TdigestByrankKey) Rank(rank ...float64) TdigestByrankRank

type TdigestByrankRank added in v0.0.81

type TdigestByrankRank Completed

func (TdigestByrankRank) Build added in v0.0.81

func (c TdigestByrankRank) Build() Completed

func (TdigestByrankRank) Rank added in v0.0.81

type TdigestByrevrank added in v0.0.81

type TdigestByrevrank Completed

func (TdigestByrevrank) Key added in v0.0.81

type TdigestByrevrankKey added in v0.0.81

type TdigestByrevrankKey Completed

func (TdigestByrevrankKey) ReverseRank added in v0.0.81

func (c TdigestByrevrankKey) ReverseRank(reverseRank ...float64) TdigestByrevrankReverseRank

type TdigestByrevrankReverseRank added in v0.0.81

type TdigestByrevrankReverseRank Completed

func (TdigestByrevrankReverseRank) Build added in v0.0.81

func (TdigestByrevrankReverseRank) ReverseRank added in v0.0.81

func (c TdigestByrevrankReverseRank) ReverseRank(reverseRank ...float64) TdigestByrevrankReverseRank

type TdigestCdf added in v0.0.2

type TdigestCdf Completed

func (TdigestCdf) Key added in v0.0.2

func (c TdigestCdf) Key(key string) TdigestCdfKey

type TdigestCdfKey added in v0.0.2

type TdigestCdfKey Completed

func (TdigestCdfKey) Value added in v0.0.2

func (c TdigestCdfKey) Value(value ...float64) TdigestCdfValue

type TdigestCdfValue added in v0.0.2

type TdigestCdfValue Completed

func (TdigestCdfValue) Build added in v0.0.2

func (c TdigestCdfValue) Build() Completed

func (TdigestCdfValue) Value added in v0.0.81

func (c TdigestCdfValue) Value(value ...float64) TdigestCdfValue

type TdigestCreate added in v0.0.2

type TdigestCreate Completed

func (TdigestCreate) Key added in v0.0.2

type TdigestCreateCompression added in v0.0.2

type TdigestCreateCompression Completed

func (TdigestCreateCompression) Build added in v0.0.2

type TdigestCreateKey added in v0.0.2

type TdigestCreateKey Completed

func (TdigestCreateKey) Build added in v0.0.72

func (c TdigestCreateKey) Build() Completed

func (TdigestCreateKey) Compression added in v0.0.2

func (c TdigestCreateKey) Compression(compression int64) TdigestCreateCompression

type TdigestInfo added in v0.0.2

type TdigestInfo Completed

func (TdigestInfo) Key added in v0.0.2

func (c TdigestInfo) Key(key string) TdigestInfoKey

type TdigestInfoKey added in v0.0.2

type TdigestInfoKey Completed

func (TdigestInfoKey) Build added in v0.0.2

func (c TdigestInfoKey) Build() Completed

type TdigestMax added in v0.0.2

type TdigestMax Completed

func (TdigestMax) Key added in v0.0.2

func (c TdigestMax) Key(key string) TdigestMaxKey

type TdigestMaxKey added in v0.0.2

type TdigestMaxKey Completed

func (TdigestMaxKey) Build added in v0.0.2

func (c TdigestMaxKey) Build() Completed

type TdigestMerge added in v0.0.2

type TdigestMerge Completed

func (TdigestMerge) DestinationKey added in v0.0.72

func (c TdigestMerge) DestinationKey(destinationKey string) TdigestMergeDestinationKey

type TdigestMergeConfigCompression added in v0.0.81

type TdigestMergeConfigCompression Completed

func (TdigestMergeConfigCompression) Build added in v0.0.81

func (TdigestMergeConfigCompression) Override added in v0.0.81

type TdigestMergeDestinationKey added in v0.0.72

type TdigestMergeDestinationKey Completed

func (TdigestMergeDestinationKey) Numkeys added in v0.0.81

type TdigestMergeNumkeys added in v0.0.81

type TdigestMergeNumkeys Completed

func (TdigestMergeNumkeys) SourceKey added in v0.0.81

func (c TdigestMergeNumkeys) SourceKey(sourceKey ...string) TdigestMergeSourceKey

type TdigestMergeOverride added in v0.0.81

type TdigestMergeOverride Completed

func (TdigestMergeOverride) Build added in v0.0.81

func (c TdigestMergeOverride) Build() Completed

type TdigestMergeSourceKey added in v0.0.72

type TdigestMergeSourceKey Completed

func (TdigestMergeSourceKey) Build added in v0.0.72

func (c TdigestMergeSourceKey) Build() Completed

func (TdigestMergeSourceKey) Compression added in v0.0.81

func (c TdigestMergeSourceKey) Compression(compression int64) TdigestMergeConfigCompression

func (TdigestMergeSourceKey) Override added in v0.0.81

func (TdigestMergeSourceKey) SourceKey added in v0.0.72

func (c TdigestMergeSourceKey) SourceKey(sourceKey ...string) TdigestMergeSourceKey

type TdigestMin added in v0.0.2

type TdigestMin Completed

func (TdigestMin) Key added in v0.0.2

func (c TdigestMin) Key(key string) TdigestMinKey

type TdigestMinKey added in v0.0.2

type TdigestMinKey Completed

func (TdigestMinKey) Build added in v0.0.2

func (c TdigestMinKey) Build() Completed

type TdigestQuantile added in v0.0.2

type TdigestQuantile Completed

func (TdigestQuantile) Key added in v0.0.2

type TdigestQuantileKey added in v0.0.2

type TdigestQuantileKey Completed

func (TdigestQuantileKey) Quantile added in v0.0.2

func (c TdigestQuantileKey) Quantile(quantile ...float64) TdigestQuantileQuantile

type TdigestQuantileQuantile added in v0.0.2

type TdigestQuantileQuantile Completed

func (TdigestQuantileQuantile) Build added in v0.0.2

func (TdigestQuantileQuantile) Quantile added in v0.0.54

type TdigestRank added in v0.0.81

type TdigestRank Completed

func (TdigestRank) Key added in v0.0.81

func (c TdigestRank) Key(key string) TdigestRankKey

type TdigestRankKey added in v0.0.81

type TdigestRankKey Completed

func (TdigestRankKey) Value added in v0.0.81

func (c TdigestRankKey) Value(value ...float64) TdigestRankValue

type TdigestRankValue added in v0.0.81

type TdigestRankValue Completed

func (TdigestRankValue) Build added in v0.0.81

func (c TdigestRankValue) Build() Completed

func (TdigestRankValue) Value added in v0.0.81

func (c TdigestRankValue) Value(value ...float64) TdigestRankValue

type TdigestReset added in v0.0.2

type TdigestReset Completed

func (TdigestReset) Key added in v0.0.2

func (c TdigestReset) Key(key string) TdigestResetKey

type TdigestResetKey added in v0.0.2

type TdigestResetKey Completed

func (TdigestResetKey) Build added in v0.0.2

func (c TdigestResetKey) Build() Completed

type TdigestRevrank added in v0.0.81

type TdigestRevrank Completed

func (TdigestRevrank) Key added in v0.0.81

type TdigestRevrankKey added in v0.0.81

type TdigestRevrankKey Completed

func (TdigestRevrankKey) Value added in v0.0.81

func (c TdigestRevrankKey) Value(value ...float64) TdigestRevrankValue

type TdigestRevrankValue added in v0.0.81

type TdigestRevrankValue Completed

func (TdigestRevrankValue) Build added in v0.0.81

func (c TdigestRevrankValue) Build() Completed

func (TdigestRevrankValue) Value added in v0.0.81

type TdigestTrimmedMean added in v0.0.54

type TdigestTrimmedMean Completed

func (TdigestTrimmedMean) Key added in v0.0.54

type TdigestTrimmedMeanHighCutQuantile added in v0.0.54

type TdigestTrimmedMeanHighCutQuantile Completed

func (TdigestTrimmedMeanHighCutQuantile) Build added in v0.0.54

type TdigestTrimmedMeanKey added in v0.0.54

type TdigestTrimmedMeanKey Completed

func (TdigestTrimmedMeanKey) LowCutQuantile added in v0.0.54

func (c TdigestTrimmedMeanKey) LowCutQuantile(lowCutQuantile float64) TdigestTrimmedMeanLowCutQuantile

type TdigestTrimmedMeanLowCutQuantile added in v0.0.54

type TdigestTrimmedMeanLowCutQuantile Completed

func (TdigestTrimmedMeanLowCutQuantile) HighCutQuantile added in v0.0.54

type Time

type Time Completed

func (Time) Build

func (c Time) Build() Completed

type TopkAdd added in v0.0.2

type TopkAdd Completed

func (TopkAdd) Key added in v0.0.2

func (c TopkAdd) Key(key string) TopkAddKey

type TopkAddItems added in v0.0.2

type TopkAddItems Completed

func (TopkAddItems) Build added in v0.0.2

func (c TopkAddItems) Build() Completed

func (TopkAddItems) Items added in v0.0.2

func (c TopkAddItems) Items(items ...string) TopkAddItems

type TopkAddKey added in v0.0.2

type TopkAddKey Completed

func (TopkAddKey) Items added in v0.0.2

func (c TopkAddKey) Items(items ...string) TopkAddItems

type TopkCount added in v0.0.54

type TopkCount Completed

func (TopkCount) Key added in v0.0.54

func (c TopkCount) Key(key string) TopkCountKey

type TopkCountItem added in v0.0.54

type TopkCountItem Completed

func (TopkCountItem) Build added in v0.0.54

func (c TopkCountItem) Build() Completed

func (TopkCountItem) Item added in v0.0.54

func (c TopkCountItem) Item(item ...string) TopkCountItem

type TopkCountKey added in v0.0.54

type TopkCountKey Completed

func (TopkCountKey) Item added in v0.0.54

func (c TopkCountKey) Item(item ...string) TopkCountItem

type TopkIncrby added in v0.0.2

type TopkIncrby Completed

func (TopkIncrby) Key added in v0.0.2

func (c TopkIncrby) Key(key string) TopkIncrbyKey

type TopkIncrbyItemsIncrement added in v0.0.2

type TopkIncrbyItemsIncrement Completed

func (TopkIncrbyItemsIncrement) Build added in v0.0.2

func (TopkIncrbyItemsIncrement) Item added in v0.0.2

type TopkIncrbyItemsItem added in v0.0.2

type TopkIncrbyItemsItem Completed

func (TopkIncrbyItemsItem) Increment added in v0.0.2

func (c TopkIncrbyItemsItem) Increment(increment int64) TopkIncrbyItemsIncrement

type TopkIncrbyKey added in v0.0.2

type TopkIncrbyKey Completed

func (TopkIncrbyKey) Item added in v0.0.2

type TopkInfo added in v0.0.2

type TopkInfo Completed

func (TopkInfo) Key added in v0.0.2

func (c TopkInfo) Key(key string) TopkInfoKey

type TopkInfoKey added in v0.0.2

type TopkInfoKey Completed

func (TopkInfoKey) Build added in v0.0.2

func (c TopkInfoKey) Build() Completed

func (TopkInfoKey) Cache added in v0.0.2

func (c TopkInfoKey) Cache() Cacheable

type TopkList added in v0.0.2

type TopkList Completed

func (TopkList) Key added in v0.0.2

func (c TopkList) Key(key string) TopkListKey

type TopkListKey added in v0.0.2

type TopkListKey Completed

func (TopkListKey) Build added in v0.0.81

func (c TopkListKey) Build() Completed

func (TopkListKey) Cache added in v0.0.81

func (c TopkListKey) Cache() Cacheable

func (TopkListKey) Withcount added in v0.0.54

func (c TopkListKey) Withcount() TopkListWithcount

type TopkListWithcount added in v0.0.2

type TopkListWithcount Completed

func (TopkListWithcount) Build added in v0.0.2

func (c TopkListWithcount) Build() Completed

func (TopkListWithcount) Cache added in v0.0.2

func (c TopkListWithcount) Cache() Cacheable

type TopkQuery added in v0.0.2

type TopkQuery Completed

func (TopkQuery) Key added in v0.0.2

func (c TopkQuery) Key(key string) TopkQueryKey

type TopkQueryItem added in v0.0.2

type TopkQueryItem Completed

func (TopkQueryItem) Build added in v0.0.2

func (c TopkQueryItem) Build() Completed

func (TopkQueryItem) Cache added in v0.0.2

func (c TopkQueryItem) Cache() Cacheable

func (TopkQueryItem) Item added in v0.0.2

func (c TopkQueryItem) Item(item ...string) TopkQueryItem

type TopkQueryKey added in v0.0.2

type TopkQueryKey Completed

func (TopkQueryKey) Item added in v0.0.2

func (c TopkQueryKey) Item(item ...string) TopkQueryItem

type TopkReserve added in v0.0.2

type TopkReserve Completed

func (TopkReserve) Key added in v0.0.2

func (c TopkReserve) Key(key string) TopkReserveKey

type TopkReserveKey added in v0.0.2

type TopkReserveKey Completed

func (TopkReserveKey) Topk added in v0.0.2

func (c TopkReserveKey) Topk(topk int64) TopkReserveTopk

type TopkReserveParamsDecay added in v0.0.2

type TopkReserveParamsDecay Completed

func (TopkReserveParamsDecay) Build added in v0.0.2

type TopkReserveParamsDepth added in v0.0.2

type TopkReserveParamsDepth Completed

func (TopkReserveParamsDepth) Decay added in v0.0.2

type TopkReserveParamsWidth added in v0.0.2

type TopkReserveParamsWidth Completed

func (TopkReserveParamsWidth) Depth added in v0.0.2

type TopkReserveTopk added in v0.0.2

type TopkReserveTopk Completed

func (TopkReserveTopk) Build added in v0.0.2

func (c TopkReserveTopk) Build() Completed

func (TopkReserveTopk) Width added in v0.0.2

type Touch

type Touch Completed

func (Touch) Key

func (c Touch) Key(key ...string) TouchKey

type TouchKey

type TouchKey Completed

func (TouchKey) Build

func (c TouchKey) Build() Completed

func (TouchKey) Key

func (c TouchKey) Key(key ...string) TouchKey

type TsAdd added in v0.0.3

type TsAdd Completed

func (TsAdd) Key added in v0.0.3

func (c TsAdd) Key(key string) TsAddKey

type TsAddChunkSize added in v0.0.3

type TsAddChunkSize Completed

func (TsAddChunkSize) Build added in v0.0.3

func (c TsAddChunkSize) Build() Completed

func (TsAddChunkSize) Labels added in v0.0.3

func (c TsAddChunkSize) Labels() TsAddLabels

func (TsAddChunkSize) OnDuplicateBlock added in v0.0.3

func (c TsAddChunkSize) OnDuplicateBlock() TsAddOnDuplicateBlock

func (TsAddChunkSize) OnDuplicateFirst added in v0.0.3

func (c TsAddChunkSize) OnDuplicateFirst() TsAddOnDuplicateFirst

func (TsAddChunkSize) OnDuplicateLast added in v0.0.3

func (c TsAddChunkSize) OnDuplicateLast() TsAddOnDuplicateLast

func (TsAddChunkSize) OnDuplicateMax added in v0.0.3

func (c TsAddChunkSize) OnDuplicateMax() TsAddOnDuplicateMax

func (TsAddChunkSize) OnDuplicateMin added in v0.0.3

func (c TsAddChunkSize) OnDuplicateMin() TsAddOnDuplicateMin

func (TsAddChunkSize) OnDuplicateSum added in v0.0.3

func (c TsAddChunkSize) OnDuplicateSum() TsAddOnDuplicateSum

type TsAddEncodingCompressed added in v0.0.3

type TsAddEncodingCompressed Completed

func (TsAddEncodingCompressed) Build added in v0.0.3

func (TsAddEncodingCompressed) ChunkSize added in v0.0.3

func (c TsAddEncodingCompressed) ChunkSize(size int64) TsAddChunkSize

func (TsAddEncodingCompressed) Labels added in v0.0.3

func (TsAddEncodingCompressed) OnDuplicateBlock added in v0.0.3

func (c TsAddEncodingCompressed) OnDuplicateBlock() TsAddOnDuplicateBlock

func (TsAddEncodingCompressed) OnDuplicateFirst added in v0.0.3

func (c TsAddEncodingCompressed) OnDuplicateFirst() TsAddOnDuplicateFirst

func (TsAddEncodingCompressed) OnDuplicateLast added in v0.0.3

func (c TsAddEncodingCompressed) OnDuplicateLast() TsAddOnDuplicateLast

func (TsAddEncodingCompressed) OnDuplicateMax added in v0.0.3

func (c TsAddEncodingCompressed) OnDuplicateMax() TsAddOnDuplicateMax

func (TsAddEncodingCompressed) OnDuplicateMin added in v0.0.3

func (c TsAddEncodingCompressed) OnDuplicateMin() TsAddOnDuplicateMin

func (TsAddEncodingCompressed) OnDuplicateSum added in v0.0.3

func (c TsAddEncodingCompressed) OnDuplicateSum() TsAddOnDuplicateSum

type TsAddEncodingUncompressed added in v0.0.3

type TsAddEncodingUncompressed Completed

func (TsAddEncodingUncompressed) Build added in v0.0.3

func (TsAddEncodingUncompressed) ChunkSize added in v0.0.3

func (TsAddEncodingUncompressed) Labels added in v0.0.3

func (TsAddEncodingUncompressed) OnDuplicateBlock added in v0.0.3

func (c TsAddEncodingUncompressed) OnDuplicateBlock() TsAddOnDuplicateBlock

func (TsAddEncodingUncompressed) OnDuplicateFirst added in v0.0.3

func (c TsAddEncodingUncompressed) OnDuplicateFirst() TsAddOnDuplicateFirst

func (TsAddEncodingUncompressed) OnDuplicateLast added in v0.0.3

func (c TsAddEncodingUncompressed) OnDuplicateLast() TsAddOnDuplicateLast

func (TsAddEncodingUncompressed) OnDuplicateMax added in v0.0.3

func (TsAddEncodingUncompressed) OnDuplicateMin added in v0.0.3

func (TsAddEncodingUncompressed) OnDuplicateSum added in v0.0.3

type TsAddKey added in v0.0.3

type TsAddKey Completed

func (TsAddKey) Timestamp added in v0.0.3

func (c TsAddKey) Timestamp(timestamp int64) TsAddTimestamp

type TsAddLabels added in v0.0.3

type TsAddLabels Completed

func (TsAddLabels) Build added in v0.0.3

func (c TsAddLabels) Build() Completed

func (TsAddLabels) Labels added in v0.0.3

func (c TsAddLabels) Labels(label string, value string) TsAddLabels

type TsAddOnDuplicateBlock added in v0.0.3

type TsAddOnDuplicateBlock Completed

func (TsAddOnDuplicateBlock) Build added in v0.0.3

func (c TsAddOnDuplicateBlock) Build() Completed

func (TsAddOnDuplicateBlock) Labels added in v0.0.3

type TsAddOnDuplicateFirst added in v0.0.3

type TsAddOnDuplicateFirst Completed

func (TsAddOnDuplicateFirst) Build added in v0.0.3

func (c TsAddOnDuplicateFirst) Build() Completed

func (TsAddOnDuplicateFirst) Labels added in v0.0.3

type TsAddOnDuplicateLast added in v0.0.3

type TsAddOnDuplicateLast Completed

func (TsAddOnDuplicateLast) Build added in v0.0.3

func (c TsAddOnDuplicateLast) Build() Completed

func (TsAddOnDuplicateLast) Labels added in v0.0.3

func (c TsAddOnDuplicateLast) Labels() TsAddLabels

type TsAddOnDuplicateMax added in v0.0.3

type TsAddOnDuplicateMax Completed

func (TsAddOnDuplicateMax) Build added in v0.0.3

func (c TsAddOnDuplicateMax) Build() Completed

func (TsAddOnDuplicateMax) Labels added in v0.0.3

func (c TsAddOnDuplicateMax) Labels() TsAddLabels

type TsAddOnDuplicateMin added in v0.0.3

type TsAddOnDuplicateMin Completed

func (TsAddOnDuplicateMin) Build added in v0.0.3

func (c TsAddOnDuplicateMin) Build() Completed

func (TsAddOnDuplicateMin) Labels added in v0.0.3

func (c TsAddOnDuplicateMin) Labels() TsAddLabels

type TsAddOnDuplicateSum added in v0.0.3

type TsAddOnDuplicateSum Completed

func (TsAddOnDuplicateSum) Build added in v0.0.3

func (c TsAddOnDuplicateSum) Build() Completed

func (TsAddOnDuplicateSum) Labels added in v0.0.3

func (c TsAddOnDuplicateSum) Labels() TsAddLabels

type TsAddRetention added in v0.0.3

type TsAddRetention Completed

func (TsAddRetention) Build added in v0.0.3

func (c TsAddRetention) Build() Completed

func (TsAddRetention) ChunkSize added in v0.0.3

func (c TsAddRetention) ChunkSize(size int64) TsAddChunkSize

func (TsAddRetention) EncodingCompressed added in v0.0.3

func (c TsAddRetention) EncodingCompressed() TsAddEncodingCompressed

func (TsAddRetention) EncodingUncompressed added in v0.0.3

func (c TsAddRetention) EncodingUncompressed() TsAddEncodingUncompressed

func (TsAddRetention) Labels added in v0.0.3

func (c TsAddRetention) Labels() TsAddLabels

func (TsAddRetention) OnDuplicateBlock added in v0.0.3

func (c TsAddRetention) OnDuplicateBlock() TsAddOnDuplicateBlock

func (TsAddRetention) OnDuplicateFirst added in v0.0.3

func (c TsAddRetention) OnDuplicateFirst() TsAddOnDuplicateFirst

func (TsAddRetention) OnDuplicateLast added in v0.0.3

func (c TsAddRetention) OnDuplicateLast() TsAddOnDuplicateLast

func (TsAddRetention) OnDuplicateMax added in v0.0.3

func (c TsAddRetention) OnDuplicateMax() TsAddOnDuplicateMax

func (TsAddRetention) OnDuplicateMin added in v0.0.3

func (c TsAddRetention) OnDuplicateMin() TsAddOnDuplicateMin

func (TsAddRetention) OnDuplicateSum added in v0.0.3

func (c TsAddRetention) OnDuplicateSum() TsAddOnDuplicateSum

type TsAddTimestamp added in v0.0.3

type TsAddTimestamp Completed

func (TsAddTimestamp) Value added in v0.0.3

func (c TsAddTimestamp) Value(value float64) TsAddValue

type TsAddValue added in v0.0.3

type TsAddValue Completed

func (TsAddValue) Build added in v0.0.3

func (c TsAddValue) Build() Completed

func (TsAddValue) ChunkSize added in v0.0.3

func (c TsAddValue) ChunkSize(size int64) TsAddChunkSize

func (TsAddValue) EncodingCompressed added in v0.0.3

func (c TsAddValue) EncodingCompressed() TsAddEncodingCompressed

func (TsAddValue) EncodingUncompressed added in v0.0.3

func (c TsAddValue) EncodingUncompressed() TsAddEncodingUncompressed

func (TsAddValue) Labels added in v0.0.3

func (c TsAddValue) Labels() TsAddLabels

func (TsAddValue) OnDuplicateBlock added in v0.0.3

func (c TsAddValue) OnDuplicateBlock() TsAddOnDuplicateBlock

func (TsAddValue) OnDuplicateFirst added in v0.0.3

func (c TsAddValue) OnDuplicateFirst() TsAddOnDuplicateFirst

func (TsAddValue) OnDuplicateLast added in v0.0.3

func (c TsAddValue) OnDuplicateLast() TsAddOnDuplicateLast

func (TsAddValue) OnDuplicateMax added in v0.0.3

func (c TsAddValue) OnDuplicateMax() TsAddOnDuplicateMax

func (TsAddValue) OnDuplicateMin added in v0.0.3

func (c TsAddValue) OnDuplicateMin() TsAddOnDuplicateMin

func (TsAddValue) OnDuplicateSum added in v0.0.3

func (c TsAddValue) OnDuplicateSum() TsAddOnDuplicateSum

func (TsAddValue) Retention added in v0.0.3

func (c TsAddValue) Retention(retentionperiod int64) TsAddRetention

type TsAlter added in v0.0.3

type TsAlter Completed

func (TsAlter) Key added in v0.0.3

func (c TsAlter) Key(key string) TsAlterKey

type TsAlterChunkSize added in v0.0.40

type TsAlterChunkSize Completed

func (TsAlterChunkSize) Build added in v0.0.40

func (c TsAlterChunkSize) Build() Completed

func (TsAlterChunkSize) DuplicatePolicyBlock added in v0.0.40

func (c TsAlterChunkSize) DuplicatePolicyBlock() TsAlterDuplicatePolicyBlock

func (TsAlterChunkSize) DuplicatePolicyFirst added in v0.0.40

func (c TsAlterChunkSize) DuplicatePolicyFirst() TsAlterDuplicatePolicyFirst

func (TsAlterChunkSize) DuplicatePolicyLast added in v0.0.40

func (c TsAlterChunkSize) DuplicatePolicyLast() TsAlterDuplicatePolicyLast

func (TsAlterChunkSize) DuplicatePolicyMax added in v0.0.40

func (c TsAlterChunkSize) DuplicatePolicyMax() TsAlterDuplicatePolicyMax

func (TsAlterChunkSize) DuplicatePolicyMin added in v0.0.40

func (c TsAlterChunkSize) DuplicatePolicyMin() TsAlterDuplicatePolicyMin

func (TsAlterChunkSize) DuplicatePolicySum added in v0.0.40

func (c TsAlterChunkSize) DuplicatePolicySum() TsAlterDuplicatePolicySum

func (TsAlterChunkSize) Labels added in v0.0.40

func (c TsAlterChunkSize) Labels() TsAlterLabels

type TsAlterDuplicatePolicyBlock added in v0.0.40

type TsAlterDuplicatePolicyBlock Completed

func (TsAlterDuplicatePolicyBlock) Build added in v0.0.40

func (TsAlterDuplicatePolicyBlock) Labels added in v0.0.40

type TsAlterDuplicatePolicyFirst added in v0.0.40

type TsAlterDuplicatePolicyFirst Completed

func (TsAlterDuplicatePolicyFirst) Build added in v0.0.40

func (TsAlterDuplicatePolicyFirst) Labels added in v0.0.40

type TsAlterDuplicatePolicyLast added in v0.0.40

type TsAlterDuplicatePolicyLast Completed

func (TsAlterDuplicatePolicyLast) Build added in v0.0.40

func (TsAlterDuplicatePolicyLast) Labels added in v0.0.40

type TsAlterDuplicatePolicyMax added in v0.0.40

type TsAlterDuplicatePolicyMax Completed

func (TsAlterDuplicatePolicyMax) Build added in v0.0.40

func (TsAlterDuplicatePolicyMax) Labels added in v0.0.40

type TsAlterDuplicatePolicyMin added in v0.0.40

type TsAlterDuplicatePolicyMin Completed

func (TsAlterDuplicatePolicyMin) Build added in v0.0.40

func (TsAlterDuplicatePolicyMin) Labels added in v0.0.40

type TsAlterDuplicatePolicySum added in v0.0.40

type TsAlterDuplicatePolicySum Completed

func (TsAlterDuplicatePolicySum) Build added in v0.0.40

func (TsAlterDuplicatePolicySum) Labels added in v0.0.40

type TsAlterKey added in v0.0.3

type TsAlterKey Completed

func (TsAlterKey) Build added in v0.0.3

func (c TsAlterKey) Build() Completed

func (TsAlterKey) ChunkSize added in v0.0.40

func (c TsAlterKey) ChunkSize(size int64) TsAlterChunkSize

func (TsAlterKey) DuplicatePolicyBlock added in v0.0.40

func (c TsAlterKey) DuplicatePolicyBlock() TsAlterDuplicatePolicyBlock

func (TsAlterKey) DuplicatePolicyFirst added in v0.0.40

func (c TsAlterKey) DuplicatePolicyFirst() TsAlterDuplicatePolicyFirst

func (TsAlterKey) DuplicatePolicyLast added in v0.0.40

func (c TsAlterKey) DuplicatePolicyLast() TsAlterDuplicatePolicyLast

func (TsAlterKey) DuplicatePolicyMax added in v0.0.40

func (c TsAlterKey) DuplicatePolicyMax() TsAlterDuplicatePolicyMax

func (TsAlterKey) DuplicatePolicyMin added in v0.0.40

func (c TsAlterKey) DuplicatePolicyMin() TsAlterDuplicatePolicyMin

func (TsAlterKey) DuplicatePolicySum added in v0.0.40

func (c TsAlterKey) DuplicatePolicySum() TsAlterDuplicatePolicySum

func (TsAlterKey) Labels added in v0.0.3

func (c TsAlterKey) Labels() TsAlterLabels

func (TsAlterKey) Retention added in v0.0.3

func (c TsAlterKey) Retention(retentionperiod int64) TsAlterRetention

type TsAlterLabels added in v0.0.3

type TsAlterLabels Completed

func (TsAlterLabels) Build added in v0.0.3

func (c TsAlterLabels) Build() Completed

func (TsAlterLabels) Labels added in v0.0.3

func (c TsAlterLabels) Labels(label string, value string) TsAlterLabels

type TsAlterRetention added in v0.0.3

type TsAlterRetention Completed

func (TsAlterRetention) Build added in v0.0.3

func (c TsAlterRetention) Build() Completed

func (TsAlterRetention) ChunkSize added in v0.0.40

func (c TsAlterRetention) ChunkSize(size int64) TsAlterChunkSize

func (TsAlterRetention) DuplicatePolicyBlock added in v0.0.40

func (c TsAlterRetention) DuplicatePolicyBlock() TsAlterDuplicatePolicyBlock

func (TsAlterRetention) DuplicatePolicyFirst added in v0.0.40

func (c TsAlterRetention) DuplicatePolicyFirst() TsAlterDuplicatePolicyFirst

func (TsAlterRetention) DuplicatePolicyLast added in v0.0.40

func (c TsAlterRetention) DuplicatePolicyLast() TsAlterDuplicatePolicyLast

func (TsAlterRetention) DuplicatePolicyMax added in v0.0.40

func (c TsAlterRetention) DuplicatePolicyMax() TsAlterDuplicatePolicyMax

func (TsAlterRetention) DuplicatePolicyMin added in v0.0.40

func (c TsAlterRetention) DuplicatePolicyMin() TsAlterDuplicatePolicyMin

func (TsAlterRetention) DuplicatePolicySum added in v0.0.40

func (c TsAlterRetention) DuplicatePolicySum() TsAlterDuplicatePolicySum

func (TsAlterRetention) Labels added in v0.0.3

func (c TsAlterRetention) Labels() TsAlterLabels

type TsCreate added in v0.0.3

type TsCreate Completed

func (TsCreate) Key added in v0.0.3

func (c TsCreate) Key(key string) TsCreateKey

type TsCreateChunkSize added in v0.0.3

type TsCreateChunkSize Completed

func (TsCreateChunkSize) Build added in v0.0.3

func (c TsCreateChunkSize) Build() Completed

func (TsCreateChunkSize) DuplicatePolicyBlock added in v0.0.3

func (c TsCreateChunkSize) DuplicatePolicyBlock() TsCreateDuplicatePolicyBlock

func (TsCreateChunkSize) DuplicatePolicyFirst added in v0.0.3

func (c TsCreateChunkSize) DuplicatePolicyFirst() TsCreateDuplicatePolicyFirst

func (TsCreateChunkSize) DuplicatePolicyLast added in v0.0.3

func (c TsCreateChunkSize) DuplicatePolicyLast() TsCreateDuplicatePolicyLast

func (TsCreateChunkSize) DuplicatePolicyMax added in v0.0.3

func (c TsCreateChunkSize) DuplicatePolicyMax() TsCreateDuplicatePolicyMax

func (TsCreateChunkSize) DuplicatePolicyMin added in v0.0.3

func (c TsCreateChunkSize) DuplicatePolicyMin() TsCreateDuplicatePolicyMin

func (TsCreateChunkSize) DuplicatePolicySum added in v0.0.3

func (c TsCreateChunkSize) DuplicatePolicySum() TsCreateDuplicatePolicySum

func (TsCreateChunkSize) Labels added in v0.0.3

func (c TsCreateChunkSize) Labels() TsCreateLabels

type TsCreateDuplicatePolicyBlock added in v0.0.3

type TsCreateDuplicatePolicyBlock Completed

func (TsCreateDuplicatePolicyBlock) Build added in v0.0.3

func (TsCreateDuplicatePolicyBlock) Labels added in v0.0.3

type TsCreateDuplicatePolicyFirst added in v0.0.3

type TsCreateDuplicatePolicyFirst Completed

func (TsCreateDuplicatePolicyFirst) Build added in v0.0.3

func (TsCreateDuplicatePolicyFirst) Labels added in v0.0.3

type TsCreateDuplicatePolicyLast added in v0.0.3

type TsCreateDuplicatePolicyLast Completed

func (TsCreateDuplicatePolicyLast) Build added in v0.0.3

func (TsCreateDuplicatePolicyLast) Labels added in v0.0.3

type TsCreateDuplicatePolicyMax added in v0.0.3

type TsCreateDuplicatePolicyMax Completed

func (TsCreateDuplicatePolicyMax) Build added in v0.0.3

func (TsCreateDuplicatePolicyMax) Labels added in v0.0.3

type TsCreateDuplicatePolicyMin added in v0.0.3

type TsCreateDuplicatePolicyMin Completed

func (TsCreateDuplicatePolicyMin) Build added in v0.0.3

func (TsCreateDuplicatePolicyMin) Labels added in v0.0.3

type TsCreateDuplicatePolicySum added in v0.0.3

type TsCreateDuplicatePolicySum Completed

func (TsCreateDuplicatePolicySum) Build added in v0.0.3

func (TsCreateDuplicatePolicySum) Labels added in v0.0.3

type TsCreateEncodingCompressed added in v0.0.3

type TsCreateEncodingCompressed Completed

func (TsCreateEncodingCompressed) Build added in v0.0.3

func (TsCreateEncodingCompressed) ChunkSize added in v0.0.3

func (TsCreateEncodingCompressed) DuplicatePolicyBlock added in v0.0.3

func (TsCreateEncodingCompressed) DuplicatePolicyFirst added in v0.0.3

func (TsCreateEncodingCompressed) DuplicatePolicyLast added in v0.0.3

func (TsCreateEncodingCompressed) DuplicatePolicyMax added in v0.0.3

func (TsCreateEncodingCompressed) DuplicatePolicyMin added in v0.0.3

func (TsCreateEncodingCompressed) DuplicatePolicySum added in v0.0.3

func (TsCreateEncodingCompressed) Labels added in v0.0.3

type TsCreateEncodingUncompressed added in v0.0.3

type TsCreateEncodingUncompressed Completed

func (TsCreateEncodingUncompressed) Build added in v0.0.3

func (TsCreateEncodingUncompressed) ChunkSize added in v0.0.3

func (TsCreateEncodingUncompressed) DuplicatePolicyBlock added in v0.0.3

func (TsCreateEncodingUncompressed) DuplicatePolicyFirst added in v0.0.3

func (TsCreateEncodingUncompressed) DuplicatePolicyLast added in v0.0.3

func (TsCreateEncodingUncompressed) DuplicatePolicyMax added in v0.0.3

func (TsCreateEncodingUncompressed) DuplicatePolicyMin added in v0.0.3

func (TsCreateEncodingUncompressed) DuplicatePolicySum added in v0.0.3

func (TsCreateEncodingUncompressed) Labels added in v0.0.3

type TsCreateKey added in v0.0.3

type TsCreateKey Completed

func (TsCreateKey) Build added in v0.0.3

func (c TsCreateKey) Build() Completed

func (TsCreateKey) ChunkSize added in v0.0.3

func (c TsCreateKey) ChunkSize(size int64) TsCreateChunkSize

func (TsCreateKey) DuplicatePolicyBlock added in v0.0.3

func (c TsCreateKey) DuplicatePolicyBlock() TsCreateDuplicatePolicyBlock

func (TsCreateKey) DuplicatePolicyFirst added in v0.0.3

func (c TsCreateKey) DuplicatePolicyFirst() TsCreateDuplicatePolicyFirst

func (TsCreateKey) DuplicatePolicyLast added in v0.0.3

func (c TsCreateKey) DuplicatePolicyLast() TsCreateDuplicatePolicyLast

func (TsCreateKey) DuplicatePolicyMax added in v0.0.3

func (c TsCreateKey) DuplicatePolicyMax() TsCreateDuplicatePolicyMax

func (TsCreateKey) DuplicatePolicyMin added in v0.0.3

func (c TsCreateKey) DuplicatePolicyMin() TsCreateDuplicatePolicyMin

func (TsCreateKey) DuplicatePolicySum added in v0.0.3

func (c TsCreateKey) DuplicatePolicySum() TsCreateDuplicatePolicySum

func (TsCreateKey) EncodingCompressed added in v0.0.3

func (c TsCreateKey) EncodingCompressed() TsCreateEncodingCompressed

func (TsCreateKey) EncodingUncompressed added in v0.0.3

func (c TsCreateKey) EncodingUncompressed() TsCreateEncodingUncompressed

func (TsCreateKey) Labels added in v0.0.3

func (c TsCreateKey) Labels() TsCreateLabels

func (TsCreateKey) Retention added in v0.0.3

func (c TsCreateKey) Retention(retentionperiod int64) TsCreateRetention

type TsCreateLabels added in v0.0.3

type TsCreateLabels Completed

func (TsCreateLabels) Build added in v0.0.3

func (c TsCreateLabels) Build() Completed

func (TsCreateLabels) Labels added in v0.0.3

func (c TsCreateLabels) Labels(label string, value string) TsCreateLabels

type TsCreateRetention added in v0.0.3

type TsCreateRetention Completed

func (TsCreateRetention) Build added in v0.0.3

func (c TsCreateRetention) Build() Completed

func (TsCreateRetention) ChunkSize added in v0.0.3

func (c TsCreateRetention) ChunkSize(size int64) TsCreateChunkSize

func (TsCreateRetention) DuplicatePolicyBlock added in v0.0.3

func (c TsCreateRetention) DuplicatePolicyBlock() TsCreateDuplicatePolicyBlock

func (TsCreateRetention) DuplicatePolicyFirst added in v0.0.3

func (c TsCreateRetention) DuplicatePolicyFirst() TsCreateDuplicatePolicyFirst

func (TsCreateRetention) DuplicatePolicyLast added in v0.0.3

func (c TsCreateRetention) DuplicatePolicyLast() TsCreateDuplicatePolicyLast

func (TsCreateRetention) DuplicatePolicyMax added in v0.0.3

func (c TsCreateRetention) DuplicatePolicyMax() TsCreateDuplicatePolicyMax

func (TsCreateRetention) DuplicatePolicyMin added in v0.0.3

func (c TsCreateRetention) DuplicatePolicyMin() TsCreateDuplicatePolicyMin

func (TsCreateRetention) DuplicatePolicySum added in v0.0.3

func (c TsCreateRetention) DuplicatePolicySum() TsCreateDuplicatePolicySum

func (TsCreateRetention) EncodingCompressed added in v0.0.3

func (c TsCreateRetention) EncodingCompressed() TsCreateEncodingCompressed

func (TsCreateRetention) EncodingUncompressed added in v0.0.3

func (c TsCreateRetention) EncodingUncompressed() TsCreateEncodingUncompressed

func (TsCreateRetention) Labels added in v0.0.3

func (c TsCreateRetention) Labels() TsCreateLabels

type TsCreaterule added in v0.0.3

type TsCreaterule Completed

func (TsCreaterule) Sourcekey added in v0.0.3

func (c TsCreaterule) Sourcekey(sourcekey string) TsCreateruleSourcekey

type TsCreateruleAggregationAvg added in v0.0.3

type TsCreateruleAggregationAvg Completed

func (TsCreateruleAggregationAvg) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationAvg) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationCount added in v0.0.3

type TsCreateruleAggregationCount Completed

func (TsCreateruleAggregationCount) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationCount) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationFirst added in v0.0.3

type TsCreateruleAggregationFirst Completed

func (TsCreateruleAggregationFirst) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationFirst) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationLast added in v0.0.3

type TsCreateruleAggregationLast Completed

func (TsCreateruleAggregationLast) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationLast) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationMax added in v0.0.3

type TsCreateruleAggregationMax Completed

func (TsCreateruleAggregationMax) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationMax) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationMin added in v0.0.3

type TsCreateruleAggregationMin Completed

func (TsCreateruleAggregationMin) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationMin) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationRange added in v0.0.3

type TsCreateruleAggregationRange Completed

func (TsCreateruleAggregationRange) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationRange) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationStdP added in v0.0.3

type TsCreateruleAggregationStdP Completed

func (TsCreateruleAggregationStdP) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationStdP) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationStdS added in v0.0.3

type TsCreateruleAggregationStdS Completed

func (TsCreateruleAggregationStdS) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationStdS) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationSum added in v0.0.3

type TsCreateruleAggregationSum Completed

func (TsCreateruleAggregationSum) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationSum) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationTwa added in v0.0.54

type TsCreateruleAggregationTwa Completed

func (TsCreateruleAggregationTwa) Bucketduration added in v0.0.54

func (c TsCreateruleAggregationTwa) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationVarP added in v0.0.3

type TsCreateruleAggregationVarP Completed

func (TsCreateruleAggregationVarP) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationVarP) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAggregationVarS added in v0.0.3

type TsCreateruleAggregationVarS Completed

func (TsCreateruleAggregationVarS) Bucketduration added in v0.0.40

func (c TsCreateruleAggregationVarS) Bucketduration(bucketduration int64) TsCreateruleBucketduration

type TsCreateruleAligntimestamp added in v0.0.54

type TsCreateruleAligntimestamp Completed

func (TsCreateruleAligntimestamp) Build added in v0.0.54

type TsCreateruleBucketduration added in v0.0.40

type TsCreateruleBucketduration Completed

func (TsCreateruleBucketduration) Aligntimestamp added in v0.0.54

func (c TsCreateruleBucketduration) Aligntimestamp(aligntimestamp int64) TsCreateruleAligntimestamp

func (TsCreateruleBucketduration) Build added in v0.0.40

type TsCreateruleDestkey added in v0.0.3

type TsCreateruleDestkey Completed

func (TsCreateruleDestkey) AggregationAvg added in v0.0.3

func (TsCreateruleDestkey) AggregationCount added in v0.0.3

func (TsCreateruleDestkey) AggregationFirst added in v0.0.3

func (TsCreateruleDestkey) AggregationLast added in v0.0.3

func (TsCreateruleDestkey) AggregationMax added in v0.0.3

func (TsCreateruleDestkey) AggregationMin added in v0.0.3

func (TsCreateruleDestkey) AggregationRange added in v0.0.3

func (TsCreateruleDestkey) AggregationStdP added in v0.0.3

func (TsCreateruleDestkey) AggregationStdS added in v0.0.3

func (TsCreateruleDestkey) AggregationSum added in v0.0.3

func (TsCreateruleDestkey) AggregationTwa added in v0.0.54

func (TsCreateruleDestkey) AggregationVarP added in v0.0.3

func (TsCreateruleDestkey) AggregationVarS added in v0.0.3

type TsCreateruleSourcekey added in v0.0.3

type TsCreateruleSourcekey Completed

func (TsCreateruleSourcekey) Destkey added in v0.0.3

type TsDecrby added in v0.0.3

type TsDecrby Completed

func (TsDecrby) Key added in v0.0.3

func (c TsDecrby) Key(key string) TsDecrbyKey

type TsDecrbyChunkSize added in v0.0.3

type TsDecrbyChunkSize Completed

func (TsDecrbyChunkSize) Build added in v0.0.3

func (c TsDecrbyChunkSize) Build() Completed

func (TsDecrbyChunkSize) Labels added in v0.0.3

func (c TsDecrbyChunkSize) Labels() TsDecrbyLabels

type TsDecrbyKey added in v0.0.3

type TsDecrbyKey Completed

func (TsDecrbyKey) Value added in v0.0.3

func (c TsDecrbyKey) Value(value float64) TsDecrbyValue

type TsDecrbyLabels added in v0.0.3

type TsDecrbyLabels Completed

func (TsDecrbyLabels) Build added in v0.0.3

func (c TsDecrbyLabels) Build() Completed

func (TsDecrbyLabels) Labels added in v0.0.3

func (c TsDecrbyLabels) Labels(label string, value string) TsDecrbyLabels

type TsDecrbyRetention added in v0.0.3

type TsDecrbyRetention Completed

func (TsDecrbyRetention) Build added in v0.0.3

func (c TsDecrbyRetention) Build() Completed

func (TsDecrbyRetention) ChunkSize added in v0.0.3

func (c TsDecrbyRetention) ChunkSize(size int64) TsDecrbyChunkSize

func (TsDecrbyRetention) Labels added in v0.0.3

func (c TsDecrbyRetention) Labels() TsDecrbyLabels

func (TsDecrbyRetention) Uncompressed added in v0.0.3

func (c TsDecrbyRetention) Uncompressed() TsDecrbyUncompressed

type TsDecrbyTimestamp added in v0.0.3

type TsDecrbyTimestamp Completed

func (TsDecrbyTimestamp) Build added in v0.0.3

func (c TsDecrbyTimestamp) Build() Completed

func (TsDecrbyTimestamp) ChunkSize added in v0.0.3

func (c TsDecrbyTimestamp) ChunkSize(size int64) TsDecrbyChunkSize

func (TsDecrbyTimestamp) Labels added in v0.0.3

func (c TsDecrbyTimestamp) Labels() TsDecrbyLabels

func (TsDecrbyTimestamp) Retention added in v0.0.3

func (c TsDecrbyTimestamp) Retention(retentionperiod int64) TsDecrbyRetention

func (TsDecrbyTimestamp) Uncompressed added in v0.0.3

func (c TsDecrbyTimestamp) Uncompressed() TsDecrbyUncompressed

type TsDecrbyUncompressed added in v0.0.3

type TsDecrbyUncompressed Completed

func (TsDecrbyUncompressed) Build added in v0.0.3

func (c TsDecrbyUncompressed) Build() Completed

func (TsDecrbyUncompressed) ChunkSize added in v0.0.3

func (c TsDecrbyUncompressed) ChunkSize(size int64) TsDecrbyChunkSize

func (TsDecrbyUncompressed) Labels added in v0.0.3

type TsDecrbyValue added in v0.0.3

type TsDecrbyValue Completed

func (TsDecrbyValue) Build added in v0.0.3

func (c TsDecrbyValue) Build() Completed

func (TsDecrbyValue) ChunkSize added in v0.0.3

func (c TsDecrbyValue) ChunkSize(size int64) TsDecrbyChunkSize

func (TsDecrbyValue) Labels added in v0.0.3

func (c TsDecrbyValue) Labels() TsDecrbyLabels

func (TsDecrbyValue) Retention added in v0.0.3

func (c TsDecrbyValue) Retention(retentionperiod int64) TsDecrbyRetention

func (TsDecrbyValue) Timestamp added in v0.0.3

func (c TsDecrbyValue) Timestamp(timestamp int64) TsDecrbyTimestamp

func (TsDecrbyValue) Uncompressed added in v0.0.3

func (c TsDecrbyValue) Uncompressed() TsDecrbyUncompressed

type TsDel added in v0.0.3

type TsDel Completed

func (TsDel) Key added in v0.0.3

func (c TsDel) Key(key string) TsDelKey

type TsDelFromTimestamp added in v0.0.3

type TsDelFromTimestamp Completed

func (TsDelFromTimestamp) ToTimestamp added in v0.0.3

func (c TsDelFromTimestamp) ToTimestamp(toTimestamp int64) TsDelToTimestamp

type TsDelKey added in v0.0.3

type TsDelKey Completed

func (TsDelKey) FromTimestamp added in v0.0.3

func (c TsDelKey) FromTimestamp(fromTimestamp int64) TsDelFromTimestamp

type TsDelToTimestamp added in v0.0.3

type TsDelToTimestamp Completed

func (TsDelToTimestamp) Build added in v0.0.3

func (c TsDelToTimestamp) Build() Completed

type TsDeleterule added in v0.0.3

type TsDeleterule Completed

func (TsDeleterule) Sourcekey added in v0.0.3

func (c TsDeleterule) Sourcekey(sourcekey string) TsDeleteruleSourcekey

type TsDeleteruleDestkey added in v0.0.3

type TsDeleteruleDestkey Completed

func (TsDeleteruleDestkey) Build added in v0.0.3

func (c TsDeleteruleDestkey) Build() Completed

type TsDeleteruleSourcekey added in v0.0.3

type TsDeleteruleSourcekey Completed

func (TsDeleteruleSourcekey) Destkey added in v0.0.3

type TsGet added in v0.0.3

type TsGet Completed

func (TsGet) Key added in v0.0.3

func (c TsGet) Key(key string) TsGetKey

type TsGetKey added in v0.0.3

type TsGetKey Completed

func (TsGetKey) Build added in v0.0.3

func (c TsGetKey) Build() Completed

func (TsGetKey) Latest added in v0.0.61

func (c TsGetKey) Latest() TsGetLatest

type TsGetLatest added in v0.0.61

type TsGetLatest Completed

func (TsGetLatest) Build added in v0.0.61

func (c TsGetLatest) Build() Completed

type TsIncrby added in v0.0.3

type TsIncrby Completed

func (TsIncrby) Key added in v0.0.3

func (c TsIncrby) Key(key string) TsIncrbyKey

type TsIncrbyChunkSize added in v0.0.3

type TsIncrbyChunkSize Completed

func (TsIncrbyChunkSize) Build added in v0.0.3

func (c TsIncrbyChunkSize) Build() Completed

func (TsIncrbyChunkSize) Labels added in v0.0.3

func (c TsIncrbyChunkSize) Labels() TsIncrbyLabels

type TsIncrbyKey added in v0.0.3

type TsIncrbyKey Completed

func (TsIncrbyKey) Value added in v0.0.3

func (c TsIncrbyKey) Value(value float64) TsIncrbyValue

type TsIncrbyLabels added in v0.0.3

type TsIncrbyLabels Completed

func (TsIncrbyLabels) Build added in v0.0.3

func (c TsIncrbyLabels) Build() Completed

func (TsIncrbyLabels) Labels added in v0.0.3

func (c TsIncrbyLabels) Labels(label string, value string) TsIncrbyLabels

type TsIncrbyRetention added in v0.0.3

type TsIncrbyRetention Completed

func (TsIncrbyRetention) Build added in v0.0.3

func (c TsIncrbyRetention) Build() Completed

func (TsIncrbyRetention) ChunkSize added in v0.0.3

func (c TsIncrbyRetention) ChunkSize(size int64) TsIncrbyChunkSize

func (TsIncrbyRetention) Labels added in v0.0.3

func (c TsIncrbyRetention) Labels() TsIncrbyLabels

func (TsIncrbyRetention) Uncompressed added in v0.0.3

func (c TsIncrbyRetention) Uncompressed() TsIncrbyUncompressed

type TsIncrbyTimestamp added in v0.0.3

type TsIncrbyTimestamp Completed

func (TsIncrbyTimestamp) Build added in v0.0.3

func (c TsIncrbyTimestamp) Build() Completed

func (TsIncrbyTimestamp) ChunkSize added in v0.0.3

func (c TsIncrbyTimestamp) ChunkSize(size int64) TsIncrbyChunkSize

func (TsIncrbyTimestamp) Labels added in v0.0.3

func (c TsIncrbyTimestamp) Labels() TsIncrbyLabels

func (TsIncrbyTimestamp) Retention added in v0.0.3

func (c TsIncrbyTimestamp) Retention(retentionperiod int64) TsIncrbyRetention

func (TsIncrbyTimestamp) Uncompressed added in v0.0.3

func (c TsIncrbyTimestamp) Uncompressed() TsIncrbyUncompressed

type TsIncrbyUncompressed added in v0.0.3

type TsIncrbyUncompressed Completed

func (TsIncrbyUncompressed) Build added in v0.0.3

func (c TsIncrbyUncompressed) Build() Completed

func (TsIncrbyUncompressed) ChunkSize added in v0.0.3

func (c TsIncrbyUncompressed) ChunkSize(size int64) TsIncrbyChunkSize

func (TsIncrbyUncompressed) Labels added in v0.0.3

type TsIncrbyValue added in v0.0.3

type TsIncrbyValue Completed

func (TsIncrbyValue) Build added in v0.0.3

func (c TsIncrbyValue) Build() Completed

func (TsIncrbyValue) ChunkSize added in v0.0.3

func (c TsIncrbyValue) ChunkSize(size int64) TsIncrbyChunkSize

func (TsIncrbyValue) Labels added in v0.0.3

func (c TsIncrbyValue) Labels() TsIncrbyLabels

func (TsIncrbyValue) Retention added in v0.0.3

func (c TsIncrbyValue) Retention(retentionperiod int64) TsIncrbyRetention

func (TsIncrbyValue) Timestamp added in v0.0.3

func (c TsIncrbyValue) Timestamp(timestamp int64) TsIncrbyTimestamp

func (TsIncrbyValue) Uncompressed added in v0.0.3

func (c TsIncrbyValue) Uncompressed() TsIncrbyUncompressed

type TsInfo added in v0.0.3

type TsInfo Completed

func (TsInfo) Key added in v0.0.3

func (c TsInfo) Key(key string) TsInfoKey

type TsInfoDebug added in v0.0.3

type TsInfoDebug Completed

func (TsInfoDebug) Build added in v0.0.3

func (c TsInfoDebug) Build() Completed

type TsInfoKey added in v0.0.3

type TsInfoKey Completed

func (TsInfoKey) Build added in v0.0.3

func (c TsInfoKey) Build() Completed

func (TsInfoKey) Debug added in v0.0.3

func (c TsInfoKey) Debug(debug string) TsInfoDebug

type TsMadd added in v0.0.3

type TsMadd Completed

func (TsMadd) KeyTimestampValue added in v0.0.3

func (c TsMadd) KeyTimestampValue() TsMaddKeyTimestampValue

type TsMaddKeyTimestampValue added in v0.0.3

type TsMaddKeyTimestampValue Completed

func (TsMaddKeyTimestampValue) Build added in v0.0.3

func (TsMaddKeyTimestampValue) KeyTimestampValue added in v0.0.3

func (c TsMaddKeyTimestampValue) KeyTimestampValue(key string, timestamp int64, value float64) TsMaddKeyTimestampValue

type TsMget added in v0.0.3

type TsMget Completed

func (TsMget) Filter added in v0.0.3

func (c TsMget) Filter(filter ...string) TsMgetFilter

func (TsMget) Latest added in v0.0.61

func (c TsMget) Latest() TsMgetLatest

func (TsMget) SelectedLabels added in v0.0.3

func (c TsMget) SelectedLabels(labels []string) TsMgetSelectedLabels

func (TsMget) Withlabels added in v0.0.3

func (c TsMget) Withlabels() TsMgetWithlabels

type TsMgetFilter added in v0.0.3

type TsMgetFilter Completed

func (TsMgetFilter) Build added in v0.0.3

func (c TsMgetFilter) Build() Completed

func (TsMgetFilter) Filter added in v0.0.3

func (c TsMgetFilter) Filter(filter ...string) TsMgetFilter

type TsMgetLatest added in v0.0.61

type TsMgetLatest Completed

func (TsMgetLatest) Filter added in v0.0.61

func (c TsMgetLatest) Filter(filter ...string) TsMgetFilter

func (TsMgetLatest) SelectedLabels added in v0.0.61

func (c TsMgetLatest) SelectedLabels(labels []string) TsMgetSelectedLabels

func (TsMgetLatest) Withlabels added in v0.0.61

func (c TsMgetLatest) Withlabels() TsMgetWithlabels

type TsMgetSelectedLabels added in v0.0.3

type TsMgetSelectedLabels Completed

func (TsMgetSelectedLabels) Filter added in v0.0.3

func (c TsMgetSelectedLabels) Filter(filter ...string) TsMgetFilter

type TsMgetWithlabels added in v0.0.3

type TsMgetWithlabels Completed

func (TsMgetWithlabels) Filter added in v0.0.3

func (c TsMgetWithlabels) Filter(filter ...string) TsMgetFilter

type TsMrange added in v0.0.3

type TsMrange Completed

func (TsMrange) Fromtimestamp added in v0.0.54

func (c TsMrange) Fromtimestamp(fromtimestamp int64) TsMrangeFromtimestamp

type TsMrangeAggregationAggregationAvg added in v0.0.3

type TsMrangeAggregationAggregationAvg Completed

func (TsMrangeAggregationAggregationAvg) Bucketduration added in v0.0.40

type TsMrangeAggregationAggregationCount added in v0.0.3

type TsMrangeAggregationAggregationCount Completed

func (TsMrangeAggregationAggregationCount) Bucketduration added in v0.0.40

type TsMrangeAggregationAggregationFirst added in v0.0.3

type TsMrangeAggregationAggregationFirst Completed

func (TsMrangeAggregationAggregationFirst) Bucketduration added in v0.0.40

type TsMrangeAggregationAggregationLast added in v0.0.3

type TsMrangeAggregationAggregationLast Completed

func (TsMrangeAggregationAggregationLast) Bucketduration added in v0.0.40

type TsMrangeAggregationAggregationMax added in v0.0.3

type TsMrangeAggregationAggregationMax Completed

func (TsMrangeAggregationAggregationMax) Bucketduration added in v0.0.40

type TsMrangeAggregationAggregationMin added in v0.0.3

type TsMrangeAggregationAggregationMin Completed

func (TsMrangeAggregationAggregationMin) Bucketduration added in v0.0.40

type TsMrangeAggregationAggregationRange added in v0.0.3

type TsMrangeAggregationAggregationRange Completed

func (TsMrangeAggregationAggregationRange) Bucketduration added in v0.0.40

type TsMrangeAggregationAggregationStdP added in v0.0.3

type TsMrangeAggregationAggregationStdP Completed

func (TsMrangeAggregationAggregationStdP) Bucketduration added in v0.0.40

type TsMrangeAggregationAggregationStdS added in v0.0.3

type TsMrangeAggregationAggregationStdS Completed

func (TsMrangeAggregationAggregationStdS) Bucketduration added in v0.0.40

type TsMrangeAggregationAggregationSum added in v0.0.3

type TsMrangeAggregationAggregationSum Completed

func (TsMrangeAggregationAggregationSum) Bucketduration added in v0.0.40

type TsMrangeAggregationAggregationTwa added in v0.0.54

type TsMrangeAggregationAggregationTwa Completed

func (TsMrangeAggregationAggregationTwa) Bucketduration added in v0.0.54

type TsMrangeAggregationAggregationVarP added in v0.0.3

type TsMrangeAggregationAggregationVarP Completed

func (TsMrangeAggregationAggregationVarP) Bucketduration added in v0.0.40

type TsMrangeAggregationAggregationVarS added in v0.0.3

type TsMrangeAggregationAggregationVarS Completed

func (TsMrangeAggregationAggregationVarS) Bucketduration added in v0.0.40

type TsMrangeAggregationBucketduration added in v0.0.40

type TsMrangeAggregationBucketduration Completed

func (TsMrangeAggregationBucketduration) Buckettimestamp added in v0.0.54

func (TsMrangeAggregationBucketduration) Empty added in v0.0.54

func (TsMrangeAggregationBucketduration) Filter added in v0.0.40

type TsMrangeAggregationBuckettimestamp added in v0.0.54

type TsMrangeAggregationBuckettimestamp Completed

func (TsMrangeAggregationBuckettimestamp) Empty added in v0.0.54

func (TsMrangeAggregationBuckettimestamp) Filter added in v0.0.54

type TsMrangeAggregationEmpty added in v0.0.54

type TsMrangeAggregationEmpty Completed

func (TsMrangeAggregationEmpty) Filter added in v0.0.54

func (c TsMrangeAggregationEmpty) Filter(filter ...string) TsMrangeFilter

type TsMrangeAlign added in v0.0.3

type TsMrangeAlign Completed

func (TsMrangeAlign) AggregationAvg added in v0.0.3

func (TsMrangeAlign) AggregationCount added in v0.0.3

func (TsMrangeAlign) AggregationFirst added in v0.0.3

func (TsMrangeAlign) AggregationLast added in v0.0.3

func (TsMrangeAlign) AggregationMax added in v0.0.3

func (TsMrangeAlign) AggregationMin added in v0.0.3

func (TsMrangeAlign) AggregationRange added in v0.0.3

func (TsMrangeAlign) AggregationStdP added in v0.0.3

func (TsMrangeAlign) AggregationStdS added in v0.0.3

func (TsMrangeAlign) AggregationSum added in v0.0.3

func (TsMrangeAlign) AggregationTwa added in v0.0.54

func (TsMrangeAlign) AggregationVarP added in v0.0.3

func (TsMrangeAlign) AggregationVarS added in v0.0.3

func (TsMrangeAlign) Filter added in v0.0.3

func (c TsMrangeAlign) Filter(filter ...string) TsMrangeFilter

type TsMrangeCount added in v0.0.3

type TsMrangeCount Completed

func (TsMrangeCount) AggregationAvg added in v0.0.3

func (TsMrangeCount) AggregationCount added in v0.0.3

func (TsMrangeCount) AggregationFirst added in v0.0.3

func (TsMrangeCount) AggregationLast added in v0.0.3

func (TsMrangeCount) AggregationMax added in v0.0.3

func (TsMrangeCount) AggregationMin added in v0.0.3

func (TsMrangeCount) AggregationRange added in v0.0.3

func (TsMrangeCount) AggregationStdP added in v0.0.3

func (TsMrangeCount) AggregationStdS added in v0.0.3

func (TsMrangeCount) AggregationSum added in v0.0.3

func (TsMrangeCount) AggregationTwa added in v0.0.54

func (TsMrangeCount) AggregationVarP added in v0.0.3

func (TsMrangeCount) AggregationVarS added in v0.0.3

func (TsMrangeCount) Align added in v0.0.3

func (c TsMrangeCount) Align(value string) TsMrangeAlign

func (TsMrangeCount) Filter added in v0.0.3

func (c TsMrangeCount) Filter(filter ...string) TsMrangeFilter

type TsMrangeFilter added in v0.0.3

type TsMrangeFilter Completed

func (TsMrangeFilter) Build added in v0.0.3

func (c TsMrangeFilter) Build() Completed

func (TsMrangeFilter) Filter added in v0.0.3

func (c TsMrangeFilter) Filter(filter ...string) TsMrangeFilter

func (TsMrangeFilter) Groupby added in v0.0.3

func (c TsMrangeFilter) Groupby(label string, reduce string, reducer string) TsMrangeGroupby

type TsMrangeFilterByTs added in v0.0.3

type TsMrangeFilterByTs Completed

func (TsMrangeFilterByTs) AggregationAvg added in v0.0.3

func (TsMrangeFilterByTs) AggregationCount added in v0.0.3

func (TsMrangeFilterByTs) AggregationFirst added in v0.0.3

func (TsMrangeFilterByTs) AggregationLast added in v0.0.3

func (TsMrangeFilterByTs) AggregationMax added in v0.0.3

func (TsMrangeFilterByTs) AggregationMin added in v0.0.3

func (TsMrangeFilterByTs) AggregationRange added in v0.0.3

func (TsMrangeFilterByTs) AggregationStdP added in v0.0.3

func (TsMrangeFilterByTs) AggregationStdS added in v0.0.3

func (TsMrangeFilterByTs) AggregationSum added in v0.0.3

func (TsMrangeFilterByTs) AggregationTwa added in v0.0.54

func (TsMrangeFilterByTs) AggregationVarP added in v0.0.3

func (TsMrangeFilterByTs) AggregationVarS added in v0.0.3

func (TsMrangeFilterByTs) Align added in v0.0.3

func (c TsMrangeFilterByTs) Align(value string) TsMrangeAlign

func (TsMrangeFilterByTs) Count added in v0.0.3

func (c TsMrangeFilterByTs) Count(count int64) TsMrangeCount

func (TsMrangeFilterByTs) Filter added in v0.0.3

func (c TsMrangeFilterByTs) Filter(filter ...string) TsMrangeFilter

func (TsMrangeFilterByTs) FilterByTs added in v0.0.3

func (c TsMrangeFilterByTs) FilterByTs(timestamp ...int64) TsMrangeFilterByTs

func (TsMrangeFilterByTs) FilterByValue added in v0.0.3

func (c TsMrangeFilterByTs) FilterByValue(min float64, max float64) TsMrangeFilterByValue

func (TsMrangeFilterByTs) SelectedLabels added in v0.0.3

func (c TsMrangeFilterByTs) SelectedLabels(labels []string) TsMrangeSelectedLabels

func (TsMrangeFilterByTs) Withlabels added in v0.0.3

func (c TsMrangeFilterByTs) Withlabels() TsMrangeWithlabels

type TsMrangeFilterByValue added in v0.0.3

type TsMrangeFilterByValue Completed

func (TsMrangeFilterByValue) AggregationAvg added in v0.0.3

func (TsMrangeFilterByValue) AggregationCount added in v0.0.3

func (TsMrangeFilterByValue) AggregationFirst added in v0.0.3

func (TsMrangeFilterByValue) AggregationLast added in v0.0.3

func (TsMrangeFilterByValue) AggregationMax added in v0.0.3

func (TsMrangeFilterByValue) AggregationMin added in v0.0.3

func (TsMrangeFilterByValue) AggregationRange added in v0.0.3

func (TsMrangeFilterByValue) AggregationStdP added in v0.0.3

func (TsMrangeFilterByValue) AggregationStdS added in v0.0.3

func (TsMrangeFilterByValue) AggregationSum added in v0.0.3

func (TsMrangeFilterByValue) AggregationTwa added in v0.0.54

func (TsMrangeFilterByValue) AggregationVarP added in v0.0.3

func (TsMrangeFilterByValue) AggregationVarS added in v0.0.3

func (TsMrangeFilterByValue) Align added in v0.0.3

func (TsMrangeFilterByValue) Count added in v0.0.3

func (c TsMrangeFilterByValue) Count(count int64) TsMrangeCount

func (TsMrangeFilterByValue) Filter added in v0.0.3

func (c TsMrangeFilterByValue) Filter(filter ...string) TsMrangeFilter

func (TsMrangeFilterByValue) SelectedLabels added in v0.0.3

func (c TsMrangeFilterByValue) SelectedLabels(labels []string) TsMrangeSelectedLabels

func (TsMrangeFilterByValue) Withlabels added in v0.0.3

type TsMrangeFromtimestamp added in v0.0.3

type TsMrangeFromtimestamp Completed

func (TsMrangeFromtimestamp) Totimestamp added in v0.0.3

func (c TsMrangeFromtimestamp) Totimestamp(totimestamp int64) TsMrangeTotimestamp

type TsMrangeGroupby added in v0.0.3

type TsMrangeGroupby Completed

func (TsMrangeGroupby) Build added in v0.0.3

func (c TsMrangeGroupby) Build() Completed

type TsMrangeLatest added in v0.0.61

type TsMrangeLatest Completed

func (TsMrangeLatest) AggregationAvg added in v0.0.61

func (TsMrangeLatest) AggregationCount added in v0.0.61

func (TsMrangeLatest) AggregationFirst added in v0.0.61

func (TsMrangeLatest) AggregationLast added in v0.0.61

func (TsMrangeLatest) AggregationMax added in v0.0.61

func (TsMrangeLatest) AggregationMin added in v0.0.61

func (TsMrangeLatest) AggregationRange added in v0.0.61

func (TsMrangeLatest) AggregationStdP added in v0.0.61

func (TsMrangeLatest) AggregationStdS added in v0.0.61

func (TsMrangeLatest) AggregationSum added in v0.0.61

func (TsMrangeLatest) AggregationTwa added in v0.0.61

func (TsMrangeLatest) AggregationVarP added in v0.0.61

func (TsMrangeLatest) AggregationVarS added in v0.0.61

func (TsMrangeLatest) Align added in v0.0.61

func (c TsMrangeLatest) Align(value string) TsMrangeAlign

func (TsMrangeLatest) Count added in v0.0.61

func (c TsMrangeLatest) Count(count int64) TsMrangeCount

func (TsMrangeLatest) Filter added in v0.0.61

func (c TsMrangeLatest) Filter(filter ...string) TsMrangeFilter

func (TsMrangeLatest) FilterByTs added in v0.0.61

func (c TsMrangeLatest) FilterByTs(timestamp ...int64) TsMrangeFilterByTs

func (TsMrangeLatest) FilterByValue added in v0.0.61

func (c TsMrangeLatest) FilterByValue(min float64, max float64) TsMrangeFilterByValue

func (TsMrangeLatest) SelectedLabels added in v0.0.61

func (c TsMrangeLatest) SelectedLabels(labels []string) TsMrangeSelectedLabels

func (TsMrangeLatest) Withlabels added in v0.0.61

func (c TsMrangeLatest) Withlabels() TsMrangeWithlabels

type TsMrangeSelectedLabels added in v0.0.3

type TsMrangeSelectedLabels Completed

func (TsMrangeSelectedLabels) AggregationAvg added in v0.0.3

func (TsMrangeSelectedLabels) AggregationCount added in v0.0.3

func (TsMrangeSelectedLabels) AggregationFirst added in v0.0.3

func (TsMrangeSelectedLabels) AggregationLast added in v0.0.3

func (TsMrangeSelectedLabels) AggregationMax added in v0.0.3

func (TsMrangeSelectedLabels) AggregationMin added in v0.0.3

func (TsMrangeSelectedLabels) AggregationRange added in v0.0.3

func (TsMrangeSelectedLabels) AggregationStdP added in v0.0.3

func (TsMrangeSelectedLabels) AggregationStdS added in v0.0.3

func (TsMrangeSelectedLabels) AggregationSum added in v0.0.3

func (TsMrangeSelectedLabels) AggregationTwa added in v0.0.54

func (TsMrangeSelectedLabels) AggregationVarP added in v0.0.3

func (TsMrangeSelectedLabels) AggregationVarS added in v0.0.3

func (TsMrangeSelectedLabels) Align added in v0.0.3

func (TsMrangeSelectedLabels) Count added in v0.0.3

func (TsMrangeSelectedLabels) Filter added in v0.0.3

func (c TsMrangeSelectedLabels) Filter(filter ...string) TsMrangeFilter

type TsMrangeTotimestamp added in v0.0.3

type TsMrangeTotimestamp Completed

func (TsMrangeTotimestamp) AggregationAvg added in v0.0.3

func (TsMrangeTotimestamp) AggregationCount added in v0.0.3

func (TsMrangeTotimestamp) AggregationFirst added in v0.0.3

func (TsMrangeTotimestamp) AggregationLast added in v0.0.3

func (TsMrangeTotimestamp) AggregationMax added in v0.0.3

func (TsMrangeTotimestamp) AggregationMin added in v0.0.3

func (TsMrangeTotimestamp) AggregationRange added in v0.0.3

func (TsMrangeTotimestamp) AggregationStdP added in v0.0.3

func (TsMrangeTotimestamp) AggregationStdS added in v0.0.3

func (TsMrangeTotimestamp) AggregationSum added in v0.0.3

func (TsMrangeTotimestamp) AggregationTwa added in v0.0.54

func (TsMrangeTotimestamp) AggregationVarP added in v0.0.3

func (TsMrangeTotimestamp) AggregationVarS added in v0.0.3

func (TsMrangeTotimestamp) Align added in v0.0.3

func (c TsMrangeTotimestamp) Align(value string) TsMrangeAlign

func (TsMrangeTotimestamp) Count added in v0.0.3

func (c TsMrangeTotimestamp) Count(count int64) TsMrangeCount

func (TsMrangeTotimestamp) Filter added in v0.0.3

func (c TsMrangeTotimestamp) Filter(filter ...string) TsMrangeFilter

func (TsMrangeTotimestamp) FilterByTs added in v0.0.3

func (c TsMrangeTotimestamp) FilterByTs(timestamp ...int64) TsMrangeFilterByTs

func (TsMrangeTotimestamp) FilterByValue added in v0.0.3

func (c TsMrangeTotimestamp) FilterByValue(min float64, max float64) TsMrangeFilterByValue

func (TsMrangeTotimestamp) Latest added in v0.0.61

func (TsMrangeTotimestamp) SelectedLabels added in v0.0.3

func (c TsMrangeTotimestamp) SelectedLabels(labels []string) TsMrangeSelectedLabels

func (TsMrangeTotimestamp) Withlabels added in v0.0.3

func (c TsMrangeTotimestamp) Withlabels() TsMrangeWithlabels

type TsMrangeWithlabels added in v0.0.3

type TsMrangeWithlabels Completed

func (TsMrangeWithlabels) AggregationAvg added in v0.0.3

func (TsMrangeWithlabels) AggregationCount added in v0.0.3

func (TsMrangeWithlabels) AggregationFirst added in v0.0.3

func (TsMrangeWithlabels) AggregationLast added in v0.0.3

func (TsMrangeWithlabels) AggregationMax added in v0.0.3

func (TsMrangeWithlabels) AggregationMin added in v0.0.3

func (TsMrangeWithlabels) AggregationRange added in v0.0.3

func (TsMrangeWithlabels) AggregationStdP added in v0.0.3

func (TsMrangeWithlabels) AggregationStdS added in v0.0.3

func (TsMrangeWithlabels) AggregationSum added in v0.0.3

func (TsMrangeWithlabels) AggregationTwa added in v0.0.54

func (TsMrangeWithlabels) AggregationVarP added in v0.0.3

func (TsMrangeWithlabels) AggregationVarS added in v0.0.3

func (TsMrangeWithlabels) Align added in v0.0.3

func (c TsMrangeWithlabels) Align(value string) TsMrangeAlign

func (TsMrangeWithlabels) Count added in v0.0.3

func (c TsMrangeWithlabels) Count(count int64) TsMrangeCount

func (TsMrangeWithlabels) Filter added in v0.0.3

func (c TsMrangeWithlabels) Filter(filter ...string) TsMrangeFilter

type TsMrevrange added in v0.0.3

type TsMrevrange Completed

func (TsMrevrange) Fromtimestamp added in v0.0.54

func (c TsMrevrange) Fromtimestamp(fromtimestamp int64) TsMrevrangeFromtimestamp

type TsMrevrangeAggregationAggregationAvg added in v0.0.3

type TsMrevrangeAggregationAggregationAvg Completed

func (TsMrevrangeAggregationAggregationAvg) Bucketduration added in v0.0.40

type TsMrevrangeAggregationAggregationCount added in v0.0.3

type TsMrevrangeAggregationAggregationCount Completed

func (TsMrevrangeAggregationAggregationCount) Bucketduration added in v0.0.40

type TsMrevrangeAggregationAggregationFirst added in v0.0.3

type TsMrevrangeAggregationAggregationFirst Completed

func (TsMrevrangeAggregationAggregationFirst) Bucketduration added in v0.0.40

type TsMrevrangeAggregationAggregationLast added in v0.0.3

type TsMrevrangeAggregationAggregationLast Completed

func (TsMrevrangeAggregationAggregationLast) Bucketduration added in v0.0.40

type TsMrevrangeAggregationAggregationMax added in v0.0.3

type TsMrevrangeAggregationAggregationMax Completed

func (TsMrevrangeAggregationAggregationMax) Bucketduration added in v0.0.40

type TsMrevrangeAggregationAggregationMin added in v0.0.3

type TsMrevrangeAggregationAggregationMin Completed

func (TsMrevrangeAggregationAggregationMin) Bucketduration added in v0.0.40

type TsMrevrangeAggregationAggregationRange added in v0.0.3

type TsMrevrangeAggregationAggregationRange Completed

func (TsMrevrangeAggregationAggregationRange) Bucketduration added in v0.0.40

type TsMrevrangeAggregationAggregationStdP added in v0.0.3

type TsMrevrangeAggregationAggregationStdP Completed

func (TsMrevrangeAggregationAggregationStdP) Bucketduration added in v0.0.40

type TsMrevrangeAggregationAggregationStdS added in v0.0.3

type TsMrevrangeAggregationAggregationStdS Completed

func (TsMrevrangeAggregationAggregationStdS) Bucketduration added in v0.0.40

type TsMrevrangeAggregationAggregationSum added in v0.0.3

type TsMrevrangeAggregationAggregationSum Completed

func (TsMrevrangeAggregationAggregationSum) Bucketduration added in v0.0.40

type TsMrevrangeAggregationAggregationTwa added in v0.0.54

type TsMrevrangeAggregationAggregationTwa Completed

func (TsMrevrangeAggregationAggregationTwa) Bucketduration added in v0.0.54

type TsMrevrangeAggregationAggregationVarP added in v0.0.3

type TsMrevrangeAggregationAggregationVarP Completed

func (TsMrevrangeAggregationAggregationVarP) Bucketduration added in v0.0.40

type TsMrevrangeAggregationAggregationVarS added in v0.0.3

type TsMrevrangeAggregationAggregationVarS Completed

func (TsMrevrangeAggregationAggregationVarS) Bucketduration added in v0.0.40

type TsMrevrangeAggregationBucketduration added in v0.0.40

type TsMrevrangeAggregationBucketduration Completed

func (TsMrevrangeAggregationBucketduration) Buckettimestamp added in v0.0.54

func (TsMrevrangeAggregationBucketduration) Empty added in v0.0.54

func (TsMrevrangeAggregationBucketduration) Filter added in v0.0.40

type TsMrevrangeAggregationBuckettimestamp added in v0.0.54

type TsMrevrangeAggregationBuckettimestamp Completed

func (TsMrevrangeAggregationBuckettimestamp) Empty added in v0.0.54

func (TsMrevrangeAggregationBuckettimestamp) Filter added in v0.0.54

type TsMrevrangeAggregationEmpty added in v0.0.54

type TsMrevrangeAggregationEmpty Completed

func (TsMrevrangeAggregationEmpty) Filter added in v0.0.54

type TsMrevrangeAlign added in v0.0.3

type TsMrevrangeAlign Completed

func (TsMrevrangeAlign) AggregationAvg added in v0.0.3

func (TsMrevrangeAlign) AggregationCount added in v0.0.3

func (TsMrevrangeAlign) AggregationFirst added in v0.0.3

func (TsMrevrangeAlign) AggregationLast added in v0.0.3

func (TsMrevrangeAlign) AggregationMax added in v0.0.3

func (TsMrevrangeAlign) AggregationMin added in v0.0.3

func (TsMrevrangeAlign) AggregationRange added in v0.0.3

func (TsMrevrangeAlign) AggregationStdP added in v0.0.3

func (TsMrevrangeAlign) AggregationStdS added in v0.0.3

func (TsMrevrangeAlign) AggregationSum added in v0.0.3

func (TsMrevrangeAlign) AggregationTwa added in v0.0.54

func (TsMrevrangeAlign) AggregationVarP added in v0.0.3

func (TsMrevrangeAlign) AggregationVarS added in v0.0.3

func (TsMrevrangeAlign) Filter added in v0.0.3

func (c TsMrevrangeAlign) Filter(filter ...string) TsMrevrangeFilter

type TsMrevrangeCount added in v0.0.3

type TsMrevrangeCount Completed

func (TsMrevrangeCount) AggregationAvg added in v0.0.3

func (TsMrevrangeCount) AggregationCount added in v0.0.3

func (TsMrevrangeCount) AggregationFirst added in v0.0.3

func (TsMrevrangeCount) AggregationLast added in v0.0.3

func (TsMrevrangeCount) AggregationMax added in v0.0.3

func (TsMrevrangeCount) AggregationMin added in v0.0.3

func (TsMrevrangeCount) AggregationRange added in v0.0.3

func (TsMrevrangeCount) AggregationStdP added in v0.0.3

func (TsMrevrangeCount) AggregationStdS added in v0.0.3

func (TsMrevrangeCount) AggregationSum added in v0.0.3

func (TsMrevrangeCount) AggregationTwa added in v0.0.54

func (TsMrevrangeCount) AggregationVarP added in v0.0.3

func (TsMrevrangeCount) AggregationVarS added in v0.0.3

func (TsMrevrangeCount) Align added in v0.0.3

func (c TsMrevrangeCount) Align(value string) TsMrevrangeAlign

func (TsMrevrangeCount) Filter added in v0.0.3

func (c TsMrevrangeCount) Filter(filter ...string) TsMrevrangeFilter

type TsMrevrangeFilter added in v0.0.3

type TsMrevrangeFilter Completed

func (TsMrevrangeFilter) Build added in v0.0.3

func (c TsMrevrangeFilter) Build() Completed

func (TsMrevrangeFilter) Filter added in v0.0.3

func (c TsMrevrangeFilter) Filter(filter ...string) TsMrevrangeFilter

func (TsMrevrangeFilter) Groupby added in v0.0.3

func (c TsMrevrangeFilter) Groupby(label string, reduce string, reducer string) TsMrevrangeGroupby

type TsMrevrangeFilterByTs added in v0.0.3

type TsMrevrangeFilterByTs Completed

func (TsMrevrangeFilterByTs) AggregationAvg added in v0.0.3

func (TsMrevrangeFilterByTs) AggregationCount added in v0.0.3

func (TsMrevrangeFilterByTs) AggregationFirst added in v0.0.3

func (TsMrevrangeFilterByTs) AggregationLast added in v0.0.3

func (TsMrevrangeFilterByTs) AggregationMax added in v0.0.3

func (TsMrevrangeFilterByTs) AggregationMin added in v0.0.3

func (TsMrevrangeFilterByTs) AggregationRange added in v0.0.3

func (TsMrevrangeFilterByTs) AggregationStdP added in v0.0.3

func (TsMrevrangeFilterByTs) AggregationStdS added in v0.0.3

func (TsMrevrangeFilterByTs) AggregationSum added in v0.0.3

func (TsMrevrangeFilterByTs) AggregationTwa added in v0.0.54

func (TsMrevrangeFilterByTs) AggregationVarP added in v0.0.3

func (TsMrevrangeFilterByTs) AggregationVarS added in v0.0.3

func (TsMrevrangeFilterByTs) Align added in v0.0.3

func (TsMrevrangeFilterByTs) Count added in v0.0.3

func (TsMrevrangeFilterByTs) Filter added in v0.0.3

func (c TsMrevrangeFilterByTs) Filter(filter ...string) TsMrevrangeFilter

func (TsMrevrangeFilterByTs) FilterByTs added in v0.0.3

func (c TsMrevrangeFilterByTs) FilterByTs(timestamp ...int64) TsMrevrangeFilterByTs

func (TsMrevrangeFilterByTs) FilterByValue added in v0.0.3

func (TsMrevrangeFilterByTs) SelectedLabels added in v0.0.3

func (c TsMrevrangeFilterByTs) SelectedLabels(labels []string) TsMrevrangeSelectedLabels

func (TsMrevrangeFilterByTs) Withlabels added in v0.0.3

type TsMrevrangeFilterByValue added in v0.0.3

type TsMrevrangeFilterByValue Completed

func (TsMrevrangeFilterByValue) AggregationAvg added in v0.0.3

func (TsMrevrangeFilterByValue) AggregationCount added in v0.0.3

func (TsMrevrangeFilterByValue) AggregationFirst added in v0.0.3

func (TsMrevrangeFilterByValue) AggregationLast added in v0.0.3

func (TsMrevrangeFilterByValue) AggregationMax added in v0.0.3

func (TsMrevrangeFilterByValue) AggregationMin added in v0.0.3

func (TsMrevrangeFilterByValue) AggregationRange added in v0.0.3

func (TsMrevrangeFilterByValue) AggregationStdP added in v0.0.3

func (TsMrevrangeFilterByValue) AggregationStdS added in v0.0.3

func (TsMrevrangeFilterByValue) AggregationSum added in v0.0.3

func (TsMrevrangeFilterByValue) AggregationTwa added in v0.0.54

func (TsMrevrangeFilterByValue) AggregationVarP added in v0.0.3

func (TsMrevrangeFilterByValue) AggregationVarS added in v0.0.3

func (TsMrevrangeFilterByValue) Align added in v0.0.3

func (TsMrevrangeFilterByValue) Count added in v0.0.3

func (TsMrevrangeFilterByValue) Filter added in v0.0.3

func (TsMrevrangeFilterByValue) SelectedLabels added in v0.0.3

func (c TsMrevrangeFilterByValue) SelectedLabels(labels []string) TsMrevrangeSelectedLabels

func (TsMrevrangeFilterByValue) Withlabels added in v0.0.3

type TsMrevrangeFromtimestamp added in v0.0.3

type TsMrevrangeFromtimestamp Completed

func (TsMrevrangeFromtimestamp) Totimestamp added in v0.0.3

func (c TsMrevrangeFromtimestamp) Totimestamp(totimestamp int64) TsMrevrangeTotimestamp

type TsMrevrangeGroupby added in v0.0.3

type TsMrevrangeGroupby Completed

func (TsMrevrangeGroupby) Build added in v0.0.3

func (c TsMrevrangeGroupby) Build() Completed

type TsMrevrangeLatest added in v0.0.61

type TsMrevrangeLatest Completed

func (TsMrevrangeLatest) AggregationAvg added in v0.0.61

func (TsMrevrangeLatest) AggregationCount added in v0.0.61

func (TsMrevrangeLatest) AggregationFirst added in v0.0.61

func (TsMrevrangeLatest) AggregationLast added in v0.0.61

func (TsMrevrangeLatest) AggregationMax added in v0.0.61

func (TsMrevrangeLatest) AggregationMin added in v0.0.61

func (TsMrevrangeLatest) AggregationRange added in v0.0.61

func (TsMrevrangeLatest) AggregationStdP added in v0.0.61

func (TsMrevrangeLatest) AggregationStdS added in v0.0.61

func (TsMrevrangeLatest) AggregationSum added in v0.0.61

func (TsMrevrangeLatest) AggregationTwa added in v0.0.61

func (TsMrevrangeLatest) AggregationVarP added in v0.0.61

func (TsMrevrangeLatest) AggregationVarS added in v0.0.61

func (TsMrevrangeLatest) Align added in v0.0.61

func (c TsMrevrangeLatest) Align(value string) TsMrevrangeAlign

func (TsMrevrangeLatest) Count added in v0.0.61

func (c TsMrevrangeLatest) Count(count int64) TsMrevrangeCount

func (TsMrevrangeLatest) Filter added in v0.0.61

func (c TsMrevrangeLatest) Filter(filter ...string) TsMrevrangeFilter

func (TsMrevrangeLatest) FilterByTs added in v0.0.61

func (c TsMrevrangeLatest) FilterByTs(timestamp ...int64) TsMrevrangeFilterByTs

func (TsMrevrangeLatest) FilterByValue added in v0.0.61

func (c TsMrevrangeLatest) FilterByValue(min float64, max float64) TsMrevrangeFilterByValue

func (TsMrevrangeLatest) SelectedLabels added in v0.0.61

func (c TsMrevrangeLatest) SelectedLabels(labels []string) TsMrevrangeSelectedLabels

func (TsMrevrangeLatest) Withlabels added in v0.0.61

type TsMrevrangeSelectedLabels added in v0.0.3

type TsMrevrangeSelectedLabels Completed

func (TsMrevrangeSelectedLabels) AggregationAvg added in v0.0.3

func (TsMrevrangeSelectedLabels) AggregationCount added in v0.0.3

func (TsMrevrangeSelectedLabels) AggregationFirst added in v0.0.3

func (TsMrevrangeSelectedLabels) AggregationLast added in v0.0.3

func (TsMrevrangeSelectedLabels) AggregationMax added in v0.0.3

func (TsMrevrangeSelectedLabels) AggregationMin added in v0.0.3

func (TsMrevrangeSelectedLabels) AggregationRange added in v0.0.3

func (TsMrevrangeSelectedLabels) AggregationStdP added in v0.0.3

func (TsMrevrangeSelectedLabels) AggregationStdS added in v0.0.3

func (TsMrevrangeSelectedLabels) AggregationSum added in v0.0.3

func (TsMrevrangeSelectedLabels) AggregationTwa added in v0.0.54

func (TsMrevrangeSelectedLabels) AggregationVarP added in v0.0.3

func (TsMrevrangeSelectedLabels) AggregationVarS added in v0.0.3

func (TsMrevrangeSelectedLabels) Align added in v0.0.3

func (TsMrevrangeSelectedLabels) Count added in v0.0.3

func (TsMrevrangeSelectedLabels) Filter added in v0.0.3

type TsMrevrangeTotimestamp added in v0.0.3

type TsMrevrangeTotimestamp Completed

func (TsMrevrangeTotimestamp) AggregationAvg added in v0.0.3

func (TsMrevrangeTotimestamp) AggregationCount added in v0.0.3

func (TsMrevrangeTotimestamp) AggregationFirst added in v0.0.3

func (TsMrevrangeTotimestamp) AggregationLast added in v0.0.3

func (TsMrevrangeTotimestamp) AggregationMax added in v0.0.3

func (TsMrevrangeTotimestamp) AggregationMin added in v0.0.3

func (TsMrevrangeTotimestamp) AggregationRange added in v0.0.3

func (TsMrevrangeTotimestamp) AggregationStdP added in v0.0.3

func (TsMrevrangeTotimestamp) AggregationStdS added in v0.0.3

func (TsMrevrangeTotimestamp) AggregationSum added in v0.0.3

func (TsMrevrangeTotimestamp) AggregationTwa added in v0.0.54

func (TsMrevrangeTotimestamp) AggregationVarP added in v0.0.3

func (TsMrevrangeTotimestamp) AggregationVarS added in v0.0.3

func (TsMrevrangeTotimestamp) Align added in v0.0.3

func (TsMrevrangeTotimestamp) Count added in v0.0.3

func (TsMrevrangeTotimestamp) Filter added in v0.0.3

func (c TsMrevrangeTotimestamp) Filter(filter ...string) TsMrevrangeFilter

func (TsMrevrangeTotimestamp) FilterByTs added in v0.0.3

func (c TsMrevrangeTotimestamp) FilterByTs(timestamp ...int64) TsMrevrangeFilterByTs

func (TsMrevrangeTotimestamp) FilterByValue added in v0.0.3

func (TsMrevrangeTotimestamp) Latest added in v0.0.61

func (TsMrevrangeTotimestamp) SelectedLabels added in v0.0.3

func (c TsMrevrangeTotimestamp) SelectedLabels(labels []string) TsMrevrangeSelectedLabels

func (TsMrevrangeTotimestamp) Withlabels added in v0.0.3

type TsMrevrangeWithlabels added in v0.0.3

type TsMrevrangeWithlabels Completed

func (TsMrevrangeWithlabels) AggregationAvg added in v0.0.3

func (TsMrevrangeWithlabels) AggregationCount added in v0.0.3

func (TsMrevrangeWithlabels) AggregationFirst added in v0.0.3

func (TsMrevrangeWithlabels) AggregationLast added in v0.0.3

func (TsMrevrangeWithlabels) AggregationMax added in v0.0.3

func (TsMrevrangeWithlabels) AggregationMin added in v0.0.3

func (TsMrevrangeWithlabels) AggregationRange added in v0.0.3

func (TsMrevrangeWithlabels) AggregationStdP added in v0.0.3

func (TsMrevrangeWithlabels) AggregationStdS added in v0.0.3

func (TsMrevrangeWithlabels) AggregationSum added in v0.0.3

func (TsMrevrangeWithlabels) AggregationTwa added in v0.0.54

func (TsMrevrangeWithlabels) AggregationVarP added in v0.0.3

func (TsMrevrangeWithlabels) AggregationVarS added in v0.0.3

func (TsMrevrangeWithlabels) Align added in v0.0.3

func (TsMrevrangeWithlabels) Count added in v0.0.3

func (TsMrevrangeWithlabels) Filter added in v0.0.3

func (c TsMrevrangeWithlabels) Filter(filter ...string) TsMrevrangeFilter

type TsQueryindex added in v0.0.3

type TsQueryindex Completed

func (TsQueryindex) Filter added in v0.0.3

func (c TsQueryindex) Filter(filter ...string) TsQueryindexFilter

type TsQueryindexFilter added in v0.0.3

type TsQueryindexFilter Completed

func (TsQueryindexFilter) Build added in v0.0.3

func (c TsQueryindexFilter) Build() Completed

func (TsQueryindexFilter) Filter added in v0.0.3

func (c TsQueryindexFilter) Filter(filter ...string) TsQueryindexFilter

type TsRange added in v0.0.3

type TsRange Completed

func (TsRange) Key added in v0.0.3

func (c TsRange) Key(key string) TsRangeKey

type TsRangeAggregationAggregationAvg added in v0.0.3

type TsRangeAggregationAggregationAvg Completed

func (TsRangeAggregationAggregationAvg) Bucketduration added in v0.0.40

type TsRangeAggregationAggregationCount added in v0.0.3

type TsRangeAggregationAggregationCount Completed

func (TsRangeAggregationAggregationCount) Bucketduration added in v0.0.40

type TsRangeAggregationAggregationFirst added in v0.0.3

type TsRangeAggregationAggregationFirst Completed

func (TsRangeAggregationAggregationFirst) Bucketduration added in v0.0.40

type TsRangeAggregationAggregationLast added in v0.0.3

type TsRangeAggregationAggregationLast Completed

func (TsRangeAggregationAggregationLast) Bucketduration added in v0.0.40

type TsRangeAggregationAggregationMax added in v0.0.3

type TsRangeAggregationAggregationMax Completed

func (TsRangeAggregationAggregationMax) Bucketduration added in v0.0.40

type TsRangeAggregationAggregationMin added in v0.0.3

type TsRangeAggregationAggregationMin Completed

func (TsRangeAggregationAggregationMin) Bucketduration added in v0.0.40

type TsRangeAggregationAggregationRange added in v0.0.3

type TsRangeAggregationAggregationRange Completed

func (TsRangeAggregationAggregationRange) Bucketduration added in v0.0.40

type TsRangeAggregationAggregationStdP added in v0.0.3

type TsRangeAggregationAggregationStdP Completed

func (TsRangeAggregationAggregationStdP) Bucketduration added in v0.0.40

type TsRangeAggregationAggregationStdS added in v0.0.3

type TsRangeAggregationAggregationStdS Completed

func (TsRangeAggregationAggregationStdS) Bucketduration added in v0.0.40

type TsRangeAggregationAggregationSum added in v0.0.3

type TsRangeAggregationAggregationSum Completed

func (TsRangeAggregationAggregationSum) Bucketduration added in v0.0.40

type TsRangeAggregationAggregationTwa added in v0.0.54

type TsRangeAggregationAggregationTwa Completed

func (TsRangeAggregationAggregationTwa) Bucketduration added in v0.0.54

type TsRangeAggregationAggregationVarP added in v0.0.3

type TsRangeAggregationAggregationVarP Completed

func (TsRangeAggregationAggregationVarP) Bucketduration added in v0.0.40

type TsRangeAggregationAggregationVarS added in v0.0.3

type TsRangeAggregationAggregationVarS Completed

func (TsRangeAggregationAggregationVarS) Bucketduration added in v0.0.40

type TsRangeAggregationBucketduration added in v0.0.40

type TsRangeAggregationBucketduration Completed

func (TsRangeAggregationBucketduration) Buckettimestamp added in v0.0.54

func (TsRangeAggregationBucketduration) Build added in v0.0.40

func (TsRangeAggregationBucketduration) Empty added in v0.0.54

type TsRangeAggregationBuckettimestamp added in v0.0.54

type TsRangeAggregationBuckettimestamp Completed

func (TsRangeAggregationBuckettimestamp) Build added in v0.0.54

func (TsRangeAggregationBuckettimestamp) Empty added in v0.0.54

type TsRangeAggregationEmpty added in v0.0.54

type TsRangeAggregationEmpty Completed

func (TsRangeAggregationEmpty) Build added in v0.0.54

type TsRangeAlign added in v0.0.3

type TsRangeAlign Completed

func (TsRangeAlign) AggregationAvg added in v0.0.3

func (TsRangeAlign) AggregationCount added in v0.0.3

func (c TsRangeAlign) AggregationCount() TsRangeAggregationAggregationCount

func (TsRangeAlign) AggregationFirst added in v0.0.3

func (c TsRangeAlign) AggregationFirst() TsRangeAggregationAggregationFirst

func (TsRangeAlign) AggregationLast added in v0.0.3

func (c TsRangeAlign) AggregationLast() TsRangeAggregationAggregationLast

func (TsRangeAlign) AggregationMax added in v0.0.3

func (TsRangeAlign) AggregationMin added in v0.0.3

func (TsRangeAlign) AggregationRange added in v0.0.3

func (c TsRangeAlign) AggregationRange() TsRangeAggregationAggregationRange

func (TsRangeAlign) AggregationStdP added in v0.0.3

func (c TsRangeAlign) AggregationStdP() TsRangeAggregationAggregationStdP

func (TsRangeAlign) AggregationStdS added in v0.0.3

func (c TsRangeAlign) AggregationStdS() TsRangeAggregationAggregationStdS

func (TsRangeAlign) AggregationSum added in v0.0.3

func (TsRangeAlign) AggregationTwa added in v0.0.54

func (TsRangeAlign) AggregationVarP added in v0.0.3

func (c TsRangeAlign) AggregationVarP() TsRangeAggregationAggregationVarP

func (TsRangeAlign) AggregationVarS added in v0.0.3

func (c TsRangeAlign) AggregationVarS() TsRangeAggregationAggregationVarS

func (TsRangeAlign) Build added in v0.0.3

func (c TsRangeAlign) Build() Completed

type TsRangeCount added in v0.0.3

type TsRangeCount Completed

func (TsRangeCount) AggregationAvg added in v0.0.3

func (TsRangeCount) AggregationCount added in v0.0.3

func (c TsRangeCount) AggregationCount() TsRangeAggregationAggregationCount

func (TsRangeCount) AggregationFirst added in v0.0.3

func (c TsRangeCount) AggregationFirst() TsRangeAggregationAggregationFirst

func (TsRangeCount) AggregationLast added in v0.0.3

func (c TsRangeCount) AggregationLast() TsRangeAggregationAggregationLast

func (TsRangeCount) AggregationMax added in v0.0.3

func (TsRangeCount) AggregationMin added in v0.0.3

func (TsRangeCount) AggregationRange added in v0.0.3

func (c TsRangeCount) AggregationRange() TsRangeAggregationAggregationRange

func (TsRangeCount) AggregationStdP added in v0.0.3

func (c TsRangeCount) AggregationStdP() TsRangeAggregationAggregationStdP

func (TsRangeCount) AggregationStdS added in v0.0.3

func (c TsRangeCount) AggregationStdS() TsRangeAggregationAggregationStdS

func (TsRangeCount) AggregationSum added in v0.0.3

func (TsRangeCount) AggregationTwa added in v0.0.54

func (TsRangeCount) AggregationVarP added in v0.0.3

func (c TsRangeCount) AggregationVarP() TsRangeAggregationAggregationVarP

func (TsRangeCount) AggregationVarS added in v0.0.3

func (c TsRangeCount) AggregationVarS() TsRangeAggregationAggregationVarS

func (TsRangeCount) Align added in v0.0.3

func (c TsRangeCount) Align(value string) TsRangeAlign

func (TsRangeCount) Build added in v0.0.3

func (c TsRangeCount) Build() Completed

type TsRangeFilterByTs added in v0.0.3

type TsRangeFilterByTs Completed

func (TsRangeFilterByTs) AggregationAvg added in v0.0.3

func (TsRangeFilterByTs) AggregationCount added in v0.0.3

func (TsRangeFilterByTs) AggregationFirst added in v0.0.3

func (TsRangeFilterByTs) AggregationLast added in v0.0.3

func (TsRangeFilterByTs) AggregationMax added in v0.0.3

func (TsRangeFilterByTs) AggregationMin added in v0.0.3

func (TsRangeFilterByTs) AggregationRange added in v0.0.3

func (TsRangeFilterByTs) AggregationStdP added in v0.0.3

func (TsRangeFilterByTs) AggregationStdS added in v0.0.3

func (TsRangeFilterByTs) AggregationSum added in v0.0.3

func (TsRangeFilterByTs) AggregationTwa added in v0.0.54

func (TsRangeFilterByTs) AggregationVarP added in v0.0.3

func (TsRangeFilterByTs) AggregationVarS added in v0.0.3

func (TsRangeFilterByTs) Align added in v0.0.3

func (c TsRangeFilterByTs) Align(value string) TsRangeAlign

func (TsRangeFilterByTs) Build added in v0.0.3

func (c TsRangeFilterByTs) Build() Completed

func (TsRangeFilterByTs) Count added in v0.0.3

func (c TsRangeFilterByTs) Count(count int64) TsRangeCount

func (TsRangeFilterByTs) FilterByTs added in v0.0.3

func (c TsRangeFilterByTs) FilterByTs(timestamp ...int64) TsRangeFilterByTs

func (TsRangeFilterByTs) FilterByValue added in v0.0.3

func (c TsRangeFilterByTs) FilterByValue(min float64, max float64) TsRangeFilterByValue

type TsRangeFilterByValue added in v0.0.3

type TsRangeFilterByValue Completed

func (TsRangeFilterByValue) AggregationAvg added in v0.0.3

func (TsRangeFilterByValue) AggregationCount added in v0.0.3

func (TsRangeFilterByValue) AggregationFirst added in v0.0.3

func (TsRangeFilterByValue) AggregationLast added in v0.0.3

func (TsRangeFilterByValue) AggregationMax added in v0.0.3

func (TsRangeFilterByValue) AggregationMin added in v0.0.3

func (TsRangeFilterByValue) AggregationRange added in v0.0.3

func (TsRangeFilterByValue) AggregationStdP added in v0.0.3

func (TsRangeFilterByValue) AggregationStdS added in v0.0.3

func (TsRangeFilterByValue) AggregationSum added in v0.0.3

func (TsRangeFilterByValue) AggregationTwa added in v0.0.54

func (TsRangeFilterByValue) AggregationVarP added in v0.0.3

func (TsRangeFilterByValue) AggregationVarS added in v0.0.3

func (TsRangeFilterByValue) Align added in v0.0.3

func (c TsRangeFilterByValue) Align(value string) TsRangeAlign

func (TsRangeFilterByValue) Build added in v0.0.3

func (c TsRangeFilterByValue) Build() Completed

func (TsRangeFilterByValue) Count added in v0.0.3

func (c TsRangeFilterByValue) Count(count int64) TsRangeCount

type TsRangeFromtimestamp added in v0.0.3

type TsRangeFromtimestamp Completed

func (TsRangeFromtimestamp) Totimestamp added in v0.0.3

func (c TsRangeFromtimestamp) Totimestamp(totimestamp int64) TsRangeTotimestamp

type TsRangeKey added in v0.0.3

type TsRangeKey Completed

func (TsRangeKey) Fromtimestamp added in v0.0.3

func (c TsRangeKey) Fromtimestamp(fromtimestamp int64) TsRangeFromtimestamp

type TsRangeLatest added in v0.0.61

type TsRangeLatest Completed

func (TsRangeLatest) AggregationAvg added in v0.0.61

func (TsRangeLatest) AggregationCount added in v0.0.61

func (TsRangeLatest) AggregationFirst added in v0.0.61

func (TsRangeLatest) AggregationLast added in v0.0.61

func (TsRangeLatest) AggregationMax added in v0.0.61

func (TsRangeLatest) AggregationMin added in v0.0.61

func (TsRangeLatest) AggregationRange added in v0.0.61

func (TsRangeLatest) AggregationStdP added in v0.0.61

func (TsRangeLatest) AggregationStdS added in v0.0.61

func (TsRangeLatest) AggregationSum added in v0.0.61

func (TsRangeLatest) AggregationTwa added in v0.0.61

func (TsRangeLatest) AggregationVarP added in v0.0.61

func (TsRangeLatest) AggregationVarS added in v0.0.61

func (TsRangeLatest) Align added in v0.0.61

func (c TsRangeLatest) Align(value string) TsRangeAlign

func (TsRangeLatest) Build added in v0.0.61

func (c TsRangeLatest) Build() Completed

func (TsRangeLatest) Count added in v0.0.61

func (c TsRangeLatest) Count(count int64) TsRangeCount

func (TsRangeLatest) FilterByTs added in v0.0.61

func (c TsRangeLatest) FilterByTs(timestamp ...int64) TsRangeFilterByTs

func (TsRangeLatest) FilterByValue added in v0.0.61

func (c TsRangeLatest) FilterByValue(min float64, max float64) TsRangeFilterByValue

type TsRangeTotimestamp added in v0.0.3

type TsRangeTotimestamp Completed

func (TsRangeTotimestamp) AggregationAvg added in v0.0.3

func (TsRangeTotimestamp) AggregationCount added in v0.0.3

func (TsRangeTotimestamp) AggregationFirst added in v0.0.3

func (TsRangeTotimestamp) AggregationLast added in v0.0.3

func (TsRangeTotimestamp) AggregationMax added in v0.0.3

func (TsRangeTotimestamp) AggregationMin added in v0.0.3

func (TsRangeTotimestamp) AggregationRange added in v0.0.3

func (TsRangeTotimestamp) AggregationStdP added in v0.0.3

func (TsRangeTotimestamp) AggregationStdS added in v0.0.3

func (TsRangeTotimestamp) AggregationSum added in v0.0.3

func (TsRangeTotimestamp) AggregationTwa added in v0.0.54

func (TsRangeTotimestamp) AggregationVarP added in v0.0.3

func (TsRangeTotimestamp) AggregationVarS added in v0.0.3

func (TsRangeTotimestamp) Align added in v0.0.3

func (c TsRangeTotimestamp) Align(value string) TsRangeAlign

func (TsRangeTotimestamp) Build added in v0.0.3

func (c TsRangeTotimestamp) Build() Completed

func (TsRangeTotimestamp) Count added in v0.0.3

func (c TsRangeTotimestamp) Count(count int64) TsRangeCount

func (TsRangeTotimestamp) FilterByTs added in v0.0.3

func (c TsRangeTotimestamp) FilterByTs(timestamp ...int64) TsRangeFilterByTs

func (TsRangeTotimestamp) FilterByValue added in v0.0.3

func (c TsRangeTotimestamp) FilterByValue(min float64, max float64) TsRangeFilterByValue

func (TsRangeTotimestamp) Latest added in v0.0.61

func (c TsRangeTotimestamp) Latest() TsRangeLatest

type TsRevrange added in v0.0.3

type TsRevrange Completed

func (TsRevrange) Key added in v0.0.3

func (c TsRevrange) Key(key string) TsRevrangeKey

type TsRevrangeAggregationAggregationAvg added in v0.0.3

type TsRevrangeAggregationAggregationAvg Completed

func (TsRevrangeAggregationAggregationAvg) Bucketduration added in v0.0.40

type TsRevrangeAggregationAggregationCount added in v0.0.3

type TsRevrangeAggregationAggregationCount Completed

func (TsRevrangeAggregationAggregationCount) Bucketduration added in v0.0.40

type TsRevrangeAggregationAggregationFirst added in v0.0.3

type TsRevrangeAggregationAggregationFirst Completed

func (TsRevrangeAggregationAggregationFirst) Bucketduration added in v0.0.40

type TsRevrangeAggregationAggregationLast added in v0.0.3

type TsRevrangeAggregationAggregationLast Completed

func (TsRevrangeAggregationAggregationLast) Bucketduration added in v0.0.40

type TsRevrangeAggregationAggregationMax added in v0.0.3

type TsRevrangeAggregationAggregationMax Completed

func (TsRevrangeAggregationAggregationMax) Bucketduration added in v0.0.40

type TsRevrangeAggregationAggregationMin added in v0.0.3

type TsRevrangeAggregationAggregationMin Completed

func (TsRevrangeAggregationAggregationMin) Bucketduration added in v0.0.40

type TsRevrangeAggregationAggregationRange added in v0.0.3

type TsRevrangeAggregationAggregationRange Completed

func (TsRevrangeAggregationAggregationRange) Bucketduration added in v0.0.40

type TsRevrangeAggregationAggregationStdP added in v0.0.3

type TsRevrangeAggregationAggregationStdP Completed

func (TsRevrangeAggregationAggregationStdP) Bucketduration added in v0.0.40

type TsRevrangeAggregationAggregationStdS added in v0.0.3

type TsRevrangeAggregationAggregationStdS Completed

func (TsRevrangeAggregationAggregationStdS) Bucketduration added in v0.0.40

type TsRevrangeAggregationAggregationSum added in v0.0.3

type TsRevrangeAggregationAggregationSum Completed

func (TsRevrangeAggregationAggregationSum) Bucketduration added in v0.0.40

type TsRevrangeAggregationAggregationTwa added in v0.0.54

type TsRevrangeAggregationAggregationTwa Completed

func (TsRevrangeAggregationAggregationTwa) Bucketduration added in v0.0.54

type TsRevrangeAggregationAggregationVarP added in v0.0.3

type TsRevrangeAggregationAggregationVarP Completed

func (TsRevrangeAggregationAggregationVarP) Bucketduration added in v0.0.40

type TsRevrangeAggregationAggregationVarS added in v0.0.3

type TsRevrangeAggregationAggregationVarS Completed

func (TsRevrangeAggregationAggregationVarS) Bucketduration added in v0.0.40

type TsRevrangeAggregationBucketduration added in v0.0.40

type TsRevrangeAggregationBucketduration Completed

func (TsRevrangeAggregationBucketduration) Buckettimestamp added in v0.0.54

func (TsRevrangeAggregationBucketduration) Build added in v0.0.40

func (TsRevrangeAggregationBucketduration) Empty added in v0.0.54

type TsRevrangeAggregationBuckettimestamp added in v0.0.54

type TsRevrangeAggregationBuckettimestamp Completed

func (TsRevrangeAggregationBuckettimestamp) Build added in v0.0.54

func (TsRevrangeAggregationBuckettimestamp) Empty added in v0.0.54

type TsRevrangeAggregationEmpty added in v0.0.54

type TsRevrangeAggregationEmpty Completed

func (TsRevrangeAggregationEmpty) Build added in v0.0.54

type TsRevrangeAlign added in v0.0.3

type TsRevrangeAlign Completed

func (TsRevrangeAlign) AggregationAvg added in v0.0.3

func (TsRevrangeAlign) AggregationCount added in v0.0.3

func (TsRevrangeAlign) AggregationFirst added in v0.0.3

func (TsRevrangeAlign) AggregationLast added in v0.0.3

func (TsRevrangeAlign) AggregationMax added in v0.0.3

func (TsRevrangeAlign) AggregationMin added in v0.0.3

func (TsRevrangeAlign) AggregationRange added in v0.0.3

func (TsRevrangeAlign) AggregationStdP added in v0.0.3

func (TsRevrangeAlign) AggregationStdS added in v0.0.3

func (TsRevrangeAlign) AggregationSum added in v0.0.3

func (TsRevrangeAlign) AggregationTwa added in v0.0.54

func (TsRevrangeAlign) AggregationVarP added in v0.0.3

func (TsRevrangeAlign) AggregationVarS added in v0.0.3

func (TsRevrangeAlign) Build added in v0.0.3

func (c TsRevrangeAlign) Build() Completed

type TsRevrangeCount added in v0.0.3

type TsRevrangeCount Completed

func (TsRevrangeCount) AggregationAvg added in v0.0.3

func (TsRevrangeCount) AggregationCount added in v0.0.3

func (TsRevrangeCount) AggregationFirst added in v0.0.3

func (TsRevrangeCount) AggregationLast added in v0.0.3

func (TsRevrangeCount) AggregationMax added in v0.0.3

func (TsRevrangeCount) AggregationMin added in v0.0.3

func (TsRevrangeCount) AggregationRange added in v0.0.3

func (TsRevrangeCount) AggregationStdP added in v0.0.3

func (TsRevrangeCount) AggregationStdS added in v0.0.3

func (TsRevrangeCount) AggregationSum added in v0.0.3

func (TsRevrangeCount) AggregationTwa added in v0.0.54

func (TsRevrangeCount) AggregationVarP added in v0.0.3

func (TsRevrangeCount) AggregationVarS added in v0.0.3

func (TsRevrangeCount) Align added in v0.0.3

func (c TsRevrangeCount) Align(value string) TsRevrangeAlign

func (TsRevrangeCount) Build added in v0.0.3

func (c TsRevrangeCount) Build() Completed

type TsRevrangeFilterByTs added in v0.0.3

type TsRevrangeFilterByTs Completed

func (TsRevrangeFilterByTs) AggregationAvg added in v0.0.3

func (TsRevrangeFilterByTs) AggregationCount added in v0.0.3

func (TsRevrangeFilterByTs) AggregationFirst added in v0.0.3

func (TsRevrangeFilterByTs) AggregationLast added in v0.0.3

func (TsRevrangeFilterByTs) AggregationMax added in v0.0.3

func (TsRevrangeFilterByTs) AggregationMin added in v0.0.3

func (TsRevrangeFilterByTs) AggregationRange added in v0.0.3

func (TsRevrangeFilterByTs) AggregationStdP added in v0.0.3

func (TsRevrangeFilterByTs) AggregationStdS added in v0.0.3

func (TsRevrangeFilterByTs) AggregationSum added in v0.0.3

func (TsRevrangeFilterByTs) AggregationTwa added in v0.0.54

func (TsRevrangeFilterByTs) AggregationVarP added in v0.0.3

func (TsRevrangeFilterByTs) AggregationVarS added in v0.0.3

func (TsRevrangeFilterByTs) Align added in v0.0.3

func (TsRevrangeFilterByTs) Build added in v0.0.3

func (c TsRevrangeFilterByTs) Build() Completed

func (TsRevrangeFilterByTs) Count added in v0.0.3

func (TsRevrangeFilterByTs) FilterByTs added in v0.0.3

func (c TsRevrangeFilterByTs) FilterByTs(timestamp ...int64) TsRevrangeFilterByTs

func (TsRevrangeFilterByTs) FilterByValue added in v0.0.3

func (c TsRevrangeFilterByTs) FilterByValue(min float64, max float64) TsRevrangeFilterByValue

type TsRevrangeFilterByValue added in v0.0.3

type TsRevrangeFilterByValue Completed

func (TsRevrangeFilterByValue) AggregationAvg added in v0.0.3

func (TsRevrangeFilterByValue) AggregationCount added in v0.0.3

func (TsRevrangeFilterByValue) AggregationFirst added in v0.0.3

func (TsRevrangeFilterByValue) AggregationLast added in v0.0.3

func (TsRevrangeFilterByValue) AggregationMax added in v0.0.3

func (TsRevrangeFilterByValue) AggregationMin added in v0.0.3

func (TsRevrangeFilterByValue) AggregationRange added in v0.0.3

func (TsRevrangeFilterByValue) AggregationStdP added in v0.0.3

func (TsRevrangeFilterByValue) AggregationStdS added in v0.0.3

func (TsRevrangeFilterByValue) AggregationSum added in v0.0.3

func (TsRevrangeFilterByValue) AggregationTwa added in v0.0.54

func (TsRevrangeFilterByValue) AggregationVarP added in v0.0.3

func (TsRevrangeFilterByValue) AggregationVarS added in v0.0.3

func (TsRevrangeFilterByValue) Align added in v0.0.3

func (TsRevrangeFilterByValue) Build added in v0.0.3

func (TsRevrangeFilterByValue) Count added in v0.0.3

type TsRevrangeFromtimestamp added in v0.0.3

type TsRevrangeFromtimestamp Completed

func (TsRevrangeFromtimestamp) Totimestamp added in v0.0.3

func (c TsRevrangeFromtimestamp) Totimestamp(totimestamp int64) TsRevrangeTotimestamp

type TsRevrangeKey added in v0.0.3

type TsRevrangeKey Completed

func (TsRevrangeKey) Fromtimestamp added in v0.0.3

func (c TsRevrangeKey) Fromtimestamp(fromtimestamp int64) TsRevrangeFromtimestamp

type TsRevrangeLatest added in v0.0.61

type TsRevrangeLatest Completed

func (TsRevrangeLatest) AggregationAvg added in v0.0.61

func (TsRevrangeLatest) AggregationCount added in v0.0.61

func (TsRevrangeLatest) AggregationFirst added in v0.0.61

func (TsRevrangeLatest) AggregationLast added in v0.0.61

func (TsRevrangeLatest) AggregationMax added in v0.0.61

func (TsRevrangeLatest) AggregationMin added in v0.0.61

func (TsRevrangeLatest) AggregationRange added in v0.0.61

func (TsRevrangeLatest) AggregationStdP added in v0.0.61

func (TsRevrangeLatest) AggregationStdS added in v0.0.61

func (TsRevrangeLatest) AggregationSum added in v0.0.61

func (TsRevrangeLatest) AggregationTwa added in v0.0.61

func (TsRevrangeLatest) AggregationVarP added in v0.0.61

func (TsRevrangeLatest) AggregationVarS added in v0.0.61

func (TsRevrangeLatest) Align added in v0.0.61

func (c TsRevrangeLatest) Align(value string) TsRevrangeAlign

func (TsRevrangeLatest) Build added in v0.0.61

func (c TsRevrangeLatest) Build() Completed

func (TsRevrangeLatest) Count added in v0.0.61

func (c TsRevrangeLatest) Count(count int64) TsRevrangeCount

func (TsRevrangeLatest) FilterByTs added in v0.0.61

func (c TsRevrangeLatest) FilterByTs(timestamp ...int64) TsRevrangeFilterByTs

func (TsRevrangeLatest) FilterByValue added in v0.0.61

func (c TsRevrangeLatest) FilterByValue(min float64, max float64) TsRevrangeFilterByValue

type TsRevrangeTotimestamp added in v0.0.3

type TsRevrangeTotimestamp Completed

func (TsRevrangeTotimestamp) AggregationAvg added in v0.0.3

func (TsRevrangeTotimestamp) AggregationCount added in v0.0.3

func (TsRevrangeTotimestamp) AggregationFirst added in v0.0.3

func (TsRevrangeTotimestamp) AggregationLast added in v0.0.3

func (TsRevrangeTotimestamp) AggregationMax added in v0.0.3

func (TsRevrangeTotimestamp) AggregationMin added in v0.0.3

func (TsRevrangeTotimestamp) AggregationRange added in v0.0.3

func (TsRevrangeTotimestamp) AggregationStdP added in v0.0.3

func (TsRevrangeTotimestamp) AggregationStdS added in v0.0.3

func (TsRevrangeTotimestamp) AggregationSum added in v0.0.3

func (TsRevrangeTotimestamp) AggregationTwa added in v0.0.54

func (TsRevrangeTotimestamp) AggregationVarP added in v0.0.3

func (TsRevrangeTotimestamp) AggregationVarS added in v0.0.3

func (TsRevrangeTotimestamp) Align added in v0.0.3

func (TsRevrangeTotimestamp) Build added in v0.0.3

func (c TsRevrangeTotimestamp) Build() Completed

func (TsRevrangeTotimestamp) Count added in v0.0.3

func (TsRevrangeTotimestamp) FilterByTs added in v0.0.3

func (c TsRevrangeTotimestamp) FilterByTs(timestamp ...int64) TsRevrangeFilterByTs

func (TsRevrangeTotimestamp) FilterByValue added in v0.0.3

func (TsRevrangeTotimestamp) Latest added in v0.0.61

type Ttl

type Ttl Completed

func (Ttl) Key

func (c Ttl) Key(key string) TtlKey

type TtlKey

type TtlKey Completed

func (TtlKey) Build

func (c TtlKey) Build() Completed

func (TtlKey) Cache

func (c TtlKey) Cache() Cacheable

type Type

type Type Completed

func (Type) Key

func (c Type) Key(key string) TypeKey

type TypeKey

type TypeKey Completed

func (TypeKey) Build

func (c TypeKey) Build() Completed

func (TypeKey) Cache

func (c TypeKey) Cache() Cacheable
type Unlink Completed

func (Unlink) Key

func (c Unlink) Key(key ...string) UnlinkKey

type UnlinkKey

type UnlinkKey Completed

func (UnlinkKey) Build

func (c UnlinkKey) Build() Completed

func (UnlinkKey) Key

func (c UnlinkKey) Key(key ...string) UnlinkKey

type Unsubscribe

type Unsubscribe Completed

func (Unsubscribe) Build

func (c Unsubscribe) Build() Completed

func (Unsubscribe) Channel

func (c Unsubscribe) Channel(channel ...string) UnsubscribeChannel

type UnsubscribeChannel

type UnsubscribeChannel Completed

func (UnsubscribeChannel) Build

func (c UnsubscribeChannel) Build() Completed

func (UnsubscribeChannel) Channel

func (c UnsubscribeChannel) Channel(channel ...string) UnsubscribeChannel

type Unwatch

type Unwatch Completed

func (Unwatch) Build

func (c Unwatch) Build() Completed

type Wait

type Wait Completed

func (Wait) Numreplicas

func (c Wait) Numreplicas(numreplicas int64) WaitNumreplicas

type WaitNumreplicas

type WaitNumreplicas Completed

func (WaitNumreplicas) Timeout

func (c WaitNumreplicas) Timeout(timeout int64) WaitTimeout

type WaitTimeout

type WaitTimeout Completed

func (WaitTimeout) Build

func (c WaitTimeout) Build() Completed

type Waitaof added in v0.0.96

type Waitaof Completed

func (Waitaof) Numlocal added in v0.0.96

func (c Waitaof) Numlocal(numlocal int64) WaitaofNumlocal

type WaitaofNumlocal added in v0.0.96

type WaitaofNumlocal Completed

func (WaitaofNumlocal) Numreplicas added in v0.0.96

func (c WaitaofNumlocal) Numreplicas(numreplicas int64) WaitaofNumreplicas

type WaitaofNumreplicas added in v0.0.96

type WaitaofNumreplicas Completed

func (WaitaofNumreplicas) Timeout added in v0.0.96

func (c WaitaofNumreplicas) Timeout(timeout int64) WaitaofTimeout

type WaitaofTimeout added in v0.0.96

type WaitaofTimeout Completed

func (WaitaofTimeout) Build added in v0.0.96

func (c WaitaofTimeout) Build() Completed

type Watch

type Watch Completed

func (Watch) Key

func (c Watch) Key(key ...string) WatchKey

type WatchKey

type WatchKey Completed

func (WatchKey) Build

func (c WatchKey) Build() Completed

func (WatchKey) Key

func (c WatchKey) Key(key ...string) WatchKey

type Xack

type Xack Completed

func (Xack) Key

func (c Xack) Key(key string) XackKey

type XackGroup

type XackGroup Completed

func (XackGroup) Id

func (c XackGroup) Id(id ...string) XackId

type XackId

type XackId Completed

func (XackId) Build

func (c XackId) Build() Completed

func (XackId) Id

func (c XackId) Id(id ...string) XackId

type XackKey

type XackKey Completed

func (XackKey) Group

func (c XackKey) Group(group string) XackGroup

type Xadd

type Xadd Completed

func (Xadd) Key

func (c Xadd) Key(key string) XaddKey

type XaddFieldValue

type XaddFieldValue Completed

func (XaddFieldValue) Build

func (c XaddFieldValue) Build() Completed

func (XaddFieldValue) FieldValue

func (c XaddFieldValue) FieldValue(field string, value string) XaddFieldValue

type XaddId

type XaddId Completed

func (XaddId) FieldValue

func (c XaddId) FieldValue() XaddFieldValue

type XaddKey

type XaddKey Completed

func (XaddKey) Id

func (c XaddKey) Id(id string) XaddId

func (XaddKey) Maxlen

func (c XaddKey) Maxlen() XaddTrimStrategyMaxlen

func (XaddKey) Minid

func (c XaddKey) Minid() XaddTrimStrategyMinid

func (XaddKey) Nomkstream

func (c XaddKey) Nomkstream() XaddNomkstream

type XaddNomkstream

type XaddNomkstream Completed

func (XaddNomkstream) Id

func (c XaddNomkstream) Id(id string) XaddId

func (XaddNomkstream) Maxlen

func (XaddNomkstream) Minid

type XaddTrimLimit

type XaddTrimLimit Completed

func (XaddTrimLimit) Id

func (c XaddTrimLimit) Id(id string) XaddId

type XaddTrimOperatorAlmost

type XaddTrimOperatorAlmost Completed

func (XaddTrimOperatorAlmost) Threshold

func (c XaddTrimOperatorAlmost) Threshold(threshold string) XaddTrimThreshold

type XaddTrimOperatorExact

type XaddTrimOperatorExact Completed

func (XaddTrimOperatorExact) Threshold

func (c XaddTrimOperatorExact) Threshold(threshold string) XaddTrimThreshold

type XaddTrimStrategyMaxlen

type XaddTrimStrategyMaxlen Completed

func (XaddTrimStrategyMaxlen) Almost

func (XaddTrimStrategyMaxlen) Exact

func (XaddTrimStrategyMaxlen) Threshold

func (c XaddTrimStrategyMaxlen) Threshold(threshold string) XaddTrimThreshold

type XaddTrimStrategyMinid

type XaddTrimStrategyMinid Completed

func (XaddTrimStrategyMinid) Almost

func (XaddTrimStrategyMinid) Exact

func (XaddTrimStrategyMinid) Threshold

func (c XaddTrimStrategyMinid) Threshold(threshold string) XaddTrimThreshold

type XaddTrimThreshold

type XaddTrimThreshold Completed

func (XaddTrimThreshold) Id

func (c XaddTrimThreshold) Id(id string) XaddId

func (XaddTrimThreshold) Limit

func (c XaddTrimThreshold) Limit(count int64) XaddTrimLimit

type Xautoclaim

type Xautoclaim Completed

func (Xautoclaim) Key

func (c Xautoclaim) Key(key string) XautoclaimKey

type XautoclaimConsumer

type XautoclaimConsumer Completed

func (XautoclaimConsumer) MinIdleTime

func (c XautoclaimConsumer) MinIdleTime(minIdleTime string) XautoclaimMinIdleTime

type XautoclaimCount

type XautoclaimCount Completed

func (XautoclaimCount) Build

func (c XautoclaimCount) Build() Completed

func (XautoclaimCount) Justid

func (c XautoclaimCount) Justid() XautoclaimJustid

type XautoclaimGroup

type XautoclaimGroup Completed

func (XautoclaimGroup) Consumer

func (c XautoclaimGroup) Consumer(consumer string) XautoclaimConsumer

type XautoclaimJustid added in v0.0.2

type XautoclaimJustid Completed

func (XautoclaimJustid) Build added in v0.0.2

func (c XautoclaimJustid) Build() Completed

type XautoclaimKey

type XautoclaimKey Completed

func (XautoclaimKey) Group

func (c XautoclaimKey) Group(group string) XautoclaimGroup

type XautoclaimMinIdleTime

type XautoclaimMinIdleTime Completed

func (XautoclaimMinIdleTime) Start

type XautoclaimStart

type XautoclaimStart Completed

func (XautoclaimStart) Build

func (c XautoclaimStart) Build() Completed

func (XautoclaimStart) Count

func (c XautoclaimStart) Count(count int64) XautoclaimCount

func (XautoclaimStart) Justid

func (c XautoclaimStart) Justid() XautoclaimJustid

type Xclaim

type Xclaim Completed

func (Xclaim) Key

func (c Xclaim) Key(key string) XclaimKey

type XclaimConsumer

type XclaimConsumer Completed

func (XclaimConsumer) MinIdleTime

func (c XclaimConsumer) MinIdleTime(minIdleTime string) XclaimMinIdleTime

type XclaimForce added in v0.0.2

type XclaimForce Completed

func (XclaimForce) Build added in v0.0.2

func (c XclaimForce) Build() Completed

func (XclaimForce) Justid added in v0.0.2

func (c XclaimForce) Justid() XclaimJustid

func (XclaimForce) Lastid added in v0.0.81

func (c XclaimForce) Lastid() XclaimLastid

type XclaimGroup

type XclaimGroup Completed

func (XclaimGroup) Consumer

func (c XclaimGroup) Consumer(consumer string) XclaimConsumer

type XclaimId

type XclaimId Completed

func (XclaimId) Build

func (c XclaimId) Build() Completed

func (XclaimId) Force

func (c XclaimId) Force() XclaimForce

func (XclaimId) Id

func (c XclaimId) Id(id ...string) XclaimId

func (XclaimId) Idle

func (c XclaimId) Idle(ms int64) XclaimIdle

func (XclaimId) Justid

func (c XclaimId) Justid() XclaimJustid

func (XclaimId) Lastid added in v0.0.81

func (c XclaimId) Lastid() XclaimLastid

func (XclaimId) Retrycount

func (c XclaimId) Retrycount(count int64) XclaimRetrycount

func (XclaimId) Time

func (c XclaimId) Time(msUnixTime int64) XclaimTime

type XclaimIdle

type XclaimIdle Completed

func (XclaimIdle) Build

func (c XclaimIdle) Build() Completed

func (XclaimIdle) Force

func (c XclaimIdle) Force() XclaimForce

func (XclaimIdle) Justid

func (c XclaimIdle) Justid() XclaimJustid

func (XclaimIdle) Lastid added in v0.0.81

func (c XclaimIdle) Lastid() XclaimLastid

func (XclaimIdle) Retrycount

func (c XclaimIdle) Retrycount(count int64) XclaimRetrycount

func (XclaimIdle) Time

func (c XclaimIdle) Time(msUnixTime int64) XclaimTime

type XclaimJustid added in v0.0.2

type XclaimJustid Completed

func (XclaimJustid) Build added in v0.0.2

func (c XclaimJustid) Build() Completed

func (XclaimJustid) Lastid added in v0.0.81

func (c XclaimJustid) Lastid() XclaimLastid

type XclaimKey

type XclaimKey Completed

func (XclaimKey) Group

func (c XclaimKey) Group(group string) XclaimGroup

type XclaimLastid added in v0.0.81

type XclaimLastid Completed

func (XclaimLastid) Build added in v0.0.81

func (c XclaimLastid) Build() Completed

type XclaimMinIdleTime

type XclaimMinIdleTime Completed

func (XclaimMinIdleTime) Id

func (c XclaimMinIdleTime) Id(id ...string) XclaimId

type XclaimRetrycount

type XclaimRetrycount Completed

func (XclaimRetrycount) Build

func (c XclaimRetrycount) Build() Completed

func (XclaimRetrycount) Force

func (c XclaimRetrycount) Force() XclaimForce

func (XclaimRetrycount) Justid

func (c XclaimRetrycount) Justid() XclaimJustid

func (XclaimRetrycount) Lastid added in v0.0.81

func (c XclaimRetrycount) Lastid() XclaimLastid

type XclaimTime

type XclaimTime Completed

func (XclaimTime) Build

func (c XclaimTime) Build() Completed

func (XclaimTime) Force

func (c XclaimTime) Force() XclaimForce

func (XclaimTime) Justid

func (c XclaimTime) Justid() XclaimJustid

func (XclaimTime) Lastid added in v0.0.81

func (c XclaimTime) Lastid() XclaimLastid

func (XclaimTime) Retrycount

func (c XclaimTime) Retrycount(count int64) XclaimRetrycount

type Xdel

type Xdel Completed

func (Xdel) Key

func (c Xdel) Key(key string) XdelKey

type XdelId

type XdelId Completed

func (XdelId) Build

func (c XdelId) Build() Completed

func (XdelId) Id

func (c XdelId) Id(id ...string) XdelId

type XdelKey

type XdelKey Completed

func (XdelKey) Id

func (c XdelKey) Id(id ...string) XdelId

type XgroupCreate added in v0.0.2

type XgroupCreate Completed

func (XgroupCreate) Key added in v0.0.2

func (c XgroupCreate) Key(key string) XgroupCreateKey

type XgroupCreateEntriesread added in v0.0.38

type XgroupCreateEntriesread Completed

func (XgroupCreateEntriesread) Build added in v0.0.38

type XgroupCreateGroup added in v0.0.95

type XgroupCreateGroup Completed

func (XgroupCreateGroup) Id added in v0.0.95

type XgroupCreateId

type XgroupCreateId Completed

func (XgroupCreateId) Build

func (c XgroupCreateId) Build() Completed

func (XgroupCreateId) Entriesread added in v0.0.38

func (c XgroupCreateId) Entriesread(entriesRead int64) XgroupCreateEntriesread

func (XgroupCreateId) Mkstream

func (c XgroupCreateId) Mkstream() XgroupCreateMkstream

type XgroupCreateKey added in v0.0.2

type XgroupCreateKey Completed

func (XgroupCreateKey) Group added in v0.0.95

func (c XgroupCreateKey) Group(group string) XgroupCreateGroup

type XgroupCreateMkstream

type XgroupCreateMkstream Completed

func (XgroupCreateMkstream) Build

func (c XgroupCreateMkstream) Build() Completed

func (XgroupCreateMkstream) Entriesread added in v0.0.38

func (c XgroupCreateMkstream) Entriesread(entriesRead int64) XgroupCreateEntriesread

type XgroupCreateconsumer

type XgroupCreateconsumer Completed

func (XgroupCreateconsumer) Key added in v0.0.2

type XgroupCreateconsumerConsumer added in v0.0.95

type XgroupCreateconsumerConsumer Completed

func (XgroupCreateconsumerConsumer) Build added in v0.0.95

type XgroupCreateconsumerGroup added in v0.0.95

type XgroupCreateconsumerGroup Completed

func (XgroupCreateconsumerGroup) Consumer added in v0.0.95

type XgroupCreateconsumerKey added in v0.0.2

type XgroupCreateconsumerKey Completed

func (XgroupCreateconsumerKey) Group added in v0.0.95

type XgroupDelconsumer

type XgroupDelconsumer Completed

func (XgroupDelconsumer) Key added in v0.0.2

type XgroupDelconsumerConsumername added in v0.0.2

type XgroupDelconsumerConsumername Completed

func (XgroupDelconsumerConsumername) Build added in v0.0.2

type XgroupDelconsumerGroup added in v0.0.95

type XgroupDelconsumerGroup Completed

func (XgroupDelconsumerGroup) Consumername added in v0.0.95

func (c XgroupDelconsumerGroup) Consumername(consumername string) XgroupDelconsumerConsumername

type XgroupDelconsumerKey added in v0.0.2

type XgroupDelconsumerKey Completed

func (XgroupDelconsumerKey) Group added in v0.0.95

type XgroupDestroy

type XgroupDestroy Completed

func (XgroupDestroy) Key added in v0.0.2

type XgroupDestroyGroup added in v0.0.95

type XgroupDestroyGroup Completed

func (XgroupDestroyGroup) Build added in v0.0.95

func (c XgroupDestroyGroup) Build() Completed

type XgroupDestroyKey added in v0.0.2

type XgroupDestroyKey Completed

func (XgroupDestroyKey) Group added in v0.0.95

type XgroupHelp added in v0.0.2

type XgroupHelp Completed

func (XgroupHelp) Build added in v0.0.2

func (c XgroupHelp) Build() Completed

type XgroupSetid added in v0.0.2

type XgroupSetid Completed

func (XgroupSetid) Key added in v0.0.2

func (c XgroupSetid) Key(key string) XgroupSetidKey

type XgroupSetidEntriesread added in v0.0.38

type XgroupSetidEntriesread Completed

func (XgroupSetidEntriesread) Build added in v0.0.38

type XgroupSetidGroup added in v0.0.95

type XgroupSetidGroup Completed

func (XgroupSetidGroup) Id added in v0.0.95

type XgroupSetidId

type XgroupSetidId Completed

func (XgroupSetidId) Build

func (c XgroupSetidId) Build() Completed

func (XgroupSetidId) Entriesread added in v0.0.38

func (c XgroupSetidId) Entriesread(entriesRead int64) XgroupSetidEntriesread

type XgroupSetidKey added in v0.0.2

type XgroupSetidKey Completed

func (XgroupSetidKey) Group added in v0.0.95

func (c XgroupSetidKey) Group(group string) XgroupSetidGroup

type XinfoConsumers

type XinfoConsumers Completed

func (XinfoConsumers) Key added in v0.0.2

type XinfoConsumersGroup added in v0.0.95

type XinfoConsumersGroup Completed

func (XinfoConsumersGroup) Build added in v0.0.95

func (c XinfoConsumersGroup) Build() Completed

type XinfoConsumersKey added in v0.0.2

type XinfoConsumersKey Completed

func (XinfoConsumersKey) Group added in v0.0.95

type XinfoGroups

type XinfoGroups Completed

func (XinfoGroups) Key added in v0.0.2

func (c XinfoGroups) Key(key string) XinfoGroupsKey

type XinfoGroupsKey added in v0.0.2

type XinfoGroupsKey Completed

func (XinfoGroupsKey) Build added in v0.0.2

func (c XinfoGroupsKey) Build() Completed

type XinfoHelp added in v0.0.2

type XinfoHelp Completed

func (XinfoHelp) Build added in v0.0.2

func (c XinfoHelp) Build() Completed

type XinfoStream

type XinfoStream Completed

func (XinfoStream) Key added in v0.0.2

func (c XinfoStream) Key(key string) XinfoStreamKey

type XinfoStreamFullCount added in v0.0.2

type XinfoStreamFullCount Completed

func (XinfoStreamFullCount) Build added in v0.0.2

func (c XinfoStreamFullCount) Build() Completed

type XinfoStreamFullFull added in v0.0.2

type XinfoStreamFullFull Completed

func (XinfoStreamFullFull) Build added in v0.0.2

func (c XinfoStreamFullFull) Build() Completed

func (XinfoStreamFullFull) Count added in v0.0.2

type XinfoStreamKey added in v0.0.2

type XinfoStreamKey Completed

func (XinfoStreamKey) Build added in v0.0.2

func (c XinfoStreamKey) Build() Completed

func (XinfoStreamKey) Full added in v0.0.2

type Xlen

type Xlen Completed

func (Xlen) Key

func (c Xlen) Key(key string) XlenKey

type XlenKey

type XlenKey Completed

func (XlenKey) Build

func (c XlenKey) Build() Completed

type Xpending

type Xpending Completed

func (Xpending) Key

func (c Xpending) Key(key string) XpendingKey

type XpendingFiltersConsumer

type XpendingFiltersConsumer Completed

func (XpendingFiltersConsumer) Build

type XpendingFiltersCount

type XpendingFiltersCount Completed

func (XpendingFiltersCount) Build

func (c XpendingFiltersCount) Build() Completed

func (XpendingFiltersCount) Consumer

type XpendingFiltersEnd

type XpendingFiltersEnd Completed

func (XpendingFiltersEnd) Count

type XpendingFiltersIdle

type XpendingFiltersIdle Completed

func (XpendingFiltersIdle) Start

type XpendingFiltersStart

type XpendingFiltersStart Completed

func (XpendingFiltersStart) End

type XpendingGroup

type XpendingGroup Completed

func (XpendingGroup) Build added in v0.0.2

func (c XpendingGroup) Build() Completed

func (XpendingGroup) Idle

func (c XpendingGroup) Idle(minIdleTime int64) XpendingFiltersIdle

func (XpendingGroup) Start

func (c XpendingGroup) Start(start string) XpendingFiltersStart

type XpendingKey

type XpendingKey Completed

func (XpendingKey) Group

func (c XpendingKey) Group(group string) XpendingGroup

type Xrange

type Xrange Completed

func (Xrange) Key

func (c Xrange) Key(key string) XrangeKey

type XrangeCount

type XrangeCount Completed

func (XrangeCount) Build

func (c XrangeCount) Build() Completed

type XrangeEnd

type XrangeEnd Completed

func (XrangeEnd) Build

func (c XrangeEnd) Build() Completed

func (XrangeEnd) Count

func (c XrangeEnd) Count(count int64) XrangeCount

type XrangeKey

type XrangeKey Completed

func (XrangeKey) Start

func (c XrangeKey) Start(start string) XrangeStart

type XrangeStart

type XrangeStart Completed

func (XrangeStart) End

func (c XrangeStart) End(end string) XrangeEnd

type Xread

type Xread Completed

func (Xread) Block

func (c Xread) Block(milliseconds int64) XreadBlock

func (Xread) Count

func (c Xread) Count(count int64) XreadCount

func (Xread) Streams

func (c Xread) Streams() XreadStreams

type XreadBlock

type XreadBlock Completed

func (XreadBlock) Streams

func (c XreadBlock) Streams() XreadStreams

type XreadCount

type XreadCount Completed

func (XreadCount) Block

func (c XreadCount) Block(milliseconds int64) XreadBlock

func (XreadCount) Streams

func (c XreadCount) Streams() XreadStreams

type XreadId

type XreadId Completed

func (XreadId) Build

func (c XreadId) Build() Completed

func (XreadId) Id

func (c XreadId) Id(id ...string) XreadId

type XreadKey

type XreadKey Completed

func (XreadKey) Id

func (c XreadKey) Id(id ...string) XreadId

func (XreadKey) Key

func (c XreadKey) Key(key ...string) XreadKey

type XreadStreams added in v0.0.2

type XreadStreams Completed

func (XreadStreams) Key added in v0.0.2

func (c XreadStreams) Key(key ...string) XreadKey

type Xreadgroup

type Xreadgroup Completed

func (Xreadgroup) Group

func (c Xreadgroup) Group(group string, consumer string) XreadgroupGroup

type XreadgroupBlock

type XreadgroupBlock Completed

func (XreadgroupBlock) Noack

func (c XreadgroupBlock) Noack() XreadgroupNoack

func (XreadgroupBlock) Streams

func (c XreadgroupBlock) Streams() XreadgroupStreams

type XreadgroupCount

type XreadgroupCount Completed

func (XreadgroupCount) Block

func (c XreadgroupCount) Block(milliseconds int64) XreadgroupBlock

func (XreadgroupCount) Noack

func (c XreadgroupCount) Noack() XreadgroupNoack

func (XreadgroupCount) Streams

func (c XreadgroupCount) Streams() XreadgroupStreams

type XreadgroupGroup

type XreadgroupGroup Completed

func (XreadgroupGroup) Block

func (c XreadgroupGroup) Block(milliseconds int64) XreadgroupBlock

func (XreadgroupGroup) Count

func (c XreadgroupGroup) Count(count int64) XreadgroupCount

func (XreadgroupGroup) Noack

func (c XreadgroupGroup) Noack() XreadgroupNoack

func (XreadgroupGroup) Streams

func (c XreadgroupGroup) Streams() XreadgroupStreams

type XreadgroupId

type XreadgroupId Completed

func (XreadgroupId) Build

func (c XreadgroupId) Build() Completed

func (XreadgroupId) Id

func (c XreadgroupId) Id(id ...string) XreadgroupId

type XreadgroupKey

type XreadgroupKey Completed

func (XreadgroupKey) Id

func (c XreadgroupKey) Id(id ...string) XreadgroupId

func (XreadgroupKey) Key

func (c XreadgroupKey) Key(key ...string) XreadgroupKey

type XreadgroupNoack added in v0.0.2

type XreadgroupNoack Completed

func (XreadgroupNoack) Streams added in v0.0.2

func (c XreadgroupNoack) Streams() XreadgroupStreams

type XreadgroupStreams added in v0.0.2

type XreadgroupStreams Completed

func (XreadgroupStreams) Key added in v0.0.2

func (c XreadgroupStreams) Key(key ...string) XreadgroupKey

type Xrevrange

type Xrevrange Completed

func (Xrevrange) Key

func (c Xrevrange) Key(key string) XrevrangeKey

type XrevrangeCount

type XrevrangeCount Completed

func (XrevrangeCount) Build

func (c XrevrangeCount) Build() Completed

type XrevrangeEnd

type XrevrangeEnd Completed

func (XrevrangeEnd) Start

func (c XrevrangeEnd) Start(start string) XrevrangeStart

type XrevrangeKey

type XrevrangeKey Completed

func (XrevrangeKey) End

func (c XrevrangeKey) End(end string) XrevrangeEnd

type XrevrangeStart

type XrevrangeStart Completed

func (XrevrangeStart) Build

func (c XrevrangeStart) Build() Completed

func (XrevrangeStart) Count

func (c XrevrangeStart) Count(count int64) XrevrangeCount

type Xsetid added in v0.0.38

type Xsetid Completed

func (Xsetid) Key added in v0.0.38

func (c Xsetid) Key(key string) XsetidKey

type XsetidEntriesadded added in v0.0.38

type XsetidEntriesadded Completed

func (XsetidEntriesadded) Build added in v0.0.38

func (c XsetidEntriesadded) Build() Completed

func (XsetidEntriesadded) Maxdeletedid added in v0.0.38

func (c XsetidEntriesadded) Maxdeletedid(maxDeletedEntryId string) XsetidMaxdeletedid

type XsetidKey added in v0.0.38

type XsetidKey Completed

func (XsetidKey) LastId added in v0.0.38

func (c XsetidKey) LastId(lastId string) XsetidLastId

type XsetidLastId added in v0.0.38

type XsetidLastId Completed

func (XsetidLastId) Build added in v0.0.38

func (c XsetidLastId) Build() Completed

func (XsetidLastId) Entriesadded added in v0.0.38

func (c XsetidLastId) Entriesadded(entriesAdded int64) XsetidEntriesadded

func (XsetidLastId) Maxdeletedid added in v0.0.38

func (c XsetidLastId) Maxdeletedid(maxDeletedEntryId string) XsetidMaxdeletedid

type XsetidMaxdeletedid added in v0.0.38

type XsetidMaxdeletedid Completed

func (XsetidMaxdeletedid) Build added in v0.0.38

func (c XsetidMaxdeletedid) Build() Completed

type Xtrim

type Xtrim Completed

func (Xtrim) Key

func (c Xtrim) Key(key string) XtrimKey

type XtrimKey

type XtrimKey Completed

func (XtrimKey) Maxlen

func (c XtrimKey) Maxlen() XtrimTrimStrategyMaxlen

func (XtrimKey) Minid

func (c XtrimKey) Minid() XtrimTrimStrategyMinid

type XtrimTrimLimit

type XtrimTrimLimit Completed

func (XtrimTrimLimit) Build

func (c XtrimTrimLimit) Build() Completed

type XtrimTrimOperatorAlmost

type XtrimTrimOperatorAlmost Completed

func (XtrimTrimOperatorAlmost) Threshold

func (c XtrimTrimOperatorAlmost) Threshold(threshold string) XtrimTrimThreshold

type XtrimTrimOperatorExact

type XtrimTrimOperatorExact Completed

func (XtrimTrimOperatorExact) Threshold

func (c XtrimTrimOperatorExact) Threshold(threshold string) XtrimTrimThreshold

type XtrimTrimStrategyMaxlen

type XtrimTrimStrategyMaxlen Completed

func (XtrimTrimStrategyMaxlen) Almost

func (XtrimTrimStrategyMaxlen) Exact

func (XtrimTrimStrategyMaxlen) Threshold

func (c XtrimTrimStrategyMaxlen) Threshold(threshold string) XtrimTrimThreshold

type XtrimTrimStrategyMinid

type XtrimTrimStrategyMinid Completed

func (XtrimTrimStrategyMinid) Almost

func (XtrimTrimStrategyMinid) Exact

func (XtrimTrimStrategyMinid) Threshold

func (c XtrimTrimStrategyMinid) Threshold(threshold string) XtrimTrimThreshold

type XtrimTrimThreshold

type XtrimTrimThreshold Completed

func (XtrimTrimThreshold) Build

func (c XtrimTrimThreshold) Build() Completed

func (XtrimTrimThreshold) Limit

func (c XtrimTrimThreshold) Limit(count int64) XtrimTrimLimit

type Zadd

type Zadd Completed

func (Zadd) Key

func (c Zadd) Key(key string) ZaddKey

type ZaddChangeCh

type ZaddChangeCh Completed

func (ZaddChangeCh) Incr

func (ZaddChangeCh) ScoreMember

func (c ZaddChangeCh) ScoreMember() ZaddScoreMember

type ZaddComparisonGt

type ZaddComparisonGt Completed

func (ZaddComparisonGt) Ch

func (ZaddComparisonGt) Incr

func (ZaddComparisonGt) ScoreMember

func (c ZaddComparisonGt) ScoreMember() ZaddScoreMember

type ZaddComparisonLt

type ZaddComparisonLt Completed

func (ZaddComparisonLt) Ch

func (ZaddComparisonLt) Incr

func (ZaddComparisonLt) ScoreMember

func (c ZaddComparisonLt) ScoreMember() ZaddScoreMember

type ZaddConditionNx

type ZaddConditionNx Completed

func (ZaddConditionNx) Ch

func (ZaddConditionNx) Gt

func (ZaddConditionNx) Incr

func (ZaddConditionNx) Lt

func (ZaddConditionNx) ScoreMember

func (c ZaddConditionNx) ScoreMember() ZaddScoreMember

type ZaddConditionXx

type ZaddConditionXx Completed

func (ZaddConditionXx) Ch

func (ZaddConditionXx) Gt

func (ZaddConditionXx) Incr

func (ZaddConditionXx) Lt

func (ZaddConditionXx) ScoreMember

func (c ZaddConditionXx) ScoreMember() ZaddScoreMember

type ZaddIncrementIncr

type ZaddIncrementIncr Completed

func (ZaddIncrementIncr) ScoreMember

func (c ZaddIncrementIncr) ScoreMember() ZaddScoreMember

type ZaddKey

type ZaddKey Completed

func (ZaddKey) Ch

func (c ZaddKey) Ch() ZaddChangeCh

func (ZaddKey) Gt

func (c ZaddKey) Gt() ZaddComparisonGt

func (ZaddKey) Incr

func (c ZaddKey) Incr() ZaddIncrementIncr

func (ZaddKey) Lt

func (c ZaddKey) Lt() ZaddComparisonLt

func (ZaddKey) Nx

func (c ZaddKey) Nx() ZaddConditionNx

func (ZaddKey) ScoreMember

func (c ZaddKey) ScoreMember() ZaddScoreMember

func (ZaddKey) Xx

func (c ZaddKey) Xx() ZaddConditionXx

type ZaddScoreMember

type ZaddScoreMember Completed

func (ZaddScoreMember) Build

func (c ZaddScoreMember) Build() Completed

func (ZaddScoreMember) ScoreMember

func (c ZaddScoreMember) ScoreMember(score float64, member string) ZaddScoreMember

type Zcard

type Zcard Completed

func (Zcard) Key

func (c Zcard) Key(key string) ZcardKey

type ZcardKey

type ZcardKey Completed

func (ZcardKey) Build

func (c ZcardKey) Build() Completed

func (ZcardKey) Cache

func (c ZcardKey) Cache() Cacheable

type Zcount

type Zcount Completed

func (Zcount) Key

func (c Zcount) Key(key string) ZcountKey

type ZcountKey

type ZcountKey Completed

func (ZcountKey) Min

func (c ZcountKey) Min(min string) ZcountMin

type ZcountMax

type ZcountMax Completed

func (ZcountMax) Build

func (c ZcountMax) Build() Completed

func (ZcountMax) Cache

func (c ZcountMax) Cache() Cacheable

type ZcountMin

type ZcountMin Completed

func (ZcountMin) Max

func (c ZcountMin) Max(max string) ZcountMax

type Zdiff

type Zdiff Completed

func (Zdiff) Numkeys

func (c Zdiff) Numkeys(numkeys int64) ZdiffNumkeys

type ZdiffKey

type ZdiffKey Completed

func (ZdiffKey) Build

func (c ZdiffKey) Build() Completed

func (ZdiffKey) Key

func (c ZdiffKey) Key(key ...string) ZdiffKey

func (ZdiffKey) Withscores

func (c ZdiffKey) Withscores() ZdiffWithscores

type ZdiffNumkeys

type ZdiffNumkeys Completed

func (ZdiffNumkeys) Key

func (c ZdiffNumkeys) Key(key ...string) ZdiffKey

type ZdiffWithscores added in v0.0.2

type ZdiffWithscores Completed

func (ZdiffWithscores) Build added in v0.0.2

func (c ZdiffWithscores) Build() Completed

type Zdiffstore

type Zdiffstore Completed

func (Zdiffstore) Destination

func (c Zdiffstore) Destination(destination string) ZdiffstoreDestination

type ZdiffstoreDestination

type ZdiffstoreDestination Completed

func (ZdiffstoreDestination) Numkeys

func (c ZdiffstoreDestination) Numkeys(numkeys int64) ZdiffstoreNumkeys

type ZdiffstoreKey

type ZdiffstoreKey Completed

func (ZdiffstoreKey) Build

func (c ZdiffstoreKey) Build() Completed

func (ZdiffstoreKey) Key

func (c ZdiffstoreKey) Key(key ...string) ZdiffstoreKey

type ZdiffstoreNumkeys

type ZdiffstoreNumkeys Completed

func (ZdiffstoreNumkeys) Key

func (c ZdiffstoreNumkeys) Key(key ...string) ZdiffstoreKey

type Zincrby

type Zincrby Completed

func (Zincrby) Key

func (c Zincrby) Key(key string) ZincrbyKey

type ZincrbyIncrement

type ZincrbyIncrement Completed

func (ZincrbyIncrement) Member

func (c ZincrbyIncrement) Member(member string) ZincrbyMember

type ZincrbyKey

type ZincrbyKey Completed

func (ZincrbyKey) Increment

func (c ZincrbyKey) Increment(increment float64) ZincrbyIncrement

type ZincrbyMember

type ZincrbyMember Completed

func (ZincrbyMember) Build

func (c ZincrbyMember) Build() Completed

type Zinter

type Zinter Completed

func (Zinter) Numkeys

func (c Zinter) Numkeys(numkeys int64) ZinterNumkeys

type ZinterAggregateMax

type ZinterAggregateMax Completed

func (ZinterAggregateMax) Build

func (c ZinterAggregateMax) Build() Completed

func (ZinterAggregateMax) Withscores

func (c ZinterAggregateMax) Withscores() ZinterWithscores

type ZinterAggregateMin

type ZinterAggregateMin Completed

func (ZinterAggregateMin) Build

func (c ZinterAggregateMin) Build() Completed

func (ZinterAggregateMin) Withscores

func (c ZinterAggregateMin) Withscores() ZinterWithscores

type ZinterAggregateSum

type ZinterAggregateSum Completed

func (ZinterAggregateSum) Build

func (c ZinterAggregateSum) Build() Completed

func (ZinterAggregateSum) Withscores

func (c ZinterAggregateSum) Withscores() ZinterWithscores

type ZinterKey

type ZinterKey Completed

func (ZinterKey) AggregateMax added in v0.0.2

func (c ZinterKey) AggregateMax() ZinterAggregateMax

func (ZinterKey) AggregateMin added in v0.0.2

func (c ZinterKey) AggregateMin() ZinterAggregateMin

func (ZinterKey) AggregateSum added in v0.0.2

func (c ZinterKey) AggregateSum() ZinterAggregateSum

func (ZinterKey) Build

func (c ZinterKey) Build() Completed

func (ZinterKey) Key

func (c ZinterKey) Key(key ...string) ZinterKey

func (ZinterKey) Weights

func (c ZinterKey) Weights(weight ...int64) ZinterWeights

func (ZinterKey) Withscores

func (c ZinterKey) Withscores() ZinterWithscores

type ZinterNumkeys

type ZinterNumkeys Completed

func (ZinterNumkeys) Key

func (c ZinterNumkeys) Key(key ...string) ZinterKey

type ZinterWeights

type ZinterWeights Completed

func (ZinterWeights) AggregateMax added in v0.0.2

func (c ZinterWeights) AggregateMax() ZinterAggregateMax

func (ZinterWeights) AggregateMin added in v0.0.2

func (c ZinterWeights) AggregateMin() ZinterAggregateMin

func (ZinterWeights) AggregateSum added in v0.0.2

func (c ZinterWeights) AggregateSum() ZinterAggregateSum

func (ZinterWeights) Build

func (c ZinterWeights) Build() Completed

func (ZinterWeights) Weights

func (c ZinterWeights) Weights(weight ...int64) ZinterWeights

func (ZinterWeights) Withscores

func (c ZinterWeights) Withscores() ZinterWithscores

type ZinterWithscores added in v0.0.2

type ZinterWithscores Completed

func (ZinterWithscores) Build added in v0.0.2

func (c ZinterWithscores) Build() Completed

type Zintercard

type Zintercard Completed

func (Zintercard) Numkeys

func (c Zintercard) Numkeys(numkeys int64) ZintercardNumkeys

type ZintercardKey

type ZintercardKey Completed

func (ZintercardKey) Build

func (c ZintercardKey) Build() Completed

func (ZintercardKey) Key

func (c ZintercardKey) Key(key ...string) ZintercardKey

func (ZintercardKey) Limit added in v0.0.2

func (c ZintercardKey) Limit(limit int64) ZintercardLimit

type ZintercardLimit added in v0.0.2

type ZintercardLimit Completed

func (ZintercardLimit) Build added in v0.0.2

func (c ZintercardLimit) Build() Completed

type ZintercardNumkeys

type ZintercardNumkeys Completed

func (ZintercardNumkeys) Key

func (c ZintercardNumkeys) Key(key ...string) ZintercardKey

type Zinterstore

type Zinterstore Completed

func (Zinterstore) Destination

func (c Zinterstore) Destination(destination string) ZinterstoreDestination

type ZinterstoreAggregateMax

type ZinterstoreAggregateMax Completed

func (ZinterstoreAggregateMax) Build

type ZinterstoreAggregateMin

type ZinterstoreAggregateMin Completed

func (ZinterstoreAggregateMin) Build

type ZinterstoreAggregateSum

type ZinterstoreAggregateSum Completed

func (ZinterstoreAggregateSum) Build

type ZinterstoreDestination

type ZinterstoreDestination Completed

func (ZinterstoreDestination) Numkeys

func (c ZinterstoreDestination) Numkeys(numkeys int64) ZinterstoreNumkeys

type ZinterstoreKey

type ZinterstoreKey Completed

func (ZinterstoreKey) AggregateMax added in v0.0.2

func (c ZinterstoreKey) AggregateMax() ZinterstoreAggregateMax

func (ZinterstoreKey) AggregateMin added in v0.0.2

func (c ZinterstoreKey) AggregateMin() ZinterstoreAggregateMin

func (ZinterstoreKey) AggregateSum added in v0.0.2

func (c ZinterstoreKey) AggregateSum() ZinterstoreAggregateSum

func (ZinterstoreKey) Build

func (c ZinterstoreKey) Build() Completed

func (ZinterstoreKey) Key

func (c ZinterstoreKey) Key(key ...string) ZinterstoreKey

func (ZinterstoreKey) Weights

func (c ZinterstoreKey) Weights(weight ...int64) ZinterstoreWeights

type ZinterstoreNumkeys

type ZinterstoreNumkeys Completed

func (ZinterstoreNumkeys) Key

type ZinterstoreWeights

type ZinterstoreWeights Completed

func (ZinterstoreWeights) AggregateMax added in v0.0.2

func (ZinterstoreWeights) AggregateMin added in v0.0.2

func (ZinterstoreWeights) AggregateSum added in v0.0.2

func (ZinterstoreWeights) Build

func (c ZinterstoreWeights) Build() Completed

func (ZinterstoreWeights) Weights

func (c ZinterstoreWeights) Weights(weight ...int64) ZinterstoreWeights

type Zlexcount

type Zlexcount Completed

func (Zlexcount) Key

func (c Zlexcount) Key(key string) ZlexcountKey

type ZlexcountKey

type ZlexcountKey Completed

func (ZlexcountKey) Min

func (c ZlexcountKey) Min(min string) ZlexcountMin

type ZlexcountMax

type ZlexcountMax Completed

func (ZlexcountMax) Build

func (c ZlexcountMax) Build() Completed

func (ZlexcountMax) Cache

func (c ZlexcountMax) Cache() Cacheable

type ZlexcountMin

type ZlexcountMin Completed

func (ZlexcountMin) Max

func (c ZlexcountMin) Max(max string) ZlexcountMax

type Zmpop added in v0.0.2

type Zmpop Completed

func (Zmpop) Numkeys added in v0.0.2

func (c Zmpop) Numkeys(numkeys int64) ZmpopNumkeys

type ZmpopCount added in v0.0.2

type ZmpopCount Completed

func (ZmpopCount) Build added in v0.0.2

func (c ZmpopCount) Build() Completed

type ZmpopKey added in v0.0.2

type ZmpopKey Completed

func (ZmpopKey) Key added in v0.0.2

func (c ZmpopKey) Key(key ...string) ZmpopKey

func (ZmpopKey) Max added in v0.0.2

func (c ZmpopKey) Max() ZmpopWhereMax

func (ZmpopKey) Min added in v0.0.2

func (c ZmpopKey) Min() ZmpopWhereMin

type ZmpopNumkeys added in v0.0.2

type ZmpopNumkeys Completed

func (ZmpopNumkeys) Key added in v0.0.2

func (c ZmpopNumkeys) Key(key ...string) ZmpopKey

type ZmpopWhereMax added in v0.0.2

type ZmpopWhereMax Completed

func (ZmpopWhereMax) Build added in v0.0.2

func (c ZmpopWhereMax) Build() Completed

func (ZmpopWhereMax) Count added in v0.0.2

func (c ZmpopWhereMax) Count(count int64) ZmpopCount

type ZmpopWhereMin added in v0.0.2

type ZmpopWhereMin Completed

func (ZmpopWhereMin) Build added in v0.0.2

func (c ZmpopWhereMin) Build() Completed

func (ZmpopWhereMin) Count added in v0.0.2

func (c ZmpopWhereMin) Count(count int64) ZmpopCount

type Zmscore

type Zmscore Completed

func (Zmscore) Key

func (c Zmscore) Key(key string) ZmscoreKey

type ZmscoreKey

type ZmscoreKey Completed

func (ZmscoreKey) Member

func (c ZmscoreKey) Member(member ...string) ZmscoreMember

type ZmscoreMember

type ZmscoreMember Completed

func (ZmscoreMember) Build

func (c ZmscoreMember) Build() Completed

func (ZmscoreMember) Cache

func (c ZmscoreMember) Cache() Cacheable

func (ZmscoreMember) Member

func (c ZmscoreMember) Member(member ...string) ZmscoreMember

type Zpopmax

type Zpopmax Completed

func (Zpopmax) Key

func (c Zpopmax) Key(key string) ZpopmaxKey

type ZpopmaxCount

type ZpopmaxCount Completed

func (ZpopmaxCount) Build

func (c ZpopmaxCount) Build() Completed

type ZpopmaxKey

type ZpopmaxKey Completed

func (ZpopmaxKey) Build

func (c ZpopmaxKey) Build() Completed

func (ZpopmaxKey) Count

func (c ZpopmaxKey) Count(count int64) ZpopmaxCount

type Zpopmin

type Zpopmin Completed

func (Zpopmin) Key

func (c Zpopmin) Key(key string) ZpopminKey

type ZpopminCount

type ZpopminCount Completed

func (ZpopminCount) Build

func (c ZpopminCount) Build() Completed

type ZpopminKey

type ZpopminKey Completed

func (ZpopminKey) Build

func (c ZpopminKey) Build() Completed

func (ZpopminKey) Count

func (c ZpopminKey) Count(count int64) ZpopminCount

type Zrandmember

type Zrandmember Completed

func (Zrandmember) Key

func (c Zrandmember) Key(key string) ZrandmemberKey

type ZrandmemberKey

type ZrandmemberKey Completed

func (ZrandmemberKey) Build

func (c ZrandmemberKey) Build() Completed

func (ZrandmemberKey) Count

type ZrandmemberOptionsCount

type ZrandmemberOptionsCount Completed

func (ZrandmemberOptionsCount) Build

func (ZrandmemberOptionsCount) Withscores

type ZrandmemberOptionsWithscores added in v0.0.2

type ZrandmemberOptionsWithscores Completed

func (ZrandmemberOptionsWithscores) Build added in v0.0.2

type Zrange

type Zrange Completed

func (Zrange) Key

func (c Zrange) Key(key string) ZrangeKey

type ZrangeKey

type ZrangeKey Completed

func (ZrangeKey) Min

func (c ZrangeKey) Min(min string) ZrangeMin

type ZrangeLimit

type ZrangeLimit Completed

func (ZrangeLimit) Build

func (c ZrangeLimit) Build() Completed

func (ZrangeLimit) Cache

func (c ZrangeLimit) Cache() Cacheable

func (ZrangeLimit) Withscores

func (c ZrangeLimit) Withscores() ZrangeWithscores

type ZrangeMax

type ZrangeMax Completed

func (ZrangeMax) Build

func (c ZrangeMax) Build() Completed

func (ZrangeMax) Bylex

func (c ZrangeMax) Bylex() ZrangeSortbyBylex

func (ZrangeMax) Byscore

func (c ZrangeMax) Byscore() ZrangeSortbyByscore

func (ZrangeMax) Cache

func (c ZrangeMax) Cache() Cacheable

func (ZrangeMax) Limit

func (c ZrangeMax) Limit(offset int64, count int64) ZrangeLimit

func (ZrangeMax) Rev

func (c ZrangeMax) Rev() ZrangeRev

func (ZrangeMax) Withscores

func (c ZrangeMax) Withscores() ZrangeWithscores

type ZrangeMin

type ZrangeMin Completed

func (ZrangeMin) Max

func (c ZrangeMin) Max(max string) ZrangeMax

type ZrangeRev added in v0.0.2

type ZrangeRev Completed

func (ZrangeRev) Build added in v0.0.2

func (c ZrangeRev) Build() Completed

func (ZrangeRev) Cache added in v0.0.2

func (c ZrangeRev) Cache() Cacheable

func (ZrangeRev) Limit added in v0.0.2

func (c ZrangeRev) Limit(offset int64, count int64) ZrangeLimit

func (ZrangeRev) Withscores added in v0.0.2

func (c ZrangeRev) Withscores() ZrangeWithscores

type ZrangeSortbyBylex

type ZrangeSortbyBylex Completed

func (ZrangeSortbyBylex) Build

func (c ZrangeSortbyBylex) Build() Completed

func (ZrangeSortbyBylex) Cache

func (c ZrangeSortbyBylex) Cache() Cacheable

func (ZrangeSortbyBylex) Limit

func (c ZrangeSortbyBylex) Limit(offset int64, count int64) ZrangeLimit

func (ZrangeSortbyBylex) Rev

func (c ZrangeSortbyBylex) Rev() ZrangeRev

func (ZrangeSortbyBylex) Withscores

func (c ZrangeSortbyBylex) Withscores() ZrangeWithscores

type ZrangeSortbyByscore

type ZrangeSortbyByscore Completed

func (ZrangeSortbyByscore) Build

func (c ZrangeSortbyByscore) Build() Completed

func (ZrangeSortbyByscore) Cache

func (c ZrangeSortbyByscore) Cache() Cacheable

func (ZrangeSortbyByscore) Limit

func (c ZrangeSortbyByscore) Limit(offset int64, count int64) ZrangeLimit

func (ZrangeSortbyByscore) Rev

func (ZrangeSortbyByscore) Withscores

func (c ZrangeSortbyByscore) Withscores() ZrangeWithscores

type ZrangeWithscores added in v0.0.2

type ZrangeWithscores Completed

func (ZrangeWithscores) Build added in v0.0.2

func (c ZrangeWithscores) Build() Completed

func (ZrangeWithscores) Cache added in v0.0.2

func (c ZrangeWithscores) Cache() Cacheable

type Zrangebylex

type Zrangebylex Completed

func (Zrangebylex) Key

func (c Zrangebylex) Key(key string) ZrangebylexKey

type ZrangebylexKey

type ZrangebylexKey Completed

func (ZrangebylexKey) Min

type ZrangebylexLimit

type ZrangebylexLimit Completed

func (ZrangebylexLimit) Build

func (c ZrangebylexLimit) Build() Completed

func (ZrangebylexLimit) Cache

func (c ZrangebylexLimit) Cache() Cacheable

type ZrangebylexMax

type ZrangebylexMax Completed

func (ZrangebylexMax) Build

func (c ZrangebylexMax) Build() Completed

func (ZrangebylexMax) Cache

func (c ZrangebylexMax) Cache() Cacheable

func (ZrangebylexMax) Limit

func (c ZrangebylexMax) Limit(offset int64, count int64) ZrangebylexLimit

type ZrangebylexMin

type ZrangebylexMin Completed

func (ZrangebylexMin) Max

type Zrangebyscore

type Zrangebyscore Completed

func (Zrangebyscore) Key

type ZrangebyscoreKey

type ZrangebyscoreKey Completed

func (ZrangebyscoreKey) Min

type ZrangebyscoreLimit

type ZrangebyscoreLimit Completed

func (ZrangebyscoreLimit) Build

func (c ZrangebyscoreLimit) Build() Completed

func (ZrangebyscoreLimit) Cache

func (c ZrangebyscoreLimit) Cache() Cacheable

type ZrangebyscoreMax

type ZrangebyscoreMax Completed

func (ZrangebyscoreMax) Build

func (c ZrangebyscoreMax) Build() Completed

func (ZrangebyscoreMax) Cache

func (c ZrangebyscoreMax) Cache() Cacheable

func (ZrangebyscoreMax) Limit

func (c ZrangebyscoreMax) Limit(offset int64, count int64) ZrangebyscoreLimit

func (ZrangebyscoreMax) Withscores

type ZrangebyscoreMin

type ZrangebyscoreMin Completed

func (ZrangebyscoreMin) Max

type ZrangebyscoreWithscores added in v0.0.2

type ZrangebyscoreWithscores Completed

func (ZrangebyscoreWithscores) Build added in v0.0.2

func (ZrangebyscoreWithscores) Cache added in v0.0.2

func (ZrangebyscoreWithscores) Limit added in v0.0.2

func (c ZrangebyscoreWithscores) Limit(offset int64, count int64) ZrangebyscoreLimit

type Zrangestore

type Zrangestore Completed

func (Zrangestore) Dst

func (c Zrangestore) Dst(dst string) ZrangestoreDst

type ZrangestoreDst

type ZrangestoreDst Completed

func (ZrangestoreDst) Src

type ZrangestoreLimit

type ZrangestoreLimit Completed

func (ZrangestoreLimit) Build

func (c ZrangestoreLimit) Build() Completed

type ZrangestoreMax

type ZrangestoreMax Completed

func (ZrangestoreMax) Build

func (c ZrangestoreMax) Build() Completed

func (ZrangestoreMax) Bylex

func (ZrangestoreMax) Byscore

func (ZrangestoreMax) Limit

func (c ZrangestoreMax) Limit(offset int64, count int64) ZrangestoreLimit

func (ZrangestoreMax) Rev

type ZrangestoreMin

type ZrangestoreMin Completed

func (ZrangestoreMin) Max

type ZrangestoreRev added in v0.0.2

type ZrangestoreRev Completed

func (ZrangestoreRev) Build added in v0.0.2

func (c ZrangestoreRev) Build() Completed

func (ZrangestoreRev) Limit added in v0.0.2

func (c ZrangestoreRev) Limit(offset int64, count int64) ZrangestoreLimit

type ZrangestoreSortbyBylex

type ZrangestoreSortbyBylex Completed

func (ZrangestoreSortbyBylex) Build

func (ZrangestoreSortbyBylex) Limit

func (c ZrangestoreSortbyBylex) Limit(offset int64, count int64) ZrangestoreLimit

func (ZrangestoreSortbyBylex) Rev

type ZrangestoreSortbyByscore

type ZrangestoreSortbyByscore Completed

func (ZrangestoreSortbyByscore) Build

func (ZrangestoreSortbyByscore) Limit

func (c ZrangestoreSortbyByscore) Limit(offset int64, count int64) ZrangestoreLimit

func (ZrangestoreSortbyByscore) Rev

type ZrangestoreSrc

type ZrangestoreSrc Completed

func (ZrangestoreSrc) Min

type Zrank

type Zrank Completed

func (Zrank) Key

func (c Zrank) Key(key string) ZrankKey

type ZrankKey

type ZrankKey Completed

func (ZrankKey) Member

func (c ZrankKey) Member(member string) ZrankMember

type ZrankMember

type ZrankMember Completed

func (ZrankMember) Build

func (c ZrankMember) Build() Completed

func (ZrankMember) Cache

func (c ZrankMember) Cache() Cacheable

func (ZrankMember) Withscore added in v0.0.95

func (c ZrankMember) Withscore() ZrankWithscore

type ZrankWithscore added in v0.0.95

type ZrankWithscore Completed

func (ZrankWithscore) Build added in v0.0.95

func (c ZrankWithscore) Build() Completed

func (ZrankWithscore) Cache added in v0.0.95

func (c ZrankWithscore) Cache() Cacheable

type Zrem

type Zrem Completed

func (Zrem) Key

func (c Zrem) Key(key string) ZremKey

type ZremKey

type ZremKey Completed

func (ZremKey) Member

func (c ZremKey) Member(member ...string) ZremMember

type ZremMember

type ZremMember Completed

func (ZremMember) Build

func (c ZremMember) Build() Completed

func (ZremMember) Member

func (c ZremMember) Member(member ...string) ZremMember

type Zremrangebylex

type Zremrangebylex Completed

func (Zremrangebylex) Key

type ZremrangebylexKey

type ZremrangebylexKey Completed

func (ZremrangebylexKey) Min

type ZremrangebylexMax

type ZremrangebylexMax Completed

func (ZremrangebylexMax) Build

func (c ZremrangebylexMax) Build() Completed

type ZremrangebylexMin

type ZremrangebylexMin Completed

func (ZremrangebylexMin) Max

type Zremrangebyrank

type Zremrangebyrank Completed

func (Zremrangebyrank) Key

type ZremrangebyrankKey

type ZremrangebyrankKey Completed

func (ZremrangebyrankKey) Start

type ZremrangebyrankStart

type ZremrangebyrankStart Completed

func (ZremrangebyrankStart) Stop

type ZremrangebyrankStop

type ZremrangebyrankStop Completed

func (ZremrangebyrankStop) Build

func (c ZremrangebyrankStop) Build() Completed

type Zremrangebyscore

type Zremrangebyscore Completed

func (Zremrangebyscore) Key

type ZremrangebyscoreKey

type ZremrangebyscoreKey Completed

func (ZremrangebyscoreKey) Min

type ZremrangebyscoreMax

type ZremrangebyscoreMax Completed

func (ZremrangebyscoreMax) Build

func (c ZremrangebyscoreMax) Build() Completed

type ZremrangebyscoreMin

type ZremrangebyscoreMin Completed

func (ZremrangebyscoreMin) Max

type Zrevrange

type Zrevrange Completed

func (Zrevrange) Key

func (c Zrevrange) Key(key string) ZrevrangeKey

type ZrevrangeKey

type ZrevrangeKey Completed

func (ZrevrangeKey) Start

func (c ZrevrangeKey) Start(start int64) ZrevrangeStart

type ZrevrangeStart

type ZrevrangeStart Completed

func (ZrevrangeStart) Stop

func (c ZrevrangeStart) Stop(stop int64) ZrevrangeStop

type ZrevrangeStop

type ZrevrangeStop Completed

func (ZrevrangeStop) Build

func (c ZrevrangeStop) Build() Completed

func (ZrevrangeStop) Cache

func (c ZrevrangeStop) Cache() Cacheable

func (ZrevrangeStop) Withscores

func (c ZrevrangeStop) Withscores() ZrevrangeWithscores

type ZrevrangeWithscores added in v0.0.2

type ZrevrangeWithscores Completed

func (ZrevrangeWithscores) Build added in v0.0.2

func (c ZrevrangeWithscores) Build() Completed

func (ZrevrangeWithscores) Cache added in v0.0.2

func (c ZrevrangeWithscores) Cache() Cacheable

type Zrevrangebylex

type Zrevrangebylex Completed

func (Zrevrangebylex) Key

type ZrevrangebylexKey

type ZrevrangebylexKey Completed

func (ZrevrangebylexKey) Max

type ZrevrangebylexLimit

type ZrevrangebylexLimit Completed

func (ZrevrangebylexLimit) Build

func (c ZrevrangebylexLimit) Build() Completed

func (ZrevrangebylexLimit) Cache

func (c ZrevrangebylexLimit) Cache() Cacheable

type ZrevrangebylexMax

type ZrevrangebylexMax Completed

func (ZrevrangebylexMax) Min

type ZrevrangebylexMin

type ZrevrangebylexMin Completed

func (ZrevrangebylexMin) Build

func (c ZrevrangebylexMin) Build() Completed

func (ZrevrangebylexMin) Cache

func (c ZrevrangebylexMin) Cache() Cacheable

func (ZrevrangebylexMin) Limit

func (c ZrevrangebylexMin) Limit(offset int64, count int64) ZrevrangebylexLimit

type Zrevrangebyscore

type Zrevrangebyscore Completed

func (Zrevrangebyscore) Key

type ZrevrangebyscoreKey

type ZrevrangebyscoreKey Completed

func (ZrevrangebyscoreKey) Max

type ZrevrangebyscoreLimit

type ZrevrangebyscoreLimit Completed

func (ZrevrangebyscoreLimit) Build

func (c ZrevrangebyscoreLimit) Build() Completed

func (ZrevrangebyscoreLimit) Cache

func (c ZrevrangebyscoreLimit) Cache() Cacheable

type ZrevrangebyscoreMax

type ZrevrangebyscoreMax Completed

func (ZrevrangebyscoreMax) Min

type ZrevrangebyscoreMin

type ZrevrangebyscoreMin Completed

func (ZrevrangebyscoreMin) Build

func (c ZrevrangebyscoreMin) Build() Completed

func (ZrevrangebyscoreMin) Cache

func (c ZrevrangebyscoreMin) Cache() Cacheable

func (ZrevrangebyscoreMin) Limit

func (c ZrevrangebyscoreMin) Limit(offset int64, count int64) ZrevrangebyscoreLimit

func (ZrevrangebyscoreMin) Withscores

type ZrevrangebyscoreWithscores added in v0.0.2

type ZrevrangebyscoreWithscores Completed

func (ZrevrangebyscoreWithscores) Build added in v0.0.2

func (ZrevrangebyscoreWithscores) Cache added in v0.0.2

func (ZrevrangebyscoreWithscores) Limit added in v0.0.2

type Zrevrank

type Zrevrank Completed

func (Zrevrank) Key

func (c Zrevrank) Key(key string) ZrevrankKey

type ZrevrankKey

type ZrevrankKey Completed

func (ZrevrankKey) Member

func (c ZrevrankKey) Member(member string) ZrevrankMember

type ZrevrankMember

type ZrevrankMember Completed

func (ZrevrankMember) Build

func (c ZrevrankMember) Build() Completed

func (ZrevrankMember) Cache

func (c ZrevrankMember) Cache() Cacheable

func (ZrevrankMember) Withscore added in v0.0.95

func (c ZrevrankMember) Withscore() ZrevrankWithscore

type ZrevrankWithscore added in v0.0.95

type ZrevrankWithscore Completed

func (ZrevrankWithscore) Build added in v0.0.95

func (c ZrevrankWithscore) Build() Completed

func (ZrevrankWithscore) Cache added in v0.0.95

func (c ZrevrankWithscore) Cache() Cacheable

type Zscan

type Zscan Completed

func (Zscan) Key

func (c Zscan) Key(key string) ZscanKey

type ZscanCount

type ZscanCount Completed

func (ZscanCount) Build

func (c ZscanCount) Build() Completed

type ZscanCursor

type ZscanCursor Completed

func (ZscanCursor) Build

func (c ZscanCursor) Build() Completed

func (ZscanCursor) Count

func (c ZscanCursor) Count(count int64) ZscanCount

func (ZscanCursor) Match

func (c ZscanCursor) Match(pattern string) ZscanMatch

type ZscanKey

type ZscanKey Completed

func (ZscanKey) Cursor

func (c ZscanKey) Cursor(cursor uint64) ZscanCursor

type ZscanMatch

type ZscanMatch Completed

func (ZscanMatch) Build

func (c ZscanMatch) Build() Completed

func (ZscanMatch) Count

func (c ZscanMatch) Count(count int64) ZscanCount

type Zscore

type Zscore Completed

func (Zscore) Key

func (c Zscore) Key(key string) ZscoreKey

type ZscoreKey

type ZscoreKey Completed

func (ZscoreKey) Member

func (c ZscoreKey) Member(member string) ZscoreMember

type ZscoreMember

type ZscoreMember Completed

func (ZscoreMember) Build

func (c ZscoreMember) Build() Completed

func (ZscoreMember) Cache

func (c ZscoreMember) Cache() Cacheable

type Zunion

type Zunion Completed

func (Zunion) Numkeys

func (c Zunion) Numkeys(numkeys int64) ZunionNumkeys

type ZunionAggregateMax

type ZunionAggregateMax Completed

func (ZunionAggregateMax) Build

func (c ZunionAggregateMax) Build() Completed

func (ZunionAggregateMax) Withscores

func (c ZunionAggregateMax) Withscores() ZunionWithscores

type ZunionAggregateMin

type ZunionAggregateMin Completed

func (ZunionAggregateMin) Build

func (c ZunionAggregateMin) Build() Completed

func (ZunionAggregateMin) Withscores

func (c ZunionAggregateMin) Withscores() ZunionWithscores

type ZunionAggregateSum

type ZunionAggregateSum Completed

func (ZunionAggregateSum) Build

func (c ZunionAggregateSum) Build() Completed

func (ZunionAggregateSum) Withscores

func (c ZunionAggregateSum) Withscores() ZunionWithscores

type ZunionKey

type ZunionKey Completed

func (ZunionKey) AggregateMax added in v0.0.2

func (c ZunionKey) AggregateMax() ZunionAggregateMax

func (ZunionKey) AggregateMin added in v0.0.2

func (c ZunionKey) AggregateMin() ZunionAggregateMin

func (ZunionKey) AggregateSum added in v0.0.2

func (c ZunionKey) AggregateSum() ZunionAggregateSum

func (ZunionKey) Build

func (c ZunionKey) Build() Completed

func (ZunionKey) Key

func (c ZunionKey) Key(key ...string) ZunionKey

func (ZunionKey) Weights

func (c ZunionKey) Weights(weight ...int64) ZunionWeights

func (ZunionKey) Withscores

func (c ZunionKey) Withscores() ZunionWithscores

type ZunionNumkeys

type ZunionNumkeys Completed

func (ZunionNumkeys) Key

func (c ZunionNumkeys) Key(key ...string) ZunionKey

type ZunionWeights

type ZunionWeights Completed

func (ZunionWeights) AggregateMax added in v0.0.2

func (c ZunionWeights) AggregateMax() ZunionAggregateMax

func (ZunionWeights) AggregateMin added in v0.0.2

func (c ZunionWeights) AggregateMin() ZunionAggregateMin

func (ZunionWeights) AggregateSum added in v0.0.2

func (c ZunionWeights) AggregateSum() ZunionAggregateSum

func (ZunionWeights) Build

func (c ZunionWeights) Build() Completed

func (ZunionWeights) Weights

func (c ZunionWeights) Weights(weight ...int64) ZunionWeights

func (ZunionWeights) Withscores

func (c ZunionWeights) Withscores() ZunionWithscores

type ZunionWithscores added in v0.0.2

type ZunionWithscores Completed

func (ZunionWithscores) Build added in v0.0.2

func (c ZunionWithscores) Build() Completed

type Zunionstore

type Zunionstore Completed

func (Zunionstore) Destination

func (c Zunionstore) Destination(destination string) ZunionstoreDestination

type ZunionstoreAggregateMax

type ZunionstoreAggregateMax Completed

func (ZunionstoreAggregateMax) Build

type ZunionstoreAggregateMin

type ZunionstoreAggregateMin Completed

func (ZunionstoreAggregateMin) Build

type ZunionstoreAggregateSum

type ZunionstoreAggregateSum Completed

func (ZunionstoreAggregateSum) Build

type ZunionstoreDestination

type ZunionstoreDestination Completed

func (ZunionstoreDestination) Numkeys

func (c ZunionstoreDestination) Numkeys(numkeys int64) ZunionstoreNumkeys

type ZunionstoreKey

type ZunionstoreKey Completed

func (ZunionstoreKey) AggregateMax added in v0.0.2

func (c ZunionstoreKey) AggregateMax() ZunionstoreAggregateMax

func (ZunionstoreKey) AggregateMin added in v0.0.2

func (c ZunionstoreKey) AggregateMin() ZunionstoreAggregateMin

func (ZunionstoreKey) AggregateSum added in v0.0.2

func (c ZunionstoreKey) AggregateSum() ZunionstoreAggregateSum

func (ZunionstoreKey) Build

func (c ZunionstoreKey) Build() Completed

func (ZunionstoreKey) Key

func (c ZunionstoreKey) Key(key ...string) ZunionstoreKey

func (ZunionstoreKey) Weights

func (c ZunionstoreKey) Weights(weight ...int64) ZunionstoreWeights

type ZunionstoreNumkeys

type ZunionstoreNumkeys Completed

func (ZunionstoreNumkeys) Key

type ZunionstoreWeights

type ZunionstoreWeights Completed

func (ZunionstoreWeights) AggregateMax added in v0.0.2

func (ZunionstoreWeights) AggregateMin added in v0.0.2

func (ZunionstoreWeights) AggregateSum added in v0.0.2

func (ZunionstoreWeights) Build

func (c ZunionstoreWeights) Build() Completed

func (ZunionstoreWeights) Weights

func (c ZunionstoreWeights) Weights(weight ...int64) ZunionstoreWeights

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL