Click or drag to resize
RedisListsLRem Method (String, Byte, Int32)
移除元素后的一个列表范围

Namespace: Adf
Assembly: Adf (in Adf.dll) Version: 4.1.5549.27750
Syntax
public int LRem(
	string key,
	byte[] value,
	int count
)

Parameters

key
Type: SystemString

[Missing <param name="key"/> documentation for "M:Adf.RedisLists.LRem(System.String,System.Byte[],System.Int32)"]

value
Type: SystemByte

[Missing <param name="value"/> documentation for "M:Adf.RedisLists.LRem(System.String,System.Byte[],System.Int32)"]

count
Type: SystemInt32
count < 0: Remove elements equal to value moving from head to tail. count > 0: Remove elements equal to value moving from tail to head. count = 0: Remove all elements equal to value.

Return Value

Type: Int32
Integer reply: the number of removed elements.
See Also