You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10655 lines
653 KiB

  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>StackExchange.Redis</name>
  5. </assembly>
  6. <members>
  7. <member name="M:StackExchange.Redis.BufferReader.TryConsumeCRLF">
  8. <summary>
  9. Note that in results other than success, no guarantees are made about final state; if you care: snapshot
  10. </summary>
  11. </member>
  12. <member name="T:StackExchange.Redis.ChannelMessage">
  13. <summary>
  14. Represents a message that is broadcast via pub/sub
  15. </summary>
  16. </member>
  17. <member name="M:StackExchange.Redis.ChannelMessage.ToString">
  18. <summary>
  19. See Object.ToString
  20. </summary>
  21. </member>
  22. <member name="M:StackExchange.Redis.ChannelMessage.GetHashCode">
  23. <summary>
  24. See Object.GetHashCode
  25. </summary>
  26. </member>
  27. <member name="M:StackExchange.Redis.ChannelMessage.Equals(System.Object)">
  28. <summary>
  29. See Object.Equals
  30. </summary>
  31. <param name="obj">The <see cref="T:System.Object"/> to compare.</param>
  32. </member>
  33. <member name="P:StackExchange.Redis.ChannelMessage.SubscriptionChannel">
  34. <summary>
  35. The channel that the subscription was created from
  36. </summary>
  37. </member>
  38. <member name="P:StackExchange.Redis.ChannelMessage.Channel">
  39. <summary>
  40. The channel that the message was broadcast to
  41. </summary>
  42. </member>
  43. <member name="P:StackExchange.Redis.ChannelMessage.Message">
  44. <summary>
  45. The value that was broadcast
  46. </summary>
  47. </member>
  48. <member name="T:StackExchange.Redis.ChannelMessageQueue">
  49. <summary>
  50. Represents a message queue of ordered pub/sub notifications
  51. </summary>
  52. <remarks>To create a ChannelMessageQueue, use ISubscriber.Subscribe[Async](RedisKey)</remarks>
  53. </member>
  54. <member name="P:StackExchange.Redis.ChannelMessageQueue.Channel">
  55. <summary>
  56. The Channel that was subscribed for this queue
  57. </summary>
  58. </member>
  59. <member name="M:StackExchange.Redis.ChannelMessageQueue.ToString">
  60. <summary>
  61. See Object.ToString
  62. </summary>
  63. </member>
  64. <member name="P:StackExchange.Redis.ChannelMessageQueue.Completion">
  65. <summary>
  66. An awaitable task the indicates completion of the queue (including drain of data)
  67. </summary>
  68. </member>
  69. <member name="M:StackExchange.Redis.ChannelMessageQueue.ReadAsync(System.Threading.CancellationToken)">
  70. <summary>
  71. Consume a message from the channel.
  72. </summary>
  73. <param name="cancellationToken">The <see cref="T:System.Threading.CancellationToken"/> to use.</param>
  74. </member>
  75. <member name="M:StackExchange.Redis.ChannelMessageQueue.TryRead(StackExchange.Redis.ChannelMessage@)">
  76. <summary>
  77. Attempt to synchronously consume a message from the channel.
  78. </summary>
  79. <param name="item">The <see cref="T:StackExchange.Redis.ChannelMessage"/> read from the Channel.</param>
  80. </member>
  81. <member name="M:StackExchange.Redis.ChannelMessageQueue.TryGetCount(System.Int32@)">
  82. <summary>
  83. Attempt to query the backlog length of the queue.
  84. </summary>
  85. <param name="count">The (approximate) count of items in the Channel.</param>
  86. </member>
  87. <member name="M:StackExchange.Redis.ChannelMessageQueue.OnMessage(System.Action{StackExchange.Redis.ChannelMessage})">
  88. <summary>
  89. Create a message loop that processes messages sequentially.
  90. </summary>
  91. <param name="handler">The handler to run when receiving a message.</param>
  92. </member>
  93. <member name="M:StackExchange.Redis.ChannelMessageQueue.OnMessage(System.Func{StackExchange.Redis.ChannelMessage,System.Threading.Tasks.Task})">
  94. <summary>
  95. Create a message loop that processes messages sequentially.
  96. </summary>
  97. <param name="handler">The handler to execute when receiving a message.</param>
  98. </member>
  99. <member name="M:StackExchange.Redis.ChannelMessageQueue.Unsubscribe(StackExchange.Redis.CommandFlags)">
  100. <summary>
  101. Stop receiving messages on this channel.
  102. </summary>
  103. <param name="flags">The flags to use when unsubscribing.</param>
  104. </member>
  105. <member name="M:StackExchange.Redis.ChannelMessageQueue.UnsubscribeAsync(StackExchange.Redis.CommandFlags)">
  106. <summary>
  107. Stop receiving messages on this channel.
  108. </summary>
  109. <param name="flags">The flags to use when unsubscribing.</param>
  110. </member>
  111. <member name="T:StackExchange.Redis.ClientInfo">
  112. <summary>
  113. Represents the state of an individual client connection to redis
  114. </summary>
  115. </member>
  116. <member name="P:StackExchange.Redis.ClientInfo.Address">
  117. <summary>
  118. Address (host and port) of the client
  119. </summary>
  120. </member>
  121. <member name="P:StackExchange.Redis.ClientInfo.AgeSeconds">
  122. <summary>
  123. total duration of the connection in seconds
  124. </summary>
  125. </member>
  126. <member name="P:StackExchange.Redis.ClientInfo.Database">
  127. <summary>
  128. current database ID
  129. </summary>
  130. </member>
  131. <member name="P:StackExchange.Redis.ClientInfo.Flags">
  132. <summary>
  133. The flags associated with this connection
  134. </summary>
  135. </member>
  136. <member name="P:StackExchange.Redis.ClientInfo.FlagsRaw">
  137. <summary>
  138. The client flags can be a combination of:
  139. A: connection to be closed ASAP
  140. b: the client is waiting in a blocking operation
  141. c: connection to be closed after writing entire reply
  142. d: a watched keys has been modified - EXEC will fail
  143. i: the client is waiting for a VM I/O (deprecated)
  144. M: the client is a master
  145. N: no specific flag set
  146. O: the client is a replica in MONITOR mode
  147. P: the client is a Pub/Sub subscriber
  148. r: the client is in readonly mode against a cluster node
  149. S: the client is a normal replica server
  150. U: the client is connected via a Unix domain socket
  151. x: the client is in a MULTI/EXEC context
  152. </summary>
  153. </member>
  154. <member name="P:StackExchange.Redis.ClientInfo.Host">
  155. <summary>
  156. The host of the client (typically an IP address)
  157. </summary>
  158. </member>
  159. <member name="P:StackExchange.Redis.ClientInfo.IdleSeconds">
  160. <summary>
  161. idle time of the connection in seconds
  162. </summary>
  163. </member>
  164. <member name="P:StackExchange.Redis.ClientInfo.LastCommand">
  165. <summary>
  166. last command played
  167. </summary>
  168. </member>
  169. <member name="P:StackExchange.Redis.ClientInfo.Name">
  170. <summary>
  171. The name allocated to this connection, if any
  172. </summary>
  173. </member>
  174. <member name="P:StackExchange.Redis.ClientInfo.PatternSubscriptionCount">
  175. <summary>
  176. number of pattern matching subscriptions
  177. </summary>
  178. </member>
  179. <member name="P:StackExchange.Redis.ClientInfo.Port">
  180. <summary>
  181. The port of the client
  182. </summary>
  183. </member>
  184. <member name="P:StackExchange.Redis.ClientInfo.Raw">
  185. <summary>
  186. The raw content from redis
  187. </summary>
  188. </member>
  189. <member name="P:StackExchange.Redis.ClientInfo.SubscriptionCount">
  190. <summary>
  191. number of channel subscriptions
  192. </summary>
  193. </member>
  194. <member name="P:StackExchange.Redis.ClientInfo.TransactionCommandLength">
  195. <summary>
  196. number of commands in a MULTI/EXEC context
  197. </summary>
  198. </member>
  199. <member name="P:StackExchange.Redis.ClientInfo.Id">
  200. <summary>
  201. an unique 64-bit client ID (introduced in Redis 2.8.12).
  202. </summary>
  203. </member>
  204. <member name="M:StackExchange.Redis.ClientInfo.ToString">
  205. <summary>
  206. Format the object as a string
  207. </summary>
  208. </member>
  209. <member name="P:StackExchange.Redis.ClientInfo.ClientType">
  210. <summary>
  211. The class of the connection
  212. </summary>
  213. </member>
  214. <member name="T:StackExchange.Redis.SlotRange">
  215. <summary>
  216. Indicates a range of slots served by a cluster node
  217. </summary>
  218. </member>
  219. <member name="M:StackExchange.Redis.SlotRange.#ctor(System.Int32,System.Int32)">
  220. <summary>
  221. Create a new SlotRange value
  222. </summary>
  223. <param name="from">The slot ID to start at.</param>
  224. <param name="to">The slot ID to end at.</param>
  225. </member>
  226. <member name="P:StackExchange.Redis.SlotRange.From">
  227. <summary>
  228. The start of the range (inclusive)
  229. </summary>
  230. </member>
  231. <member name="P:StackExchange.Redis.SlotRange.To">
  232. <summary>
  233. The end of the range (inclusive)
  234. </summary>
  235. </member>
  236. <member name="M:StackExchange.Redis.SlotRange.op_Inequality(StackExchange.Redis.SlotRange,StackExchange.Redis.SlotRange)">
  237. <summary>
  238. Indicates whether two ranges are not equal
  239. </summary>
  240. <param name="x">The first slot range.</param>
  241. <param name="y">The second slot range.</param>
  242. </member>
  243. <member name="M:StackExchange.Redis.SlotRange.op_Equality(StackExchange.Redis.SlotRange,StackExchange.Redis.SlotRange)">
  244. <summary>
  245. Indicates whether two ranges are equal.
  246. </summary>
  247. <param name="x">The first slot range.</param>
  248. <param name="y">The second slot range.</param>
  249. </member>
  250. <member name="M:StackExchange.Redis.SlotRange.TryParse(System.String,StackExchange.Redis.SlotRange@)">
  251. <summary>
  252. Try to parse a string as a range.
  253. </summary>
  254. <param name="range">The range string to parse, e.g."1-12".</param>
  255. <param name="value">The parsed <see cref="T:StackExchange.Redis.SlotRange"/>, if successful.</param>
  256. </member>
  257. <member name="M:StackExchange.Redis.SlotRange.CompareTo(StackExchange.Redis.SlotRange)">
  258. <summary>
  259. Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
  260. </summary>
  261. <param name="other">The other slot range to compare to.</param>
  262. </member>
  263. <member name="M:StackExchange.Redis.SlotRange.Equals(System.Object)">
  264. <summary>
  265. See Object.Equals
  266. </summary>
  267. <param name="obj">The other slot range to compare to.</param>
  268. </member>
  269. <member name="M:StackExchange.Redis.SlotRange.Equals(StackExchange.Redis.SlotRange)">
  270. <summary>
  271. Indicates whether two ranges are equal
  272. </summary>
  273. <param name="other">The other slot range to compare to.</param>
  274. </member>
  275. <member name="M:StackExchange.Redis.SlotRange.GetHashCode">
  276. <summary>
  277. See Object.GetHashCode()
  278. </summary>
  279. </member>
  280. <member name="M:StackExchange.Redis.SlotRange.ToString">
  281. <summary>
  282. See Object.ToString()
  283. </summary>
  284. </member>
  285. <member name="T:StackExchange.Redis.ClusterConfiguration">
  286. <summary>
  287. Describes the state of the cluster as reported by a single node
  288. </summary>
  289. </member>
  290. <member name="P:StackExchange.Redis.ClusterConfiguration.Nodes">
  291. <summary>
  292. Gets all nodes contained in the configuration
  293. </summary>
  294. <returns></returns>
  295. </member>
  296. <member name="P:StackExchange.Redis.ClusterConfiguration.Origin">
  297. <summary>
  298. The node that was asked for the configuration
  299. </summary>
  300. </member>
  301. <member name="P:StackExchange.Redis.ClusterConfiguration.Item(System.Net.EndPoint)">
  302. <summary>
  303. Obtain the node relating to a specified endpoint
  304. </summary>
  305. <param name="endpoint">The endpoint to get a cluster node from.</param>
  306. </member>
  307. <member name="M:StackExchange.Redis.ClusterConfiguration.GetBySlot(System.Int32)">
  308. <summary>
  309. Gets the node that serves the specified slot.
  310. </summary>
  311. <param name="slot">The slot ID to get a node by.</param>
  312. </member>
  313. <member name="M:StackExchange.Redis.ClusterConfiguration.GetBySlot(StackExchange.Redis.RedisKey)">
  314. <summary>
  315. Gets the node that serves the specified key's slot.
  316. </summary>
  317. <param name="key">The key to identify a node by.</param>
  318. </member>
  319. <member name="T:StackExchange.Redis.ClusterNode">
  320. <summary>
  321. Represents the configuration of a single node in a cluster configuration.
  322. </summary>
  323. </member>
  324. <member name="P:StackExchange.Redis.ClusterNode.Children">
  325. <summary>
  326. Gets all child nodes of the current node
  327. </summary>
  328. </member>
  329. <member name="P:StackExchange.Redis.ClusterNode.EndPoint">
  330. <summary>
  331. Gets the endpoint of the current node
  332. </summary>
  333. </member>
  334. <member name="P:StackExchange.Redis.ClusterNode.IsMyself">
  335. <summary>
  336. Gets whether this is the node which responded to the CLUSTER NODES request
  337. </summary>
  338. </member>
  339. <member name="P:StackExchange.Redis.ClusterNode.IsSlave">
  340. <summary>
  341. Gets whether this node is a replica
  342. </summary>
  343. </member>
  344. <member name="P:StackExchange.Redis.ClusterNode.IsReplica">
  345. <summary>
  346. Gets whether this node is a replica
  347. </summary>
  348. </member>
  349. <member name="P:StackExchange.Redis.ClusterNode.IsNoAddr">
  350. <summary>
  351. Gets whether this node is flagged as noaddr
  352. </summary>
  353. </member>
  354. <member name="P:StackExchange.Redis.ClusterNode.IsConnected">
  355. <summary>
  356. Gets the node's connection status
  357. </summary>
  358. </member>
  359. <member name="P:StackExchange.Redis.ClusterNode.NodeId">
  360. <summary>
  361. Gets the unique node-id of the current node
  362. </summary>
  363. </member>
  364. <member name="P:StackExchange.Redis.ClusterNode.Parent">
  365. <summary>
  366. Gets the parent node of the current node
  367. </summary>
  368. </member>
  369. <member name="P:StackExchange.Redis.ClusterNode.ParentNodeId">
  370. <summary>
  371. Gets the unique node-id of the parent of the current node
  372. </summary>
  373. </member>
  374. <member name="P:StackExchange.Redis.ClusterNode.Raw">
  375. <summary>
  376. The configuration as reported by the server
  377. </summary>
  378. </member>
  379. <member name="P:StackExchange.Redis.ClusterNode.Slots">
  380. <summary>
  381. The slots owned by this server
  382. </summary>
  383. </member>
  384. <member name="M:StackExchange.Redis.ClusterNode.CompareTo(StackExchange.Redis.ClusterNode)">
  385. <summary>
  386. Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
  387. </summary>
  388. <param name="other">The <see cref="T:StackExchange.Redis.ClusterNode"/> to compare to.</param>
  389. </member>
  390. <member name="M:StackExchange.Redis.ClusterNode.Equals(System.Object)">
  391. <summary>
  392. See Object.Equals
  393. </summary>
  394. <param name="obj">The <see cref="T:StackExchange.Redis.ClusterNode"/> to compare to.</param>
  395. </member>
  396. <member name="M:StackExchange.Redis.ClusterNode.Equals(StackExchange.Redis.ClusterNode)">
  397. <summary>
  398. Indicates whether two ClusterNode instances are equivalent
  399. </summary>
  400. <param name="other">The <see cref="T:StackExchange.Redis.ClusterNode"/> to compare to.</param>
  401. </member>
  402. <member name="M:StackExchange.Redis.ClusterNode.GetHashCode">
  403. <summary>
  404. See object.GetHashCode()
  405. </summary>
  406. </member>
  407. <member name="M:StackExchange.Redis.ClusterNode.ToString">
  408. <summary>
  409. See Object.ToString()
  410. </summary>
  411. </member>
  412. <member name="T:StackExchange.Redis.CommandMap">
  413. <summary>
  414. Represents the commands mapped on a particular configuration
  415. </summary>
  416. </member>
  417. <member name="P:StackExchange.Redis.CommandMap.Default">
  418. <summary>
  419. The default commands specified by redis
  420. </summary>
  421. </member>
  422. <member name="P:StackExchange.Redis.CommandMap.Twemproxy">
  423. <summary>
  424. The commands available to <a href="twemproxy">https://github.com/twitter/twemproxy</a>
  425. </summary>
  426. <remarks>https://github.com/twitter/twemproxy/blob/master/notes/redis.md</remarks>
  427. </member>
  428. <member name="P:StackExchange.Redis.CommandMap.SSDB">
  429. <summary>
  430. The commands available to <a href="ssdb">http://www.ideawu.com/ssdb/</a>
  431. </summary>
  432. <remarks>http://www.ideawu.com/ssdb/docs/redis-to-ssdb.html</remarks>
  433. </member>
  434. <member name="P:StackExchange.Redis.CommandMap.Sentinel">
  435. <summary>
  436. The commands available to <a href="Sentinel">https://redis.io/topics/sentinel</a>
  437. </summary>
  438. <remarks>https://redis.io/topics/sentinel</remarks>
  439. </member>
  440. <member name="M:StackExchange.Redis.CommandMap.Create(System.Collections.Generic.Dictionary{System.String,System.String})">
  441. <summary>
  442. Create a new CommandMap, customizing some commands
  443. </summary>
  444. <param name="overrides">The commands to override.</param>
  445. </member>
  446. <member name="M:StackExchange.Redis.CommandMap.Create(System.Collections.Generic.HashSet{System.String},System.Boolean)">
  447. <summary>
  448. Creates a CommandMap by specifying which commands are available or unavailable
  449. </summary>
  450. <param name="commands">The commands to specify.</param>
  451. <param name="available">Whether the commands are available or excluded.</param>
  452. </member>
  453. <member name="M:StackExchange.Redis.CommandMap.ToString">
  454. <summary>
  455. See Object.ToString()
  456. </summary>
  457. </member>
  458. <member name="T:StackExchange.Redis.CommandTrace">
  459. <summary>
  460. Represents the information known about long-running commands
  461. </summary>
  462. </member>
  463. <member name="P:StackExchange.Redis.CommandTrace.Arguments">
  464. <summary>
  465. The array composing the arguments of the command.
  466. </summary>
  467. </member>
  468. <member name="P:StackExchange.Redis.CommandTrace.Duration">
  469. <summary>
  470. The amount of time needed for its execution
  471. </summary>
  472. </member>
  473. <member name="P:StackExchange.Redis.CommandTrace.Time">
  474. <summary>
  475. The time at which the logged command was processed.
  476. </summary>
  477. </member>
  478. <member name="P:StackExchange.Redis.CommandTrace.UniqueId">
  479. <summary>
  480. A unique progressive identifier for every slow log entry.
  481. </summary>
  482. <remarks>The entry's unique ID can be used in order to avoid processing slow log entries multiple times (for instance you may have a script sending you an email alert for every new slow log entry). The ID is never reset in the course of the Redis server execution, only a server restart will reset it.</remarks>
  483. </member>
  484. <member name="M:StackExchange.Redis.CommandTrace.GetHelpUrl">
  485. <summary>
  486. Deduces a link to the redis documentation about the specified command
  487. </summary>
  488. </member>
  489. <member name="T:StackExchange.Redis.Condition">
  490. <summary>
  491. Describes a pre-condition used in a redis transaction
  492. </summary>
  493. </member>
  494. <member name="M:StackExchange.Redis.Condition.HashEqual(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue)">
  495. <summary>
  496. Enforces that the given hash-field must have the specified value.
  497. </summary>
  498. <param name="key">The key of the hash to check.</param>
  499. <param name="hashField">The field in the hash to check.</param>
  500. <param name="value">The value that the hash field must match.</param>
  501. </member>
  502. <member name="M:StackExchange.Redis.Condition.HashExists(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue)">
  503. <summary>
  504. Enforces that the given hash-field must exist.
  505. </summary>
  506. <param name="key">The key of the hash to check.</param>
  507. <param name="hashField">The field in the hash to check.</param>
  508. </member>
  509. <member name="M:StackExchange.Redis.Condition.HashNotEqual(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue)">
  510. <summary>
  511. Enforces that the given hash-field must not have the specified value.
  512. </summary>
  513. <param name="key">The key of the hash to check.</param>
  514. <param name="hashField">The field in the hash to check.</param>
  515. <param name="value">The value that the hash field must not match.</param>
  516. </member>
  517. <member name="M:StackExchange.Redis.Condition.HashNotExists(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue)">
  518. <summary>
  519. Enforces that the given hash-field must not exist.
  520. </summary>
  521. <param name="key">The key of the hash to check.</param>
  522. <param name="hashField">The field in the hash that must not exist.</param>
  523. </member>
  524. <member name="M:StackExchange.Redis.Condition.KeyExists(StackExchange.Redis.RedisKey)">
  525. <summary>
  526. Enforces that the given key must exist.
  527. </summary>
  528. <param name="key">The key that must exist.</param>
  529. </member>
  530. <member name="M:StackExchange.Redis.Condition.KeyNotExists(StackExchange.Redis.RedisKey)">
  531. <summary>
  532. Enforces that the given key must not exist
  533. </summary>
  534. <param name="key">The key that must not exist.</param>
  535. </member>
  536. <member name="M:StackExchange.Redis.Condition.ListIndexEqual(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.RedisValue)">
  537. <summary>
  538. Enforces that the given list index must have the specified value
  539. </summary>
  540. <param name="key">The key of the list to check.</param>
  541. <param name="index">The position in the list to check.</param>
  542. <param name="value">The value of the list position that must match.</param>
  543. </member>
  544. <member name="M:StackExchange.Redis.Condition.ListIndexExists(StackExchange.Redis.RedisKey,System.Int64)">
  545. <summary>
  546. Enforces that the given list index must exist
  547. </summary>
  548. <param name="key">The key of the list to check.</param>
  549. <param name="index">The position in the list that must exist.</param>
  550. </member>
  551. <member name="M:StackExchange.Redis.Condition.ListIndexNotEqual(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.RedisValue)">
  552. <summary>
  553. Enforces that the given list index must not have the specified value
  554. </summary>
  555. <param name="key">The key of the list to check.</param>
  556. <param name="index">The position in the list to check.</param>
  557. <param name="value">The value of the list position must not match.</param>
  558. </member>
  559. <member name="M:StackExchange.Redis.Condition.ListIndexNotExists(StackExchange.Redis.RedisKey,System.Int64)">
  560. <summary>
  561. Enforces that the given list index must not exist
  562. </summary>
  563. <param name="key">The key of the list to check.</param>
  564. <param name="index">The position in the list that must not exist.</param>
  565. </member>
  566. <member name="M:StackExchange.Redis.Condition.StringEqual(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue)">
  567. <summary>
  568. Enforces that the given key must have the specified value
  569. </summary>
  570. <param name="key">The key to check.</param>
  571. <param name="value">The value that must match.</param>
  572. </member>
  573. <member name="M:StackExchange.Redis.Condition.StringNotEqual(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue)">
  574. <summary>
  575. Enforces that the given key must not have the specified value
  576. </summary>
  577. <param name="key">The key to check.</param>
  578. <param name="value">The value that must not match.</param>
  579. </member>
  580. <member name="M:StackExchange.Redis.Condition.HashLengthEqual(StackExchange.Redis.RedisKey,System.Int64)">
  581. <summary>
  582. Enforces that the given hash length is a certain value
  583. </summary>
  584. <param name="key">The key of the hash to check.</param>
  585. <param name="length">The length the hash must have.</param>
  586. </member>
  587. <member name="M:StackExchange.Redis.Condition.HashLengthLessThan(StackExchange.Redis.RedisKey,System.Int64)">
  588. <summary>
  589. Enforces that the given hash length is less than a certain value
  590. </summary>
  591. <param name="key">The key of the hash to check.</param>
  592. <param name="length">The length the hash must be less than.</param>
  593. </member>
  594. <member name="M:StackExchange.Redis.Condition.HashLengthGreaterThan(StackExchange.Redis.RedisKey,System.Int64)">
  595. <summary>
  596. Enforces that the given hash length is greater than a certain value
  597. </summary>
  598. <param name="key">The key of the hash to check.</param>
  599. <param name="length">The length the hash must be greater than.</param>
  600. </member>
  601. <member name="M:StackExchange.Redis.Condition.StringLengthEqual(StackExchange.Redis.RedisKey,System.Int64)">
  602. <summary>
  603. Enforces that the given string length is a certain value
  604. </summary>
  605. <param name="key">The key of the string to check.</param>
  606. <param name="length">The length the string must be equal to.</param>
  607. </member>
  608. <member name="M:StackExchange.Redis.Condition.StringLengthLessThan(StackExchange.Redis.RedisKey,System.Int64)">
  609. <summary>
  610. Enforces that the given string length is less than a certain value
  611. </summary>
  612. <param name="key">The key of the string to check.</param>
  613. <param name="length">The length the string must be less than.</param>
  614. </member>
  615. <member name="M:StackExchange.Redis.Condition.StringLengthGreaterThan(StackExchange.Redis.RedisKey,System.Int64)">
  616. <summary>
  617. Enforces that the given string length is greater than a certain value
  618. </summary>
  619. <param name="key">The key of the string to check.</param>
  620. <param name="length">The length the string must be greater than.</param>
  621. </member>
  622. <member name="M:StackExchange.Redis.Condition.ListLengthEqual(StackExchange.Redis.RedisKey,System.Int64)">
  623. <summary>
  624. Enforces that the given list length is a certain value
  625. </summary>
  626. <param name="key">The key of the list to check.</param>
  627. <param name="length">The length the list must be equal to.</param>
  628. </member>
  629. <member name="M:StackExchange.Redis.Condition.ListLengthLessThan(StackExchange.Redis.RedisKey,System.Int64)">
  630. <summary>
  631. Enforces that the given list length is less than a certain value
  632. </summary>
  633. <param name="key">The key of the list to check.</param>
  634. <param name="length">The length the list must be less than.</param>
  635. </member>
  636. <member name="M:StackExchange.Redis.Condition.ListLengthGreaterThan(StackExchange.Redis.RedisKey,System.Int64)">
  637. <summary>
  638. Enforces that the given list length is greater than a certain value
  639. </summary>
  640. <param name="key">The key of the list to check.</param>
  641. <param name="length">The length the list must be greater than.</param>
  642. </member>
  643. <member name="M:StackExchange.Redis.Condition.SetLengthEqual(StackExchange.Redis.RedisKey,System.Int64)">
  644. <summary>
  645. Enforces that the given set cardinality is a certain value
  646. </summary>
  647. <param name="key">The key of the set to check.</param>
  648. <param name="length">The length the set must be equal to.</param>
  649. </member>
  650. <member name="M:StackExchange.Redis.Condition.SetLengthLessThan(StackExchange.Redis.RedisKey,System.Int64)">
  651. <summary>
  652. Enforces that the given set cardinality is less than a certain value
  653. </summary>
  654. <param name="key">The key of the set to check.</param>
  655. <param name="length">The length the set must be less than.</param>
  656. </member>
  657. <member name="M:StackExchange.Redis.Condition.SetLengthGreaterThan(StackExchange.Redis.RedisKey,System.Int64)">
  658. <summary>
  659. Enforces that the given set cardinality is greater than a certain value
  660. </summary>
  661. <param name="key">The key of the set to check.</param>
  662. <param name="length">The length the set must be greater than.</param>
  663. </member>
  664. <member name="M:StackExchange.Redis.Condition.SetContains(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue)">
  665. <summary>
  666. Enforces that the given set contains a certain member
  667. </summary>
  668. <param name="key">The key of the set to check.</param>
  669. <param name="member">The member the set must contain.</param>
  670. </member>
  671. <member name="M:StackExchange.Redis.Condition.SetNotContains(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue)">
  672. <summary>
  673. Enforces that the given set does not contain a certain member
  674. </summary>
  675. <param name="key">The key of the set to check.</param>
  676. <param name="member">The member the set must not contain.</param>
  677. </member>
  678. <member name="M:StackExchange.Redis.Condition.SortedSetLengthEqual(StackExchange.Redis.RedisKey,System.Int64)">
  679. <summary>
  680. Enforces that the given sorted set cardinality is a certain value
  681. </summary>
  682. <param name="key">The key of the sorted set to check.</param>
  683. <param name="length">The length the sorted set must be equal to.</param>
  684. </member>
  685. <member name="M:StackExchange.Redis.Condition.SortedSetLengthEqual(StackExchange.Redis.RedisKey,System.Int64,System.Double,System.Double)">
  686. <summary>
  687. Enforces that the given sorted set contains a certain number of members with scores in the given range
  688. </summary>
  689. <param name="key">The key of the sorted set to check.</param>
  690. <param name="length">The length the sorted set must be equal to.</param>
  691. <param name="min">Minimum inclusive score.</param>
  692. <param name="max">Maximum inclusive score.</param>
  693. </member>
  694. <member name="M:StackExchange.Redis.Condition.SortedSetLengthLessThan(StackExchange.Redis.RedisKey,System.Int64)">
  695. <summary>
  696. Enforces that the given sorted set cardinality is less than a certain value
  697. </summary>
  698. <param name="key">The key of the sorted set to check.</param>
  699. <param name="length">The length the sorted set must be less than.</param>
  700. </member>
  701. <member name="M:StackExchange.Redis.Condition.SortedSetLengthLessThan(StackExchange.Redis.RedisKey,System.Int64,System.Double,System.Double)">
  702. <summary>
  703. Enforces that the given sorted set contains less than a certain number of members with scores in the given range
  704. </summary>
  705. <param name="key">The key of the sorted set to check.</param>
  706. <param name="length">The length the sorted set must be equal to.</param>
  707. <param name="min">Minimum inclusive score.</param>
  708. <param name="max">Maximum inclusive score.</param>
  709. </member>
  710. <member name="M:StackExchange.Redis.Condition.SortedSetLengthGreaterThan(StackExchange.Redis.RedisKey,System.Int64)">
  711. <summary>
  712. Enforces that the given sorted set cardinality is greater than a certain value
  713. </summary>
  714. <param name="key">The key of the sorted set to check.</param>
  715. <param name="length">The length the sorted set must be greater than.</param>
  716. </member>
  717. <member name="M:StackExchange.Redis.Condition.SortedSetLengthGreaterThan(StackExchange.Redis.RedisKey,System.Int64,System.Double,System.Double)">
  718. <summary>
  719. Enforces that the given sorted set contains more than a certain number of members with scores in the given range
  720. </summary>
  721. <param name="key">The key of the sorted set to check.</param>
  722. <param name="length">The length the sorted set must be equal to.</param>
  723. <param name="min">Minimum inclusive score.</param>
  724. <param name="max">Maximum inclusive score.</param>
  725. </member>
  726. <member name="M:StackExchange.Redis.Condition.SortedSetContains(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue)">
  727. <summary>
  728. Enforces that the given sorted set contains a certain member
  729. </summary>
  730. <param name="key">The key of the sorted set to check.</param>
  731. <param name="member">The member the sorted set must contain.</param>
  732. </member>
  733. <member name="M:StackExchange.Redis.Condition.SortedSetNotContains(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue)">
  734. <summary>
  735. Enforces that the given sorted set does not contain a certain member
  736. </summary>
  737. <param name="key">The key of the sorted set to check.</param>
  738. <param name="member">The member the sorted set must not contain.</param>
  739. </member>
  740. <member name="M:StackExchange.Redis.Condition.SortedSetEqual(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue)">
  741. <summary>
  742. Enforces that the given sorted set member must have the specified score.
  743. </summary>
  744. <param name="key">The key of the sorted set to check.</param>
  745. <param name="member">The member the sorted set to check.</param>
  746. <param name="score">The score that member must have.</param>
  747. </member>
  748. <member name="M:StackExchange.Redis.Condition.SortedSetNotEqual(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue)">
  749. <summary>
  750. Enforces that the given sorted set member must not have the specified score.
  751. </summary>
  752. <param name="key">The key of the sorted set to check.</param>
  753. <param name="member">The member the sorted set to check.</param>
  754. <param name="score">The score that member must not have.</param>
  755. </member>
  756. <member name="M:StackExchange.Redis.Condition.SortedSetScoreExists(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue)">
  757. <summary>
  758. Enforces that the given sorted set must have the given score.
  759. </summary>
  760. <param name="key">The key of the sorted set to check.</param>
  761. <param name="score">The score that the sorted set must have.</param>
  762. </member>
  763. <member name="M:StackExchange.Redis.Condition.SortedSetScoreNotExists(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue)">
  764. <summary>
  765. Enforces that the given sorted set must not have the given score.
  766. </summary>
  767. <param name="key">The key of the sorted set to check.</param>
  768. <param name="score">The score that the sorted set must not have.</param>
  769. </member>
  770. <member name="M:StackExchange.Redis.Condition.SortedSetScoreExists(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue)">
  771. <summary>
  772. Enforces that the given sorted set must have the specified count of the given score.
  773. </summary>
  774. <param name="key">The key of the sorted set to check.</param>
  775. <param name="score">The score that the sorted set must have.</param>
  776. <param name="count">The number of members which sorted set must have.</param>
  777. </member>
  778. <member name="M:StackExchange.Redis.Condition.SortedSetScoreNotExists(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue)">
  779. <summary>
  780. Enforces that the given sorted set must not have the specified count of the given score.
  781. </summary>
  782. <param name="key">The key of the sorted set to check.</param>
  783. <param name="score">The score that the sorted set must not have.</param>
  784. <param name="count">The number of members which sorted set must not have.</param>
  785. </member>
  786. <member name="T:StackExchange.Redis.ConditionResult">
  787. <summary>
  788. Indicates the status of a condition as part of a transaction
  789. </summary>
  790. </member>
  791. <member name="P:StackExchange.Redis.ConditionResult.WasSatisfied">
  792. <summary>
  793. Indicates whether the condition was satisfied
  794. </summary>
  795. </member>
  796. <member name="T:StackExchange.Redis.ConfigurationOptions">
  797. <summary>
  798. The options relevant to a set of redis connections
  799. </summary>
  800. </member>
  801. <member name="E:StackExchange.Redis.ConfigurationOptions.CertificateSelection">
  802. <summary>
  803. A LocalCertificateSelectionCallback delegate responsible for selecting the certificate used for authentication; note
  804. that this cannot be specified in the configuration-string.
  805. </summary>
  806. </member>
  807. <member name="E:StackExchange.Redis.ConfigurationOptions.CertificateValidation">
  808. <summary>
  809. A RemoteCertificateValidationCallback delegate responsible for validating the certificate supplied by the remote party; note
  810. that this cannot be specified in the configuration-string.
  811. </summary>
  812. </member>
  813. <member name="P:StackExchange.Redis.ConfigurationOptions.AbortOnConnectFail">
  814. <summary>
  815. Gets or sets whether connect/configuration timeouts should be explicitly notified via a TimeoutException
  816. </summary>
  817. </member>
  818. <member name="P:StackExchange.Redis.ConfigurationOptions.AllowAdmin">
  819. <summary>
  820. Indicates whether admin operations should be allowed
  821. </summary>
  822. </member>
  823. <member name="P:StackExchange.Redis.ConfigurationOptions.AsyncTimeout">
  824. <summary>
  825. Specifies the time in milliseconds that the system should allow for asynchronous operations (defaults to SyncTimeout)
  826. </summary>
  827. </member>
  828. <member name="P:StackExchange.Redis.ConfigurationOptions.UseSsl">
  829. <summary>
  830. Indicates whether the connection should be encrypted
  831. </summary>
  832. </member>
  833. <member name="P:StackExchange.Redis.ConfigurationOptions.ChannelPrefix">
  834. <summary>
  835. Automatically encodes and decodes channels
  836. </summary>
  837. </member>
  838. <member name="P:StackExchange.Redis.ConfigurationOptions.CheckCertificateRevocation">
  839. <summary>
  840. A Boolean value that specifies whether the certificate revocation list is checked during authentication.
  841. </summary>
  842. </member>
  843. <member name="M:StackExchange.Redis.ConfigurationOptions.TrustIssuer(System.String)">
  844. <summary>
  845. Create a certificate validation check that checks against the supplied issuer even if not known by the machine
  846. </summary>
  847. <param name="issuerCertificatePath">The file system path to find the certificate at.</param>
  848. </member>
  849. <member name="M:StackExchange.Redis.ConfigurationOptions.TrustIssuer(System.Security.Cryptography.X509Certificates.X509Certificate2)">
  850. <summary>
  851. Create a certificate validation check that checks against the supplied issuer even if not known by the machine
  852. </summary>
  853. <param name="issuer">The issuer to trust.</param>
  854. </member>
  855. <member name="P:StackExchange.Redis.ConfigurationOptions.ClientName">
  856. <summary>
  857. The client name to use for all connections
  858. </summary>
  859. </member>
  860. <member name="P:StackExchange.Redis.ConfigurationOptions.ConnectRetry">
  861. <summary>
  862. The number of times to repeat the initial connect cycle if no servers respond promptly
  863. </summary>
  864. </member>
  865. <member name="P:StackExchange.Redis.ConfigurationOptions.CommandMap">
  866. <summary>
  867. The command-map associated with this configuration
  868. </summary>
  869. </member>
  870. <member name="P:StackExchange.Redis.ConfigurationOptions.ConfigurationChannel">
  871. <summary>
  872. Channel to use for broadcasting and listening for configuration change notification
  873. </summary>
  874. </member>
  875. <member name="P:StackExchange.Redis.ConfigurationOptions.ConnectTimeout">
  876. <summary>
  877. Specifies the time in milliseconds that should be allowed for connection (defaults to 5 seconds unless SyncTimeout is higher)
  878. </summary>
  879. </member>
  880. <member name="P:StackExchange.Redis.ConfigurationOptions.DefaultDatabase">
  881. <summary>
  882. Specifies the default database to be used when calling ConnectionMultiplexer.GetDatabase() without any parameters
  883. </summary>
  884. </member>
  885. <member name="P:StackExchange.Redis.ConfigurationOptions.DefaultVersion">
  886. <summary>
  887. The server version to assume
  888. </summary>
  889. </member>
  890. <member name="P:StackExchange.Redis.ConfigurationOptions.EndPoints">
  891. <summary>
  892. The endpoints defined for this configuration
  893. </summary>
  894. </member>
  895. <member name="P:StackExchange.Redis.ConfigurationOptions.HighPrioritySocketThreads">
  896. <summary>
  897. Use ThreadPriority.AboveNormal for SocketManager reader and writer threads (true by default). If false, ThreadPriority.Normal will be used.
  898. </summary>
  899. </member>
  900. <member name="P:StackExchange.Redis.ConfigurationOptions.KeepAlive">
  901. <summary>
  902. Specifies the time in seconds at which connections should be pinged to ensure validity
  903. </summary>
  904. </member>
  905. <member name="P:StackExchange.Redis.ConfigurationOptions.User">
  906. <summary>
  907. The user to use to authenticate with the server.
  908. </summary>
  909. </member>
  910. <member name="P:StackExchange.Redis.ConfigurationOptions.Password">
  911. <summary>
  912. The password to use to authenticate with the server.
  913. </summary>
  914. </member>
  915. <member name="P:StackExchange.Redis.ConfigurationOptions.PreserveAsyncOrder">
  916. <summary>
  917. Specifies whether asynchronous operations should be invoked in a way that guarantees their original delivery order
  918. </summary>
  919. </member>
  920. <member name="P:StackExchange.Redis.ConfigurationOptions.Proxy">
  921. <summary>
  922. Type of proxy to use (if any); for example Proxy.Twemproxy.
  923. </summary>
  924. </member>
  925. <member name="P:StackExchange.Redis.ConfigurationOptions.ReconnectRetryPolicy">
  926. <summary>
  927. The retry policy to be used for connection reconnects
  928. </summary>
  929. </member>
  930. <member name="P:StackExchange.Redis.ConfigurationOptions.ResolveDns">
  931. <summary>
  932. Indicates whether endpoints should be resolved via DNS before connecting.
  933. If enabled the ConnectionMultiplexer will re-resolve DNS
  934. when attempting to re-connect after a connection failure.
  935. </summary>
  936. </member>
  937. <member name="P:StackExchange.Redis.ConfigurationOptions.ResponseTimeout">
  938. <summary>
  939. Specifies the time in milliseconds that the system should allow for responses before concluding that the socket is unhealthy
  940. (defaults to SyncTimeout)
  941. </summary>
  942. </member>
  943. <member name="P:StackExchange.Redis.ConfigurationOptions.ServiceName">
  944. <summary>
  945. The service name used to resolve a service via sentinel.
  946. </summary>
  947. </member>
  948. <member name="P:StackExchange.Redis.ConfigurationOptions.SocketManager">
  949. <summary>
  950. Gets or sets the SocketManager instance to be used with these options; if this is null a shared cross-multiplexer SocketManager
  951. is used
  952. </summary>
  953. </member>
  954. <member name="P:StackExchange.Redis.ConfigurationOptions.Ssl">
  955. <summary>
  956. Indicates whether the connection should be encrypted
  957. </summary>
  958. </member>
  959. <member name="P:StackExchange.Redis.ConfigurationOptions.SslHost">
  960. <summary>
  961. The target-host to use when validating SSL certificate; setting a value here enables SSL mode
  962. </summary>
  963. </member>
  964. <member name="P:StackExchange.Redis.ConfigurationOptions.SslProtocols">
  965. <summary>
  966. Configures which Ssl/TLS protocols should be allowed. If not set, defaults are chosen by the .NET framework.
  967. </summary>
  968. </member>
  969. <member name="P:StackExchange.Redis.ConfigurationOptions.SyncTimeout">
  970. <summary>
  971. Specifies the time in milliseconds that the system should allow for synchronous operations (defaults to 5 seconds)
  972. </summary>
  973. </member>
  974. <member name="P:StackExchange.Redis.ConfigurationOptions.TieBreaker">
  975. <summary>
  976. Tie-breaker used to choose between masters (must match the endpoint exactly)
  977. </summary>
  978. </member>
  979. <member name="P:StackExchange.Redis.ConfigurationOptions.WriteBuffer">
  980. <summary>
  981. The size of the output buffer to use
  982. </summary>
  983. </member>
  984. <member name="P:StackExchange.Redis.ConfigurationOptions.ConfigCheckSeconds">
  985. <summary>
  986. Check configuration every n seconds (every minute by default)
  987. </summary>
  988. </member>
  989. <member name="M:StackExchange.Redis.ConfigurationOptions.Parse(System.String)">
  990. <summary>
  991. Parse the configuration from a comma-delimited configuration string
  992. </summary>
  993. <param name="configuration">The configuration string to parse.</param>
  994. <exception cref="T:System.ArgumentNullException"><paramref name="configuration"/> is <c>null</c>.</exception>
  995. <exception cref="T:System.ArgumentException"><paramref name="configuration"/> is empty.</exception>
  996. </member>
  997. <member name="M:StackExchange.Redis.ConfigurationOptions.Parse(System.String,System.Boolean)">
  998. <summary>
  999. Parse the configuration from a comma-delimited configuration string
  1000. </summary>
  1001. <param name="configuration">The configuration string to parse.</param>
  1002. <param name="ignoreUnknown">Whether to ignore unknown elements in <paramref name="configuration"/>.</param>
  1003. <exception cref="T:System.ArgumentNullException"><paramref name="configuration"/> is <c>null</c>.</exception>
  1004. <exception cref="T:System.ArgumentException"><paramref name="configuration"/> is empty.</exception>
  1005. </member>
  1006. <member name="M:StackExchange.Redis.ConfigurationOptions.Clone">
  1007. <summary>
  1008. Create a copy of the configuration
  1009. </summary>
  1010. </member>
  1011. <member name="M:StackExchange.Redis.ConfigurationOptions.SetDefaultPorts">
  1012. <summary>
  1013. Resolve the default port for any endpoints that did not have a port explicitly specified
  1014. </summary>
  1015. </member>
  1016. <member name="M:StackExchange.Redis.ConfigurationOptions.ToString">
  1017. <summary>
  1018. Returns the effective configuration string for this configuration, including Redis credentials.
  1019. </summary>
  1020. <remarks>
  1021. Includes password to allow generation of configuration strings used for connecting multiplexer.
  1022. </remarks>
  1023. </member>
  1024. <member name="M:StackExchange.Redis.ConfigurationOptions.ToString(System.Boolean)">
  1025. <summary>
  1026. Returns the effective configuration string for this configuration
  1027. with the option to include or exclude the password from the string.
  1028. </summary>
  1029. <param name="includePassword">Whether to include the password.</param>
  1030. </member>
  1031. <member name="T:StackExchange.Redis.ConnectionCounters">
  1032. <summary>
  1033. Illustrates the counters associated with an individual connection
  1034. </summary>
  1035. </member>
  1036. <member name="P:StackExchange.Redis.ConnectionCounters.CompletedAsynchronously">
  1037. <summary>
  1038. The number of operations that have been completed asynchronously
  1039. </summary>
  1040. </member>
  1041. <member name="P:StackExchange.Redis.ConnectionCounters.CompletedSynchronously">
  1042. <summary>
  1043. The number of operations that have been completed synchronously
  1044. </summary>
  1045. </member>
  1046. <member name="P:StackExchange.Redis.ConnectionCounters.ConnectionType">
  1047. <summary>
  1048. The type of this connection
  1049. </summary>
  1050. </member>
  1051. <member name="P:StackExchange.Redis.ConnectionCounters.FailedAsynchronously">
  1052. <summary>
  1053. The number of operations that failed to complete asynchronously
  1054. </summary>
  1055. </member>
  1056. <member name="P:StackExchange.Redis.ConnectionCounters.IsEmpty">
  1057. <summary>
  1058. Indicates if there are any pending items or failures on this connection
  1059. </summary>
  1060. </member>
  1061. <member name="P:StackExchange.Redis.ConnectionCounters.NonPreferredEndpointCount">
  1062. <summary>
  1063. Indicates the total number of messages despatched to a non-preferred endpoint, for example sent to a master
  1064. when the caller stated a preference of replica
  1065. </summary>
  1066. </member>
  1067. <member name="P:StackExchange.Redis.ConnectionCounters.OperationCount">
  1068. <summary>
  1069. The number of operations performed on this connection
  1070. </summary>
  1071. </member>
  1072. <member name="P:StackExchange.Redis.ConnectionCounters.PendingUnsentItems">
  1073. <summary>
  1074. Operations that have been requested, but which have not yet been sent to the server
  1075. </summary>
  1076. </member>
  1077. <member name="P:StackExchange.Redis.ConnectionCounters.ResponsesAwaitingAsyncCompletion">
  1078. <summary>
  1079. Operations for which the response has been processed, but which are awaiting asynchronous completion
  1080. </summary>
  1081. </member>
  1082. <member name="P:StackExchange.Redis.ConnectionCounters.SentItemsAwaitingResponse">
  1083. <summary>
  1084. Operations that have been sent to the server, but which are awaiting a response
  1085. </summary>
  1086. </member>
  1087. <member name="P:StackExchange.Redis.ConnectionCounters.SocketCount">
  1088. <summary>
  1089. The number of sockets used by this logical connection (total, including reconnects)
  1090. </summary>
  1091. </member>
  1092. <member name="P:StackExchange.Redis.ConnectionCounters.Subscriptions">
  1093. <summary>
  1094. The number of subscriptions (with and without patterns) currently held against this connection
  1095. </summary>
  1096. </member>
  1097. <member name="P:StackExchange.Redis.ConnectionCounters.TotalOutstanding">
  1098. <summary>
  1099. Indicates the total number of outstanding items against this connection
  1100. </summary>
  1101. </member>
  1102. <member name="P:StackExchange.Redis.ConnectionCounters.WriterCount">
  1103. <summary>
  1104. Indicates the total number of writers items against this connection
  1105. </summary>
  1106. </member>
  1107. <member name="M:StackExchange.Redis.ConnectionCounters.ToString">
  1108. <summary>
  1109. See Object.ToString()
  1110. </summary>
  1111. </member>
  1112. <member name="T:StackExchange.Redis.ConnectionFailedEventArgs">
  1113. <summary>
  1114. Contains information about a server connection failure
  1115. </summary>
  1116. </member>
  1117. <member name="M:StackExchange.Redis.ConnectionFailedEventArgs.#ctor(System.Object,System.Net.EndPoint,StackExchange.Redis.ConnectionType,StackExchange.Redis.ConnectionFailureType,System.Exception,System.String)">
  1118. <summary>
  1119. This constructor is only for testing purposes.
  1120. </summary>
  1121. <param name="sender">The source of the event.</param>
  1122. <param name="endPoint">Redis endpoint.</param>
  1123. <param name="connectionType">Redis connection type.</param>
  1124. <param name="failureType">Redis connection failure type.</param>
  1125. <param name="exception">The exception occured.</param>
  1126. <param name="physicalName">Connection physical name.</param>
  1127. </member>
  1128. <member name="P:StackExchange.Redis.ConnectionFailedEventArgs.ConnectionType">
  1129. <summary>
  1130. Gets the connection-type of the failing connection
  1131. </summary>
  1132. </member>
  1133. <member name="P:StackExchange.Redis.ConnectionFailedEventArgs.EndPoint">
  1134. <summary>
  1135. Gets the failing server-endpoint
  1136. </summary>
  1137. </member>
  1138. <member name="P:StackExchange.Redis.ConnectionFailedEventArgs.Exception">
  1139. <summary>
  1140. Gets the exception if available (this can be null)
  1141. </summary>
  1142. </member>
  1143. <member name="P:StackExchange.Redis.ConnectionFailedEventArgs.FailureType">
  1144. <summary>
  1145. The type of failure
  1146. </summary>
  1147. </member>
  1148. <member name="M:StackExchange.Redis.ConnectionFailedEventArgs.ToString">
  1149. <summary>
  1150. Returns the physical name of the connection.
  1151. </summary>
  1152. </member>
  1153. <member name="T:StackExchange.Redis.ConnectionMultiplexer">
  1154. <summary>
  1155. Represents an inter-related group of connections to redis servers
  1156. </summary>
  1157. </member>
  1158. <member name="M:StackExchange.Redis.ConnectionMultiplexer.SetFeatureFlag(System.String,System.Boolean)">
  1159. <summary>
  1160. Enables or disables a feature flag; this should only be used under support guidance, and should not be rapidly toggled
  1161. </summary>
  1162. </member>
  1163. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetFeatureFlag(System.String)">
  1164. <summary>
  1165. Returns the state of a feature flag; this should only be used under support guidance
  1166. </summary>
  1167. </member>
  1168. <member name="F:StackExchange.Redis.ConnectionMultiplexer.AllowConnect">
  1169. <summary>
  1170. For debugging: when not enabled, servers cannot connect
  1171. </summary>
  1172. </member>
  1173. <member name="F:StackExchange.Redis.ConnectionMultiplexer.IgnoreConnect">
  1174. <summary>
  1175. For debugging: when not enabled, end-connect is silently ignored (to simulate a long-running connect)
  1176. </summary>
  1177. </member>
  1178. <member name="F:StackExchange.Redis.ConnectionMultiplexer._connectAttemptCount">
  1179. <summary>
  1180. Tracks overall connection multiplexer counts
  1181. </summary>
  1182. </member>
  1183. <member name="F:StackExchange.Redis.ConnectionMultiplexer._connectCompletedCount">
  1184. <summary>
  1185. Tracks overall connection multiplexer counts
  1186. </summary>
  1187. </member>
  1188. <member name="F:StackExchange.Redis.ConnectionMultiplexer._connectionCloseCount">
  1189. <summary>
  1190. Tracks overall connection multiplexer counts
  1191. </summary>
  1192. </member>
  1193. <member name="P:StackExchange.Redis.ConnectionMultiplexer.Factory">
  1194. <summary>
  1195. Provides a way of overriding the default Task Factory. If not set, it will use the default Task.Factory.
  1196. Useful when top level code sets it's own factory which may interfere with Redis queries.
  1197. </summary>
  1198. </member>
  1199. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetCounters">
  1200. <summary>
  1201. Get summary statistics associates with this server
  1202. </summary>
  1203. </member>
  1204. <member name="P:StackExchange.Redis.ConnectionMultiplexer.ClientName">
  1205. <summary>
  1206. Gets the client-name that will be used on all new connections
  1207. </summary>
  1208. </member>
  1209. <member name="M:StackExchange.Redis.ConnectionMultiplexer.TryGetAzureRoleInstanceIdNoThrow">
  1210. <summary>
  1211. Tries to get the Roleinstance Id if Microsoft.WindowsAzure.ServiceRuntime is loaded.
  1212. In case of any failure, swallows the exception and returns null
  1213. </summary>
  1214. </member>
  1215. <member name="P:StackExchange.Redis.ConnectionMultiplexer.Configuration">
  1216. <summary>
  1217. Gets the configuration of the connection
  1218. </summary>
  1219. </member>
  1220. <member name="E:StackExchange.Redis.ConnectionMultiplexer.ErrorMessage">
  1221. <summary>
  1222. A server replied with an error message;
  1223. </summary>
  1224. </member>
  1225. <member name="M:StackExchange.Redis.ConnectionMultiplexer.ExportConfiguration(System.IO.Stream,StackExchange.Redis.ExportOptions)">
  1226. <summary>
  1227. Write the configuration of all servers to an output stream
  1228. </summary>
  1229. <param name="destination">The destination stream to write the export to.</param>
  1230. <param name="options">The options to use for this export.</param>
  1231. </member>
  1232. <member name="E:StackExchange.Redis.ConnectionMultiplexer.ConnectionFailed">
  1233. <summary>
  1234. Raised whenever a physical connection fails
  1235. </summary>
  1236. </member>
  1237. <member name="E:StackExchange.Redis.ConnectionMultiplexer.InternalError">
  1238. <summary>
  1239. Raised whenever an internal error occurs (this is primarily for debugging)
  1240. </summary>
  1241. </member>
  1242. <member name="E:StackExchange.Redis.ConnectionMultiplexer.ConnectionRestored">
  1243. <summary>
  1244. Raised whenever a physical connection is established
  1245. </summary>
  1246. </member>
  1247. <member name="E:StackExchange.Redis.ConnectionMultiplexer.ConfigurationChanged">
  1248. <summary>
  1249. Raised when configuration changes are detected
  1250. </summary>
  1251. </member>
  1252. <member name="E:StackExchange.Redis.ConnectionMultiplexer.ConfigurationChangedBroadcast">
  1253. <summary>
  1254. Raised when nodes are explicitly requested to reconfigure via broadcast;
  1255. this usually means master/replica changes
  1256. </summary>
  1257. </member>
  1258. <member name="P:StackExchange.Redis.ConnectionMultiplexer.TimeoutMilliseconds">
  1259. <summary>
  1260. Gets the synchronous timeout associated with the connections
  1261. </summary>
  1262. </member>
  1263. <member name="P:StackExchange.Redis.ConnectionMultiplexer.AsyncTimeoutMilliseconds">
  1264. <summary>
  1265. Gets the asynchronous timeout associated with the connections
  1266. </summary>
  1267. </member>
  1268. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetEndPoints(System.Boolean)">
  1269. <summary>
  1270. Gets all endpoints defined on the server
  1271. </summary>
  1272. <param name="configuredOnly">Whether to get only the endpoints specified explicitly in the config.</param>
  1273. </member>
  1274. <member name="M:StackExchange.Redis.ConnectionMultiplexer.Wait(System.Threading.Tasks.Task)">
  1275. <summary>
  1276. Wait for a given asynchronous operation to complete (or timeout)
  1277. </summary>
  1278. <param name="task">The task to wait on.</param>
  1279. </member>
  1280. <member name="M:StackExchange.Redis.ConnectionMultiplexer.Wait``1(System.Threading.Tasks.Task{``0})">
  1281. <summary>
  1282. Wait for a given asynchronous operation to complete (or timeout)
  1283. </summary>
  1284. <typeparam name="T">The type contains in the task to wait on.</typeparam>
  1285. <param name="task">The task to wait on.</param>
  1286. </member>
  1287. <member name="M:StackExchange.Redis.ConnectionMultiplexer.WaitAll(System.Threading.Tasks.Task[])">
  1288. <summary>
  1289. Wait for the given asynchronous operations to complete (or timeout)
  1290. </summary>
  1291. <param name="tasks">The tasks to wait on.</param>
  1292. </member>
  1293. <member name="E:StackExchange.Redis.ConnectionMultiplexer.HashSlotMoved">
  1294. <summary>
  1295. Raised when a hash-slot has been relocated
  1296. </summary>
  1297. </member>
  1298. <member name="M:StackExchange.Redis.ConnectionMultiplexer.HashSlot(StackExchange.Redis.RedisKey)">
  1299. <summary>
  1300. Compute the hash-slot of a specified key
  1301. </summary>
  1302. <param name="key">The key to get a hash slot ID for.</param>
  1303. </member>
  1304. <member name="M:StackExchange.Redis.ConnectionMultiplexer.ConnectAsync(System.String,System.IO.TextWriter)">
  1305. <summary>
  1306. Create a new ConnectionMultiplexer instance
  1307. </summary>
  1308. <param name="configuration">The string configuration to use for this multiplexer.</param>
  1309. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1310. </member>
  1311. <member name="M:StackExchange.Redis.ConnectionMultiplexer.ConnectAsync(StackExchange.Redis.ConfigurationOptions,System.IO.TextWriter)">
  1312. <summary>
  1313. Create a new ConnectionMultiplexer instance
  1314. </summary>
  1315. <param name="configuration">The configuration options to use for this multiplexer.</param>
  1316. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1317. </member>
  1318. <member name="M:StackExchange.Redis.ConnectionMultiplexer.Connect(System.String,System.IO.TextWriter)">
  1319. <summary>
  1320. Create a new ConnectionMultiplexer instance
  1321. </summary>
  1322. <param name="configuration">The string configuration to use for this multiplexer.</param>
  1323. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1324. </member>
  1325. <member name="M:StackExchange.Redis.ConnectionMultiplexer.Connect(StackExchange.Redis.ConfigurationOptions,System.IO.TextWriter)">
  1326. <summary>
  1327. Create a new ConnectionMultiplexer instance
  1328. </summary>
  1329. <param name="configuration">The configuration options to use for this multiplexer.</param>
  1330. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1331. </member>
  1332. <member name="M:StackExchange.Redis.ConnectionMultiplexer.SentinelConnect(System.String,System.IO.TextWriter)">
  1333. <summary>
  1334. Create a new ConnectionMultiplexer instance that connects to a sentinel server
  1335. </summary>
  1336. <param name="configuration">The string configuration to use for this multiplexer.</param>
  1337. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1338. </member>
  1339. <member name="M:StackExchange.Redis.ConnectionMultiplexer.SentinelConnectAsync(System.String,System.IO.TextWriter)">
  1340. <summary>
  1341. Create a new ConnectionMultiplexer instance that connects to a sentinel server
  1342. </summary>
  1343. <param name="configuration">The string configuration to use for this multiplexer.</param>
  1344. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1345. </member>
  1346. <member name="M:StackExchange.Redis.ConnectionMultiplexer.SentinelConnect(StackExchange.Redis.ConfigurationOptions,System.IO.TextWriter)">
  1347. <summary>
  1348. Create a new ConnectionMultiplexer instance that connects to a sentinel server
  1349. </summary>
  1350. <param name="configuration">The configuration options to use for this multiplexer.</param>
  1351. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1352. </member>
  1353. <member name="M:StackExchange.Redis.ConnectionMultiplexer.SentinelConnectAsync(StackExchange.Redis.ConfigurationOptions,System.IO.TextWriter)">
  1354. <summary>
  1355. Create a new ConnectionMultiplexer instance that connects to a sentinel server
  1356. </summary>
  1357. <param name="configuration">The configuration options to use for this multiplexer.</param>
  1358. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1359. </member>
  1360. <member name="M:StackExchange.Redis.ConnectionMultiplexer.SentinelMasterConnect(System.String,System.IO.TextWriter)">
  1361. <summary>
  1362. Create a new ConnectionMultiplexer instance that connects to a sentinel server, discovers the current master server
  1363. for the specified ServiceName in the config and returns a managed connection to the current master server
  1364. </summary>
  1365. <param name="configuration">The string configuration to use for this multiplexer.</param>
  1366. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1367. </member>
  1368. <member name="M:StackExchange.Redis.ConnectionMultiplexer.SentinelMasterConnect(StackExchange.Redis.ConfigurationOptions,System.IO.TextWriter)">
  1369. <summary>
  1370. Create a new ConnectionMultiplexer instance that connects to a sentinel server, discovers the current master server
  1371. for the specified ServiceName in the config and returns a managed connection to the current master server
  1372. </summary>
  1373. <param name="configuration">The configuration options to use for this multiplexer.</param>
  1374. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1375. </member>
  1376. <member name="M:StackExchange.Redis.ConnectionMultiplexer.SentinelMasterConnectAsync(System.String,System.IO.TextWriter)">
  1377. <summary>
  1378. Create a new ConnectionMultiplexer instance that connects to a sentinel server, discovers the current master server
  1379. for the specified ServiceName in the config and returns a managed connection to the current master server
  1380. </summary>
  1381. <param name="configuration">The string configuration to use for this multiplexer.</param>
  1382. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1383. </member>
  1384. <member name="M:StackExchange.Redis.ConnectionMultiplexer.SentinelMasterConnectAsync(StackExchange.Redis.ConfigurationOptions,System.IO.TextWriter)">
  1385. <summary>
  1386. Create a new ConnectionMultiplexer instance that connects to a sentinel server, discovers the current master server
  1387. for the specified ServiceName in the config and returns a managed connection to the current master server
  1388. </summary>
  1389. <param name="configuration">The configuration options to use for this multiplexer.</param>
  1390. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1391. </member>
  1392. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetSubscriber(System.Object)">
  1393. <summary>
  1394. Obtain a pub/sub subscriber connection to the specified server
  1395. </summary>
  1396. <param name="asyncState">The async state object to pass to the created <see cref="T:StackExchange.Redis.RedisSubscriber"/>.</param>
  1397. </member>
  1398. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetDatabase(System.Int32,System.Object)">
  1399. <summary>
  1400. Obtain an interactive connection to a database inside redis
  1401. </summary>
  1402. <param name="db">The ID to get a database for.</param>
  1403. <param name="asyncState">The async state to pass into the resulting <see cref="T:StackExchange.Redis.RedisDatabase"/>.</param>
  1404. </member>
  1405. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetServer(System.String,System.Int32,System.Object)">
  1406. <summary>
  1407. Obtain a configuration API for an individual server
  1408. </summary>
  1409. <param name="host">The host to get a server for.</param>
  1410. <param name="port">The port for <paramref name="host"/> to get a server for.</param>
  1411. <param name="asyncState">The async state to pass into the resulting <see cref="T:StackExchange.Redis.RedisServer"/>.</param>
  1412. </member>
  1413. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetServer(System.String,System.Object)">
  1414. <summary>
  1415. Obtain a configuration API for an individual server
  1416. </summary>
  1417. <param name="hostAndPort">The "host:port" string to get a server for.</param>
  1418. <param name="asyncState">The async state to pass into the resulting <see cref="T:StackExchange.Redis.RedisServer"/>.</param>
  1419. </member>
  1420. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetServer(System.Net.IPAddress,System.Int32)">
  1421. <summary>
  1422. Obtain a configuration API for an individual server
  1423. </summary>
  1424. <param name="host">The host to get a server for.</param>
  1425. <param name="port">The port for <paramref name="host"/> to get a server for.</param>
  1426. </member>
  1427. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetServer(System.Net.EndPoint,System.Object)">
  1428. <summary>
  1429. Obtain a configuration API for an individual server
  1430. </summary>
  1431. <param name="endpoint">The endpoint to get a server for.</param>
  1432. <param name="asyncState">The async state to pass into the resulting <see cref="T:StackExchange.Redis.RedisServer"/>.</param>
  1433. </member>
  1434. <member name="P:StackExchange.Redis.ConnectionMultiplexer.OperationCount">
  1435. <summary>
  1436. The number of operations that have been performed on all connections
  1437. </summary>
  1438. </member>
  1439. <member name="M:StackExchange.Redis.ConnectionMultiplexer.ConfigureAsync(System.IO.TextWriter)">
  1440. <summary>
  1441. Reconfigure the current connections based on the existing configuration
  1442. </summary>
  1443. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1444. </member>
  1445. <member name="M:StackExchange.Redis.ConnectionMultiplexer.Configure(System.IO.TextWriter)">
  1446. <summary>
  1447. Reconfigure the current connections based on the existing configuration
  1448. </summary>
  1449. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1450. </member>
  1451. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetStatus">
  1452. <summary>
  1453. Provides a text overview of the status of all connections
  1454. </summary>
  1455. </member>
  1456. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetStatus(System.IO.TextWriter)">
  1457. <summary>
  1458. Provides a text overview of the status of all connections
  1459. </summary>
  1460. <param name="log">The <see cref="T:System.IO.TextWriter"/> to log to.</param>
  1461. </member>
  1462. <member name="M:StackExchange.Redis.ConnectionMultiplexer.ToString">
  1463. <summary>
  1464. See Object.ToString()
  1465. </summary>
  1466. </member>
  1467. <member name="P:StackExchange.Redis.ConnectionMultiplexer.PreserveAsyncOrder">
  1468. <summary>
  1469. Gets or sets whether asynchronous operations should be invoked in a way that guarantees their original delivery order
  1470. </summary>
  1471. </member>
  1472. <member name="P:StackExchange.Redis.ConnectionMultiplexer.IsConnected">
  1473. <summary>
  1474. Indicates whether any servers are connected
  1475. </summary>
  1476. </member>
  1477. <member name="P:StackExchange.Redis.ConnectionMultiplexer.IsConnecting">
  1478. <summary>
  1479. Indicates whether any servers are currently trying to connect
  1480. </summary>
  1481. </member>
  1482. <member name="M:StackExchange.Redis.ConnectionMultiplexer.InitializeSentinel(StackExchange.Redis.ConnectionMultiplexer.LogProxy)">
  1483. <summary>
  1484. Initializes the connection as a Sentinel connection and adds
  1485. the necessary event handlers to track changes to the managed
  1486. masters.
  1487. </summary>
  1488. <param name="logProxy"></param>
  1489. </member>
  1490. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetSentinelMasterConnection(StackExchange.Redis.ConfigurationOptions,System.IO.TextWriter)">
  1491. <summary>
  1492. Returns a managed connection to the master server indicated by
  1493. the ServiceName in the config.
  1494. </summary>
  1495. <param name="config">the configuration to be used when connecting to the master</param>
  1496. <param name="log"></param>
  1497. </member>
  1498. <member name="M:StackExchange.Redis.ConnectionMultiplexer.SwitchMaster(System.Net.EndPoint,StackExchange.Redis.ConnectionMultiplexer,System.IO.TextWriter)">
  1499. <summary>
  1500. Switches the SentinelMasterConnection over to a new master.
  1501. </summary>
  1502. <param name="switchBlame">The endpoint responsible for the switch</param>
  1503. <param name="connection">The connection that should be switched over to a new master endpoint</param>
  1504. <param name="log">Log to write to, if any</param>
  1505. </member>
  1506. <member name="M:StackExchange.Redis.ConnectionMultiplexer.Close(System.Boolean)">
  1507. <summary>
  1508. Close all connections and release all resources associated with this object
  1509. </summary>
  1510. <param name="allowCommandsToComplete">Whether to allow all in-queue commands to complete first.</param>
  1511. </member>
  1512. <member name="M:StackExchange.Redis.ConnectionMultiplexer.CloseAsync(System.Boolean)">
  1513. <summary>
  1514. Close all connections and release all resources associated with this object
  1515. </summary>
  1516. <param name="allowCommandsToComplete">Whether to allow all in-queue commands to complete first.</param>
  1517. </member>
  1518. <member name="M:StackExchange.Redis.ConnectionMultiplexer.Dispose">
  1519. <summary>
  1520. Release all resources associated with this object
  1521. </summary>
  1522. </member>
  1523. <member name="P:StackExchange.Redis.ConnectionMultiplexer.IncludeDetailInExceptions">
  1524. <summary>
  1525. Should exceptions include identifiable details? (key names, additional .Data annotations)
  1526. </summary>
  1527. </member>
  1528. <member name="P:StackExchange.Redis.ConnectionMultiplexer.IncludePerformanceCountersInExceptions">
  1529. <summary>
  1530. Should exceptions include performance counter details? (CPU usage, etc - note that this can be problematic on some platforms)
  1531. </summary>
  1532. </member>
  1533. <member name="P:StackExchange.Redis.ConnectionMultiplexer.StormLogThreshold">
  1534. <summary>
  1535. Limit at which to start recording unusual busy patterns (only one log will be retained at a time;
  1536. set to a negative value to disable this feature)
  1537. </summary>
  1538. </member>
  1539. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetStormLog">
  1540. <summary>
  1541. Obtains the log of unusual busy patterns
  1542. </summary>
  1543. </member>
  1544. <member name="M:StackExchange.Redis.ConnectionMultiplexer.ResetStormLog">
  1545. <summary>
  1546. Resets the log of unusual busy patterns
  1547. </summary>
  1548. </member>
  1549. <member name="M:StackExchange.Redis.ConnectionMultiplexer.PublishReconfigure(StackExchange.Redis.CommandFlags)">
  1550. <summary>
  1551. Request all compatible clients to reconfigure or reconnect
  1552. </summary>
  1553. <param name="flags">The command flags to use.</param>2
  1554. <returns>The number of instances known to have received the message (however, the actual number can be higher; returns -1 if the operation is pending)</returns>
  1555. </member>
  1556. <member name="M:StackExchange.Redis.ConnectionMultiplexer.PublishReconfigureAsync(StackExchange.Redis.CommandFlags)">
  1557. <summary>
  1558. Request all compatible clients to reconfigure or reconnect
  1559. </summary>
  1560. <param name="flags">The command flags to use.</param>
  1561. <returns>The number of instances known to have received the message (however, the actual number can be higher)</returns>
  1562. </member>
  1563. <member name="M:StackExchange.Redis.ConnectionMultiplexer.GetHashSlot(StackExchange.Redis.RedisKey)">
  1564. <summary>
  1565. Get the hash-slot associated with a given key, if applicable; this can be useful for grouping operations
  1566. </summary>
  1567. <param name="key">The <see cref="T:StackExchange.Redis.RedisKey"/> to determine the hash slot for.</param>
  1568. </member>
  1569. <member name="M:StackExchange.Redis.ConnectionMultiplexer.RegisterProfiler(System.Func{StackExchange.Redis.Profiling.ProfilingSession})">
  1570. <summary>
  1571. Register a callback to provide an on-demand ambient session provider based on the
  1572. calling context; the implementing code is responsible for reliably resolving the same provider
  1573. based on ambient context, or returning null to not profile
  1574. </summary>
  1575. <param name="profilingSessionProvider">The session provider to register.</param>
  1576. </member>
  1577. <member name="T:StackExchange.Redis.CursorEnumerable`1">
  1578. <summary>
  1579. Provides the ability to iterate over a cursor-based sequence of redis data, synchronously or asynchronously
  1580. </summary>
  1581. </member>
  1582. <member name="M:StackExchange.Redis.CursorEnumerable`1.GetEnumerator">
  1583. <summary>
  1584. Gets an enumerator for the sequence
  1585. </summary>
  1586. </member>
  1587. <member name="M:StackExchange.Redis.CursorEnumerable`1.GetAsyncEnumerator(System.Threading.CancellationToken)">
  1588. <summary>
  1589. Gets an enumerator for the sequence
  1590. </summary>
  1591. </member>
  1592. <member name="T:StackExchange.Redis.CursorEnumerable`1.Enumerator">
  1593. <summary>
  1594. Provides the ability to iterate over a cursor-based sequence of redis data, synchronously or asynchronously
  1595. </summary>
  1596. </member>
  1597. <member name="P:StackExchange.Redis.CursorEnumerable`1.Enumerator.Current">
  1598. <summary>
  1599. Gets the current value of the enumerator
  1600. </summary>
  1601. </member>
  1602. <member name="M:StackExchange.Redis.CursorEnumerable`1.Enumerator.Dispose">
  1603. <summary>
  1604. Release all resources associated with this enumerator
  1605. </summary>
  1606. </member>
  1607. <member name="M:StackExchange.Redis.CursorEnumerable`1.Enumerator.DisposeAsync">
  1608. <summary>
  1609. Release all resources associated with this enumerator
  1610. </summary>
  1611. </member>
  1612. <member name="M:StackExchange.Redis.CursorEnumerable`1.Enumerator.MoveNext">
  1613. <summary>
  1614. Try to move to the next item in the sequence
  1615. </summary>
  1616. </member>
  1617. <member name="M:StackExchange.Redis.CursorEnumerable`1.Enumerator.MoveNextAsync">
  1618. <summary>
  1619. Try to move to the next item in the sequence
  1620. </summary>
  1621. </member>
  1622. <member name="M:StackExchange.Redis.CursorEnumerable`1.Enumerator.Reset">
  1623. <summary>
  1624. Reset the enumerator
  1625. </summary>
  1626. </member>
  1627. <member name="T:StackExchange.Redis.EndPointCollection">
  1628. <summary>
  1629. A list of endpoints
  1630. </summary>
  1631. </member>
  1632. <member name="M:StackExchange.Redis.EndPointCollection.#ctor">
  1633. <summary>
  1634. Create a new EndPointCollection
  1635. </summary>
  1636. </member>
  1637. <member name="M:StackExchange.Redis.EndPointCollection.#ctor(System.Collections.Generic.IList{System.Net.EndPoint})">
  1638. <summary>
  1639. Create a new EndPointCollection
  1640. </summary>
  1641. <param name="endpoints">The endpoints to add to the collection.</param>
  1642. </member>
  1643. <member name="M:StackExchange.Redis.EndPointCollection.ToString(System.Net.EndPoint)">
  1644. <summary>
  1645. Format an endpoint
  1646. </summary>
  1647. <param name="endpoint">The endpoint to get a string representation for.</param>
  1648. </member>
  1649. <member name="M:StackExchange.Redis.EndPointCollection.TryParse(System.String)">
  1650. <summary>
  1651. Attempt to parse a string into an EndPoint
  1652. </summary>
  1653. <param name="endpoint">The endpoint string to parse.</param>
  1654. </member>
  1655. <member name="M:StackExchange.Redis.EndPointCollection.Add(System.String)">
  1656. <summary>
  1657. Adds a new endpoint to the list
  1658. </summary>
  1659. <param name="hostAndPort">The host:port string to add an endpoint for to the collection.</param>
  1660. </member>
  1661. <member name="M:StackExchange.Redis.EndPointCollection.Add(System.String,System.Int32)">
  1662. <summary>
  1663. Adds a new endpoint to the list.
  1664. </summary>
  1665. <param name="host">The host to add.</param>
  1666. <param name="port">The port for <paramref name="host"/> to add.</param>
  1667. </member>
  1668. <member name="M:StackExchange.Redis.EndPointCollection.Add(System.Net.IPAddress,System.Int32)">
  1669. <summary>
  1670. Adds a new endpoint to the list.
  1671. </summary>
  1672. <param name="host">The host to add.</param>
  1673. <param name="port">The port for <paramref name="host"/> to add.</param>
  1674. </member>
  1675. <member name="M:StackExchange.Redis.EndPointCollection.TryAdd(System.Net.EndPoint)">
  1676. <summary>
  1677. Try adding a new endpoint to the list.
  1678. </summary>
  1679. <param name="endpoint">The endpoint to add.</param>
  1680. <returns>True if the endpoint was added or false if not.</returns>
  1681. </member>
  1682. <member name="M:StackExchange.Redis.EndPointCollection.InsertItem(System.Int32,System.Net.EndPoint)">
  1683. <summary>
  1684. See Collection&lt;T&gt;.InsertItem()
  1685. </summary>
  1686. <param name="index">The index to add <paramref name="item"/> into the collection at.</param>
  1687. <param name="item">The item to insert at <paramref name="index"/>.</param>
  1688. </member>
  1689. <member name="M:StackExchange.Redis.EndPointCollection.SetItem(System.Int32,System.Net.EndPoint)">
  1690. <summary>
  1691. See Collection&lt;T&gt;.SetItem()
  1692. </summary>
  1693. <param name="index">The index to replace an endpoint at.</param>
  1694. <param name="item">The item to replace the existing endpoint at <paramref name="index"/>.</param>
  1695. </member>
  1696. <member name="M:StackExchange.Redis.EndPointCollection.GetEnumerator">
  1697. <inheritdoc/>
  1698. </member>
  1699. <member name="T:StackExchange.Redis.EndPointEventArgs">
  1700. <summary>
  1701. Event information related to redis endpoints
  1702. </summary>
  1703. </member>
  1704. <member name="M:StackExchange.Redis.EndPointEventArgs.#ctor(System.Object,System.Net.EndPoint)">
  1705. <summary>
  1706. This constructor is only for testing purposes.
  1707. </summary>
  1708. <param name="sender">The source of the event.</param>
  1709. <param name="endpoint">Redis endpoint.</param>
  1710. </member>
  1711. <member name="P:StackExchange.Redis.EndPointEventArgs.EndPoint">
  1712. <summary>
  1713. The endpoint involved in this event (this can be null)
  1714. </summary>
  1715. </member>
  1716. <member name="T:StackExchange.Redis.Aggregate">
  1717. <summary>
  1718. Specifies how elements should be aggregated when combining sorted sets
  1719. </summary>
  1720. </member>
  1721. <member name="F:StackExchange.Redis.Aggregate.Sum">
  1722. <summary>
  1723. The values of the combined elements are added
  1724. </summary>
  1725. </member>
  1726. <member name="F:StackExchange.Redis.Aggregate.Min">
  1727. <summary>
  1728. The least value of the combined elements is used
  1729. </summary>
  1730. </member>
  1731. <member name="F:StackExchange.Redis.Aggregate.Max">
  1732. <summary>
  1733. The greatest value of the combined elements is used
  1734. </summary>
  1735. </member>
  1736. <member name="T:StackExchange.Redis.Bitwise">
  1737. <summary>
  1738. <a href="https://en.wikipedia.org/wiki/Bitwise_operation">Bitwise operators</a>
  1739. </summary>
  1740. </member>
  1741. <member name="F:StackExchange.Redis.Bitwise.And">
  1742. <summary>
  1743. <a href="https://en.wikipedia.org/wiki/Bitwise_operation#AND">And</a>
  1744. </summary>
  1745. </member>
  1746. <member name="F:StackExchange.Redis.Bitwise.Or">
  1747. <summary>
  1748. <a href="https://en.wikipedia.org/wiki/Bitwise_operation#OR">Or</a>
  1749. </summary>
  1750. </member>
  1751. <member name="F:StackExchange.Redis.Bitwise.Xor">
  1752. <summary>
  1753. <a href="https://en.wikipedia.org/wiki/Bitwise_operation#XOR">Xor</a>
  1754. </summary>
  1755. </member>
  1756. <member name="F:StackExchange.Redis.Bitwise.Not">
  1757. <summary>
  1758. <a href="https://en.wikipedia.org/wiki/Bitwise_operation#NOT">Not</a>
  1759. </summary>
  1760. </member>
  1761. <member name="T:StackExchange.Redis.ClientFlags">
  1762. <summary>
  1763. The client flags can be a combination of:
  1764. O: the client is a replica in MONITOR mode
  1765. S: the client is a normal replica server
  1766. M: the client is a master
  1767. x: the client is in a MULTI/EXEC context
  1768. b: the client is waiting in a blocking operation
  1769. i: the client is waiting for a VM I/O (deprecated)
  1770. d: a watched keys has been modified - EXEC will fail
  1771. c: connection to be closed after writing entire reply
  1772. u: the client is unblocked
  1773. A: connection to be closed ASAP
  1774. N: no specific flag set
  1775. </summary>
  1776. </member>
  1777. <member name="F:StackExchange.Redis.ClientFlags.None">
  1778. <summary>
  1779. no specific flag set
  1780. </summary>
  1781. </member>
  1782. <member name="F:StackExchange.Redis.ClientFlags.SlaveMonitor">
  1783. <summary>
  1784. the client is a replica in MONITOR mode
  1785. </summary>
  1786. </member>
  1787. <member name="F:StackExchange.Redis.ClientFlags.ReplicaMonitor">
  1788. <summary>
  1789. the client is a replica in MONITOR mode
  1790. </summary>
  1791. </member>
  1792. <member name="F:StackExchange.Redis.ClientFlags.Slave">
  1793. <summary>
  1794. the client is a normal replica server
  1795. </summary>
  1796. </member>
  1797. <member name="F:StackExchange.Redis.ClientFlags.Replica">
  1798. <summary>
  1799. the client is a normal replica server
  1800. </summary>
  1801. </member>
  1802. <member name="F:StackExchange.Redis.ClientFlags.Master">
  1803. <summary>
  1804. the client is a master
  1805. </summary>
  1806. </member>
  1807. <member name="F:StackExchange.Redis.ClientFlags.Transaction">
  1808. <summary>
  1809. the client is in a MULTI/EXEC context
  1810. </summary>
  1811. </member>
  1812. <member name="F:StackExchange.Redis.ClientFlags.Blocked">
  1813. <summary>
  1814. the client is waiting in a blocking operation
  1815. </summary>
  1816. </member>
  1817. <member name="F:StackExchange.Redis.ClientFlags.TransactionDoomed">
  1818. <summary>
  1819. a watched keys has been modified - EXEC will fail
  1820. </summary>
  1821. </member>
  1822. <member name="F:StackExchange.Redis.ClientFlags.Closing">
  1823. <summary>
  1824. connection to be closed after writing entire reply
  1825. </summary>
  1826. </member>
  1827. <member name="F:StackExchange.Redis.ClientFlags.Unblocked">
  1828. <summary>
  1829. the client is unblocked
  1830. </summary>
  1831. </member>
  1832. <member name="F:StackExchange.Redis.ClientFlags.CloseASAP">
  1833. <summary>
  1834. connection to be closed ASAP
  1835. </summary>
  1836. </member>
  1837. <member name="F:StackExchange.Redis.ClientFlags.PubSubSubscriber">
  1838. <summary>
  1839. the client is a Pub/Sub subscriber
  1840. </summary>
  1841. </member>
  1842. <member name="F:StackExchange.Redis.ClientFlags.ReadOnlyCluster">
  1843. <summary>
  1844. the client is in readonly mode against a cluster node
  1845. </summary>
  1846. </member>
  1847. <member name="F:StackExchange.Redis.ClientFlags.UnixDomainSocket">
  1848. <summary>
  1849. the client is connected via a Unix domain socket
  1850. </summary>
  1851. </member>
  1852. <member name="T:StackExchange.Redis.ClientType">
  1853. <summary>
  1854. The class of the connection
  1855. </summary>
  1856. </member>
  1857. <member name="F:StackExchange.Redis.ClientType.Normal">
  1858. <summary>
  1859. Regular connections, including MONITOR connections
  1860. </summary>
  1861. </member>
  1862. <member name="F:StackExchange.Redis.ClientType.Replica">
  1863. <summary>
  1864. Replication connections
  1865. </summary>
  1866. </member>
  1867. <member name="F:StackExchange.Redis.ClientType.Slave">
  1868. <summary>
  1869. Replication connections
  1870. </summary>
  1871. </member>
  1872. <member name="F:StackExchange.Redis.ClientType.PubSub">
  1873. <summary>
  1874. Subscription connections
  1875. </summary>
  1876. </member>
  1877. <member name="T:StackExchange.Redis.CommandFlags">
  1878. <summary>
  1879. Behaviour markers associated with a given command
  1880. </summary>
  1881. </member>
  1882. <member name="F:StackExchange.Redis.CommandFlags.None">
  1883. <summary>
  1884. Default behaviour.
  1885. </summary>
  1886. </member>
  1887. <member name="F:StackExchange.Redis.CommandFlags.HighPriority">
  1888. <summary>
  1889. From 2.0, this flag is not used
  1890. </summary>
  1891. </member>
  1892. <member name="F:StackExchange.Redis.CommandFlags.FireAndForget">
  1893. <summary>
  1894. The caller is not interested in the result; the caller will immediately receive a default-value
  1895. of the expected return type (this value is not indicative of anything at the server).
  1896. </summary>
  1897. </member>
  1898. <member name="F:StackExchange.Redis.CommandFlags.PreferMaster">
  1899. <summary>
  1900. This operation should be performed on the master if it is available, but read operations may
  1901. be performed on a replica if no master is available. This is the default option.
  1902. </summary>
  1903. </member>
  1904. <member name="F:StackExchange.Redis.CommandFlags.DemandMaster">
  1905. <summary>
  1906. This operation should only be performed on the master.
  1907. </summary>
  1908. </member>
  1909. <member name="F:StackExchange.Redis.CommandFlags.PreferSlave">
  1910. <summary>
  1911. This operation should be performed on the replica if it is available, but will be performed on
  1912. a master if no replicas are available. Suitable for read operations only.
  1913. </summary>
  1914. </member>
  1915. <member name="F:StackExchange.Redis.CommandFlags.PreferReplica">
  1916. <summary>
  1917. This operation should be performed on the replica if it is available, but will be performed on
  1918. a master if no replicas are available. Suitable for read operations only.
  1919. </summary>
  1920. </member>
  1921. <member name="F:StackExchange.Redis.CommandFlags.DemandReplica">
  1922. <summary>
  1923. This operation should only be performed on a replica. Suitable for read operations only.
  1924. </summary>
  1925. </member>
  1926. <member name="F:StackExchange.Redis.CommandFlags.DemandSlave">
  1927. <summary>
  1928. This operation should only be performed on a replica. Suitable for read operations only.
  1929. </summary>
  1930. </member>
  1931. <member name="F:StackExchange.Redis.CommandFlags.NoRedirect">
  1932. <summary>
  1933. Indicates that this operation should not be forwarded to other servers as a result of an ASK or MOVED response
  1934. </summary>
  1935. </member>
  1936. <member name="F:StackExchange.Redis.CommandFlags.NoScriptCache">
  1937. <summary>
  1938. Indicates that script-related operations should use EVAL, not SCRIPT LOAD + EVALSHA
  1939. </summary>
  1940. </member>
  1941. <member name="T:StackExchange.Redis.CommandStatus">
  1942. <summary>
  1943. track status of a command while communicating with Redis
  1944. </summary>
  1945. </member>
  1946. <member name="F:StackExchange.Redis.CommandStatus.Unknown">
  1947. <summary>
  1948. command status unknown
  1949. </summary>
  1950. </member>
  1951. <member name="F:StackExchange.Redis.CommandStatus.WaitingToBeSent">
  1952. <summary>
  1953. ConnectionMultiplexer has not yet started writing this command to redis
  1954. </summary>
  1955. </member>
  1956. <member name="F:StackExchange.Redis.CommandStatus.Sent">
  1957. <summary>
  1958. command has been sent to Redis
  1959. </summary>
  1960. </member>
  1961. <member name="T:StackExchange.Redis.ConnectionFailureType">
  1962. <summary>
  1963. The known types of connection failure
  1964. </summary>
  1965. </member>
  1966. <member name="F:StackExchange.Redis.ConnectionFailureType.None">
  1967. <summary>
  1968. This event is not a failure
  1969. </summary>
  1970. </member>
  1971. <member name="F:StackExchange.Redis.ConnectionFailureType.UnableToResolvePhysicalConnection">
  1972. <summary>
  1973. No viable connections were available for this operation
  1974. </summary>
  1975. </member>
  1976. <member name="F:StackExchange.Redis.ConnectionFailureType.SocketFailure">
  1977. <summary>
  1978. The socket for this connection failed
  1979. </summary>
  1980. </member>
  1981. <member name="F:StackExchange.Redis.ConnectionFailureType.AuthenticationFailure">
  1982. <summary>
  1983. Either SSL Stream or Redis authentication failed
  1984. </summary>
  1985. </member>
  1986. <member name="F:StackExchange.Redis.ConnectionFailureType.ProtocolFailure">
  1987. <summary>
  1988. An unexpected response was received from the server
  1989. </summary>
  1990. </member>
  1991. <member name="F:StackExchange.Redis.ConnectionFailureType.InternalFailure">
  1992. <summary>
  1993. An unknown internal error occurred
  1994. </summary>
  1995. </member>
  1996. <member name="F:StackExchange.Redis.ConnectionFailureType.SocketClosed">
  1997. <summary>
  1998. The socket was closed
  1999. </summary>
  2000. </member>
  2001. <member name="F:StackExchange.Redis.ConnectionFailureType.ConnectionDisposed">
  2002. <summary>
  2003. The socket was closed
  2004. </summary>
  2005. </member>
  2006. <member name="F:StackExchange.Redis.ConnectionFailureType.Loading">
  2007. <summary>
  2008. The database is loading and is not available for use
  2009. </summary>
  2010. </member>
  2011. <member name="F:StackExchange.Redis.ConnectionFailureType.UnableToConnect">
  2012. <summary>
  2013. It has not been possible to create an intial connection to the redis server(s)
  2014. </summary>
  2015. </member>
  2016. <member name="T:StackExchange.Redis.ConnectionType">
  2017. <summary>
  2018. The type of a connection
  2019. </summary>
  2020. </member>
  2021. <member name="F:StackExchange.Redis.ConnectionType.None">
  2022. <summary>
  2023. Not connection-type related
  2024. </summary>
  2025. </member>
  2026. <member name="F:StackExchange.Redis.ConnectionType.Interactive">
  2027. <summary>
  2028. An interactive connection handles request/response commands for accessing data on demand
  2029. </summary>
  2030. </member>
  2031. <member name="F:StackExchange.Redis.ConnectionType.Subscription">
  2032. <summary>
  2033. A subscriber connection recieves unsolicted messages from the server as pub/sub events occur
  2034. </summary>
  2035. </member>
  2036. <member name="T:StackExchange.Redis.Exclude">
  2037. <summary>
  2038. When performing a range query, by default the start / stop limits are inclusive;
  2039. however, both can also be specified separately as exclusive
  2040. </summary>
  2041. </member>
  2042. <member name="F:StackExchange.Redis.Exclude.None">
  2043. <summary>
  2044. Both start and stop are inclusive
  2045. </summary>
  2046. </member>
  2047. <member name="F:StackExchange.Redis.Exclude.Start">
  2048. <summary>
  2049. Start is exclusive, stop is inclusive
  2050. </summary>
  2051. </member>
  2052. <member name="F:StackExchange.Redis.Exclude.Stop">
  2053. <summary>
  2054. Start is inclusive, stop is exclusive
  2055. </summary>
  2056. </member>
  2057. <member name="F:StackExchange.Redis.Exclude.Both">
  2058. <summary>
  2059. Both start and stop are exclusive
  2060. </summary>
  2061. </member>
  2062. <member name="T:StackExchange.Redis.ExportOptions">
  2063. <summary>
  2064. Which settings to export
  2065. </summary>
  2066. </member>
  2067. <member name="F:StackExchange.Redis.ExportOptions.None">
  2068. <summary>
  2069. No options
  2070. </summary>
  2071. </member>
  2072. <member name="F:StackExchange.Redis.ExportOptions.Info">
  2073. <summary>
  2074. The output of INFO
  2075. </summary>
  2076. </member>
  2077. <member name="F:StackExchange.Redis.ExportOptions.Config">
  2078. <summary>
  2079. The output of CONFIG GET *
  2080. </summary>
  2081. </member>
  2082. <member name="F:StackExchange.Redis.ExportOptions.Client">
  2083. <summary>
  2084. The output of CLIENT LIST
  2085. </summary>
  2086. </member>
  2087. <member name="F:StackExchange.Redis.ExportOptions.Cluster">
  2088. <summary>
  2089. The output of CLUSTER NODES
  2090. </summary>
  2091. </member>
  2092. <member name="F:StackExchange.Redis.ExportOptions.All">
  2093. <summary>
  2094. Everything available
  2095. </summary>
  2096. </member>
  2097. <member name="T:StackExchange.Redis.GeoUnit">
  2098. <summary>
  2099. Units associated with Geo Commands
  2100. </summary>
  2101. </member>
  2102. <member name="F:StackExchange.Redis.GeoUnit.Meters">
  2103. <summary>
  2104. Meters
  2105. </summary>
  2106. </member>
  2107. <member name="F:StackExchange.Redis.GeoUnit.Kilometers">
  2108. <summary>
  2109. Kilometers
  2110. </summary>
  2111. </member>
  2112. <member name="F:StackExchange.Redis.GeoUnit.Miles">
  2113. <summary>
  2114. Miles
  2115. </summary>
  2116. </member>
  2117. <member name="F:StackExchange.Redis.GeoUnit.Feet">
  2118. <summary>
  2119. Feet
  2120. </summary>
  2121. </member>
  2122. <member name="T:StackExchange.Redis.MigrateOptions">
  2123. <summary>
  2124. Additional options for the MIGRATE command
  2125. </summary>
  2126. </member>
  2127. <member name="F:StackExchange.Redis.MigrateOptions.None">
  2128. <summary>
  2129. No options specified
  2130. </summary>
  2131. </member>
  2132. <member name="F:StackExchange.Redis.MigrateOptions.Copy">
  2133. <summary>
  2134. Do not remove the key from the local instance.
  2135. </summary>
  2136. </member>
  2137. <member name="F:StackExchange.Redis.MigrateOptions.Replace">
  2138. <summary>
  2139. Replace existing key on the remote instance.
  2140. </summary>
  2141. </member>
  2142. <member name="T:StackExchange.Redis.Order">
  2143. <summary>
  2144. The direction in which to sequence elements
  2145. </summary>
  2146. </member>
  2147. <member name="F:StackExchange.Redis.Order.Ascending">
  2148. <summary>
  2149. Ordered from low values to high values
  2150. </summary>
  2151. </member>
  2152. <member name="F:StackExchange.Redis.Order.Descending">
  2153. <summary>
  2154. Ordered from high values to low values
  2155. </summary>
  2156. </member>
  2157. <member name="T:StackExchange.Redis.Proxy">
  2158. <summary>
  2159. Specifies the proxy that is being used to communicate to redis
  2160. </summary>
  2161. </member>
  2162. <member name="F:StackExchange.Redis.Proxy.None">
  2163. <summary>
  2164. Direct communication to the redis server(s)
  2165. </summary>
  2166. </member>
  2167. <member name="F:StackExchange.Redis.Proxy.Twemproxy">
  2168. <summary>
  2169. Communication via <a href="https://github.com/twitter/twemproxy">twemproxy</a>
  2170. </summary>
  2171. </member>
  2172. <member name="T:StackExchange.Redis.RedisType">
  2173. <summary>
  2174. The intrinsinc data-types supported by redis
  2175. </summary>
  2176. <remarks>https://redis.io/topics/data-types</remarks>
  2177. </member>
  2178. <member name="F:StackExchange.Redis.RedisType.None">
  2179. <summary>
  2180. The specified key does not exist
  2181. </summary>
  2182. </member>
  2183. <member name="F:StackExchange.Redis.RedisType.String">
  2184. <summary>
  2185. Strings are the most basic kind of Redis value. Redis Strings are binary safe, this means that a Redis string can contain any kind of data, for instance a JPEG image or a serialized Ruby object.
  2186. A String value can be at max 512 Megabytes in length.
  2187. </summary>
  2188. <remarks>https://redis.io/commands#string</remarks>
  2189. </member>
  2190. <member name="F:StackExchange.Redis.RedisType.List">
  2191. <summary>
  2192. Redis Lists are simply lists of strings, sorted by insertion order. It is possible to add elements to a Redis List pushing new elements on the head (on the left) or on the tail (on the right) of the list.
  2193. </summary>
  2194. <remarks>https://redis.io/commands#list</remarks>
  2195. </member>
  2196. <member name="F:StackExchange.Redis.RedisType.Set">
  2197. <summary>
  2198. Redis Sets are an unordered collection of Strings. It is possible to add, remove, and test for existence of members in O(1) (constant time regardless of the number of elements contained inside the Set).
  2199. Redis Sets have the desirable property of not allowing repeated members. Adding the same element multiple times will result in a set having a single copy of this element. Practically speaking this means that adding a member does not require a check if exists then add operation.
  2200. </summary>
  2201. <remarks>https://redis.io/commands#set</remarks>
  2202. </member>
  2203. <member name="F:StackExchange.Redis.RedisType.SortedSet">
  2204. <summary>
  2205. Redis Sorted Sets are, similarly to Redis Sets, non repeating collections of Strings. The difference is that every member of a Sorted Set is associated with score, that is used in order to take the sorted set ordered, from the smallest to the greatest score. While members are unique, scores may be repeated.
  2206. </summary>
  2207. <remarks>https://redis.io/commands#sorted_set</remarks>
  2208. </member>
  2209. <member name="F:StackExchange.Redis.RedisType.Hash">
  2210. <summary>
  2211. Redis Hashes are maps between string fields and string values, so they are the perfect data type to represent objects (eg: A User with a number of fields like name, surname, age, and so forth)
  2212. </summary>
  2213. <remarks>https://redis.io/commands#hash</remarks>
  2214. </member>
  2215. <member name="F:StackExchange.Redis.RedisType.Stream">
  2216. <summary>
  2217. A Redis Stream is a data structure which models the behavior of an append only log but it has more
  2218. advanced features for manipulating the data contained within the stream. Each entry in a
  2219. stream contains a unique message ID and a list of name/value pairs containing the entry's data.
  2220. </summary>
  2221. <remarks>https://redis.io/commands#stream</remarks>
  2222. </member>
  2223. <member name="F:StackExchange.Redis.RedisType.Unknown">
  2224. <summary>
  2225. The data-type was not recognised by the client library
  2226. </summary>
  2227. </member>
  2228. <member name="T:StackExchange.Redis.ReplicationChangeOptions">
  2229. <summary>
  2230. Additional operations to perform when making a server a master
  2231. </summary>
  2232. </member>
  2233. <member name="F:StackExchange.Redis.ReplicationChangeOptions.None">
  2234. <summary>
  2235. No additional operations
  2236. </summary>
  2237. </member>
  2238. <member name="F:StackExchange.Redis.ReplicationChangeOptions.SetTiebreaker">
  2239. <summary>
  2240. Set the tie-breaker key on all available masters, to specify this server
  2241. </summary>
  2242. </member>
  2243. <member name="F:StackExchange.Redis.ReplicationChangeOptions.Broadcast">
  2244. <summary>
  2245. Broadcast to the pub-sub channel to listening clients to reconfigure themselves
  2246. </summary>
  2247. </member>
  2248. <member name="F:StackExchange.Redis.ReplicationChangeOptions.EnslaveSubordinates">
  2249. <summary>
  2250. Issue a REPLICAOF to all other known nodes, making this this master of all
  2251. </summary>
  2252. </member>
  2253. <member name="F:StackExchange.Redis.ReplicationChangeOptions.ReplicateToOtherEndpoints">
  2254. <summary>
  2255. Issue a REPLICAOF to all other known nodes, making this this master of all
  2256. </summary>
  2257. </member>
  2258. <member name="F:StackExchange.Redis.ReplicationChangeOptions.All">
  2259. <summary>
  2260. All additional operations
  2261. </summary>
  2262. </member>
  2263. <member name="T:StackExchange.Redis.ResultType">
  2264. <summary>
  2265. The underlying result type as defined by redis
  2266. </summary>
  2267. </member>
  2268. <member name="F:StackExchange.Redis.ResultType.None">
  2269. <summary>
  2270. No value was received
  2271. </summary>
  2272. </member>
  2273. <member name="F:StackExchange.Redis.ResultType.SimpleString">
  2274. <summary>
  2275. Basic strings typically represent status results such as "OK"
  2276. </summary>
  2277. </member>
  2278. <member name="F:StackExchange.Redis.ResultType.Error">
  2279. <summary>
  2280. Error strings represent invalid operation results from the server
  2281. </summary>
  2282. </member>
  2283. <member name="F:StackExchange.Redis.ResultType.Integer">
  2284. <summary>
  2285. Integers are returned for count operations and some integer-based increment operations
  2286. </summary>
  2287. </member>
  2288. <member name="F:StackExchange.Redis.ResultType.BulkString">
  2289. <summary>
  2290. Bulk strings represent typical user content values
  2291. </summary>
  2292. </member>
  2293. <member name="F:StackExchange.Redis.ResultType.MultiBulk">
  2294. <summary>
  2295. Multi-bulk replies represent complex results such as arrays
  2296. </summary>
  2297. </member>
  2298. <member name="T:StackExchange.Redis.RetransmissionReasonType">
  2299. <summary>
  2300. <para>
  2301. If an IProfiledCommand is a retransmission of a previous command, this enum
  2302. is used to indicate what prompted the retransmission.
  2303. </para>
  2304. <para>
  2305. This can be used to distinguish between transient causes (moving hashslots, joining nodes, etc.)
  2306. and incorrect routing.
  2307. </para>
  2308. </summary>
  2309. </member>
  2310. <member name="F:StackExchange.Redis.RetransmissionReasonType.None">
  2311. <summary>
  2312. No stated reason
  2313. </summary>
  2314. </member>
  2315. <member name="F:StackExchange.Redis.RetransmissionReasonType.Ask">
  2316. <summary>
  2317. Issued to investigate which node owns a key
  2318. </summary>
  2319. </member>
  2320. <member name="F:StackExchange.Redis.RetransmissionReasonType.Moved">
  2321. <summary>
  2322. A node has indicated that it does *not* own the given key
  2323. </summary>
  2324. </member>
  2325. <member name="T:StackExchange.Redis.SaveType">
  2326. <summary>
  2327. The type of save operation to perform
  2328. </summary>
  2329. </member>
  2330. <member name="F:StackExchange.Redis.SaveType.BackgroundRewriteAppendOnlyFile">
  2331. <summary>
  2332. Instruct Redis to start an Append Only File rewrite process. The rewrite will create a small optimized version of the current Append Only File.
  2333. </summary>
  2334. <remarks>https://redis.io/commands/bgrewriteaof</remarks>
  2335. </member>
  2336. <member name="F:StackExchange.Redis.SaveType.BackgroundSave">
  2337. <summary>
  2338. Save the DB in background. The OK code is immediately returned. Redis forks, the parent continues to serve the clients, the child saves the DB on disk then exits. A client my be able to check if the operation succeeded using the LASTSAVE command.
  2339. </summary>
  2340. <remarks>https://redis.io/commands/bgsave</remarks>
  2341. </member>
  2342. <member name="F:StackExchange.Redis.SaveType.ForegroundSave">
  2343. <summary>
  2344. Save the DB in foreground. This is almost never a good thing to do, and could cause significant blocking. Only do this if you know you need to save
  2345. </summary>
  2346. <remarks>https://redis.io/commands/save</remarks>
  2347. </member>
  2348. <member name="T:StackExchange.Redis.ServerType">
  2349. <summary>
  2350. Indicates the flavor of a particular redis server
  2351. </summary>
  2352. </member>
  2353. <member name="F:StackExchange.Redis.ServerType.Standalone">
  2354. <summary>
  2355. Classic redis-server server
  2356. </summary>
  2357. </member>
  2358. <member name="F:StackExchange.Redis.ServerType.Sentinel">
  2359. <summary>
  2360. Monitoring/configuration redis-sentinel server
  2361. </summary>
  2362. </member>
  2363. <member name="F:StackExchange.Redis.ServerType.Cluster">
  2364. <summary>
  2365. Distributed redis-cluster server
  2366. </summary>
  2367. </member>
  2368. <member name="F:StackExchange.Redis.ServerType.Twemproxy">
  2369. <summary>
  2370. Distributed redis installation via <a href="https://github.com/twitter/twemproxy">twemproxy</a>
  2371. </summary>
  2372. </member>
  2373. <member name="T:StackExchange.Redis.SetOperation">
  2374. <summary>
  2375. Describes an algebraic set operation that can be performed to combine multiple sets
  2376. </summary>
  2377. </member>
  2378. <member name="F:StackExchange.Redis.SetOperation.Union">
  2379. <summary>
  2380. Returns the members of the set resulting from the union of all the given sets.
  2381. </summary>
  2382. </member>
  2383. <member name="F:StackExchange.Redis.SetOperation.Intersect">
  2384. <summary>
  2385. Returns the members of the set resulting from the intersection of all the given sets.
  2386. </summary>
  2387. </member>
  2388. <member name="F:StackExchange.Redis.SetOperation.Difference">
  2389. <summary>
  2390. Returns the members of the set resulting from the difference between the first set and all the successive sets.
  2391. </summary>
  2392. </member>
  2393. <member name="T:StackExchange.Redis.ShutdownMode">
  2394. <summary>
  2395. Defines the persistence behaviour of the server during shutdown
  2396. </summary>
  2397. </member>
  2398. <member name="F:StackExchange.Redis.ShutdownMode.Default">
  2399. <summary>
  2400. The data is persisted if save points are configured
  2401. </summary>
  2402. </member>
  2403. <member name="F:StackExchange.Redis.ShutdownMode.Never">
  2404. <summary>
  2405. The data is NOT persisted even if save points are configured
  2406. </summary>
  2407. </member>
  2408. <member name="F:StackExchange.Redis.ShutdownMode.Always">
  2409. <summary>
  2410. The data is persisted even if save points are NOT configured
  2411. </summary>
  2412. </member>
  2413. <member name="T:StackExchange.Redis.SortType">
  2414. <summary>
  2415. Specifies how to compare elements for sorting
  2416. </summary>
  2417. </member>
  2418. <member name="F:StackExchange.Redis.SortType.Numeric">
  2419. <summary>
  2420. Elements are interpreted as a double-precision floating point number and sorted numerically
  2421. </summary>
  2422. </member>
  2423. <member name="F:StackExchange.Redis.SortType.Alphabetic">
  2424. <summary>
  2425. Elements are sorted using their alphabetic form (Redis is UTF-8 aware as long as the !LC_COLLATE environment variable is set at the server)
  2426. </summary>
  2427. </member>
  2428. <member name="T:StackExchange.Redis.When">
  2429. <summary>
  2430. Indicates when this operation should be performed (only some variations are legal in a given context)
  2431. </summary>
  2432. </member>
  2433. <member name="F:StackExchange.Redis.When.Always">
  2434. <summary>
  2435. The operation should occur whether or not there is an existing value
  2436. </summary>
  2437. </member>
  2438. <member name="F:StackExchange.Redis.When.Exists">
  2439. <summary>
  2440. The operation should only occur when there is an existing value
  2441. </summary>
  2442. </member>
  2443. <member name="F:StackExchange.Redis.When.NotExists">
  2444. <summary>
  2445. The operation should only occur when there is not an existing value
  2446. </summary>
  2447. </member>
  2448. <member name="T:StackExchange.Redis.RedisCommandException">
  2449. <summary>
  2450. Indicates that a command was illegal and was not sent to the server
  2451. </summary>
  2452. </member>
  2453. <member name="M:StackExchange.Redis.RedisCommandException.#ctor(System.String)">
  2454. <summary>
  2455. Creates a new <see cref="T:StackExchange.Redis.RedisCommandException"/>.
  2456. </summary>
  2457. <param name="message">The message for the exception.</param>
  2458. </member>
  2459. <member name="M:StackExchange.Redis.RedisCommandException.#ctor(System.String,System.Exception)">
  2460. <summary>
  2461. Creates a new <see cref="T:StackExchange.Redis.RedisCommandException"/>.
  2462. </summary>
  2463. <param name="message">The message for the exception.</param>
  2464. <param name="innerException">The inner exception.</param>
  2465. </member>
  2466. <member name="T:StackExchange.Redis.RedisTimeoutException">
  2467. <summary>
  2468. Indicates the time allotted for a command or operation has expired.
  2469. </summary>
  2470. </member>
  2471. <member name="M:StackExchange.Redis.RedisTimeoutException.#ctor(System.String,StackExchange.Redis.CommandStatus)">
  2472. <summary>
  2473. Creates a new <see cref="T:StackExchange.Redis.RedisTimeoutException"/>.
  2474. </summary>
  2475. <param name="message">The message for the exception.</param>
  2476. <param name="commandStatus">The command status, as of when the timeout happened.</param>
  2477. </member>
  2478. <member name="P:StackExchange.Redis.RedisTimeoutException.Commandstatus">
  2479. <summary>
  2480. status of the command while communicating with Redis
  2481. </summary>
  2482. </member>
  2483. <member name="M:StackExchange.Redis.RedisTimeoutException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  2484. <summary>
  2485. Serialization implementation; not intended for general usage
  2486. </summary>
  2487. <param name="info">Serialization info.</param>
  2488. <param name="context">Serialization context.</param>
  2489. </member>
  2490. <member name="T:StackExchange.Redis.RedisConnectionException">
  2491. <summary>
  2492. Indicates a connection fault when communicating with redis
  2493. </summary>
  2494. </member>
  2495. <member name="M:StackExchange.Redis.RedisConnectionException.#ctor(StackExchange.Redis.ConnectionFailureType,System.String)">
  2496. <summary>
  2497. Creates a new <see cref="T:StackExchange.Redis.RedisConnectionException"/>.
  2498. </summary>
  2499. <param name="failureType">The type of connection failure.</param>
  2500. <param name="message">The message for the exception.</param>
  2501. </member>
  2502. <member name="M:StackExchange.Redis.RedisConnectionException.#ctor(StackExchange.Redis.ConnectionFailureType,System.String,System.Exception)">
  2503. <summary>
  2504. Creates a new <see cref="T:StackExchange.Redis.RedisConnectionException"/>.
  2505. </summary>
  2506. <param name="failureType">The type of connection failure.</param>
  2507. <param name="message">The message for the exception.</param>
  2508. <param name="innerException">The inner exception.</param>
  2509. </member>
  2510. <member name="M:StackExchange.Redis.RedisConnectionException.#ctor(StackExchange.Redis.ConnectionFailureType,System.String,System.Exception,StackExchange.Redis.CommandStatus)">
  2511. <summary>
  2512. Creates a new <see cref="T:StackExchange.Redis.RedisConnectionException"/>.
  2513. </summary>
  2514. <param name="failureType">The type of connection failure.</param>
  2515. <param name="message">The message for the exception.</param>
  2516. <param name="innerException">The inner exception.</param>
  2517. <param name="commandStatus">The status of the command.</param>
  2518. </member>
  2519. <member name="P:StackExchange.Redis.RedisConnectionException.FailureType">
  2520. <summary>
  2521. The type of connection failure
  2522. </summary>
  2523. </member>
  2524. <member name="P:StackExchange.Redis.RedisConnectionException.CommandStatus">
  2525. <summary>
  2526. status of the command while communicating with Redis
  2527. </summary>
  2528. </member>
  2529. <member name="M:StackExchange.Redis.RedisConnectionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  2530. <summary>
  2531. Serialization implementation; not intended for general usage
  2532. </summary>
  2533. <param name="info">Serialization info.</param>
  2534. <param name="context">Serialization context.</param>
  2535. </member>
  2536. <member name="T:StackExchange.Redis.RedisException">
  2537. <summary>
  2538. Indicates an issue communicating with redis
  2539. </summary>
  2540. </member>
  2541. <member name="M:StackExchange.Redis.RedisException.#ctor(System.String)">
  2542. <summary>
  2543. Creates a new <see cref="T:StackExchange.Redis.RedisException"/>.
  2544. </summary>
  2545. <param name="message">The message for the exception.</param>
  2546. </member>
  2547. <member name="M:StackExchange.Redis.RedisException.#ctor(System.String,System.Exception)">
  2548. <summary>
  2549. Creates a new <see cref="T:StackExchange.Redis.RedisException"/>.
  2550. </summary>
  2551. <param name="message">The message for the exception.</param>
  2552. <param name="innerException">The inner exception.</param>
  2553. </member>
  2554. <member name="M:StackExchange.Redis.RedisException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
  2555. <summary>
  2556. Deserialization constructor; not intended for general usage
  2557. </summary>
  2558. <param name="info">Serialization info.</param>
  2559. <param name="ctx">Serialization context.</param>
  2560. </member>
  2561. <member name="T:StackExchange.Redis.RedisServerException">
  2562. <summary>
  2563. Indicates an exception raised by a redis server
  2564. </summary>
  2565. </member>
  2566. <member name="M:StackExchange.Redis.RedisServerException.#ctor(System.String)">
  2567. <summary>
  2568. Creates a new <see cref="T:StackExchange.Redis.RedisServerException"/>.
  2569. </summary>
  2570. <param name="message">The message for the exception.</param>
  2571. </member>
  2572. <member name="T:StackExchange.Redis.ExponentialRetry">
  2573. <summary>
  2574. Represents a retry policy that performs retries, using a randomized exponential back off scheme to determine the interval between retries.
  2575. </summary>
  2576. </member>
  2577. <member name="M:StackExchange.Redis.ExponentialRetry.#ctor(System.Int32)">
  2578. <summary>
  2579. Initializes a new instance using the specified back off interval with default maxDeltaBackOffMilliseconds of 10 seconds
  2580. </summary>
  2581. <param name="deltaBackOffMilliseconds">time in milliseconds for the back-off interval between retries</param>
  2582. </member>
  2583. <member name="M:StackExchange.Redis.ExponentialRetry.#ctor(System.Int32,System.Int32)">
  2584. <summary>
  2585. Initializes a new instance using the specified back off interval.
  2586. </summary>
  2587. <param name="deltaBackOffMilliseconds">time in milliseconds for the back-off interval between retries</param>
  2588. <param name="maxDeltaBackOffMilliseconds">time in milliseconds for the maximum value that the back-off interval can exponentailly grow upto</param>
  2589. </member>
  2590. <member name="M:StackExchange.Redis.ExponentialRetry.ShouldRetry(System.Int64,System.Int32)">
  2591. <summary>
  2592. This method is called by the ConnectionMultiplexer to determine if a reconnect operation can be retried now.
  2593. </summary>
  2594. <param name="currentRetryCount">The number of times reconnect retries have already been made by the ConnectionMultiplexer while it was in the connecting state</param>
  2595. <param name="timeElapsedMillisecondsSinceLastRetry">Total elapsed time in milliseconds since the last reconnect retry was made</param>
  2596. </member>
  2597. <member name="T:StackExchange.Redis.ExtensionMethods">
  2598. <summary>
  2599. Utility methods
  2600. </summary>
  2601. </member>
  2602. <member name="M:StackExchange.Redis.ExtensionMethods.ToStringDictionary(StackExchange.Redis.HashEntry[])">
  2603. <summary>
  2604. Create a dictionary from an array of HashEntry values
  2605. </summary>
  2606. <param name="hash">The entry to convert to a dictionary.</param>
  2607. </member>
  2608. <member name="M:StackExchange.Redis.ExtensionMethods.ToDictionary(StackExchange.Redis.HashEntry[])">
  2609. <summary>
  2610. Create a dictionary from an array of HashEntry values
  2611. </summary>
  2612. <param name="hash">The entry to convert to a dictionary.</param>
  2613. </member>
  2614. <member name="M:StackExchange.Redis.ExtensionMethods.ToStringDictionary(StackExchange.Redis.SortedSetEntry[])">
  2615. <summary>
  2616. Create a dictionary from an array of SortedSetEntry values
  2617. </summary>
  2618. <param name="sortedSet">The set entries to convert to a dictionary.</param>
  2619. </member>
  2620. <member name="M:StackExchange.Redis.ExtensionMethods.ToDictionary(StackExchange.Redis.SortedSetEntry[])">
  2621. <summary>
  2622. Create a dictionary from an array of SortedSetEntry values
  2623. </summary>
  2624. <param name="sortedSet">The set entries to convert to a dictionary.</param>
  2625. </member>
  2626. <member name="M:StackExchange.Redis.ExtensionMethods.ToStringDictionary(System.Collections.Generic.KeyValuePair{StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue}[])">
  2627. <summary>
  2628. Create a dictionary from an array of key/value pairs
  2629. </summary>
  2630. <param name="pairs">The pairs to convert to a dictionary.</param>
  2631. </member>
  2632. <member name="M:StackExchange.Redis.ExtensionMethods.ToDictionary(System.Collections.Generic.KeyValuePair{StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue}[])">
  2633. <summary>
  2634. Create a dictionary from an array of key/value pairs
  2635. </summary>
  2636. <param name="pairs">The pairs to convert to a dictionary.</param>
  2637. </member>
  2638. <member name="M:StackExchange.Redis.ExtensionMethods.ToDictionary(System.Collections.Generic.KeyValuePair{System.String,System.String}[])">
  2639. <summary>
  2640. Create a dictionary from an array of string pairs
  2641. </summary>
  2642. <param name="pairs">The pairs to convert to a dictionary.</param>
  2643. </member>
  2644. <member name="M:StackExchange.Redis.ExtensionMethods.ToRedisValueArray(System.String[])">
  2645. <summary>
  2646. Create an array of RedisValues from an array of strings.
  2647. </summary>
  2648. <param name="values">The string array to convert to RedisValues</param>
  2649. </member>
  2650. <member name="M:StackExchange.Redis.ExtensionMethods.ToStringArray(StackExchange.Redis.RedisValue[])">
  2651. <summary>
  2652. Create an array of strings from an array of values
  2653. </summary>
  2654. <param name="values">The values to convert to an array.</param>
  2655. </member>
  2656. <member name="M:StackExchange.Redis.ExtensionMethods.AsStream(StackExchange.Redis.Lease{System.Byte},System.Boolean)">
  2657. <summary>
  2658. Represent a byte-Lease as a read-only Stream
  2659. </summary>
  2660. <param name="bytes">The lease upon which to base the stream</param>
  2661. <param name="ownsLease">If true, disposing the stream also disposes the lease</param>
  2662. </member>
  2663. <member name="M:StackExchange.Redis.ExtensionMethods.DecodeString(StackExchange.Redis.Lease{System.Byte},System.Text.Encoding)">
  2664. <summary>
  2665. Decode a byte-Lease as a String, optionally specifying the encoding (UTF-8 if omitted)
  2666. </summary>
  2667. <param name="bytes">The bytes to decode</param>
  2668. <param name="encoding">The encoding to use</param>
  2669. </member>
  2670. <member name="M:StackExchange.Redis.ExtensionMethods.DecodeLease(StackExchange.Redis.Lease{System.Byte},System.Text.Encoding)">
  2671. <summary>
  2672. Decode a byte-Lease as a String, optionally specifying the encoding (UTF-8 if omitted)
  2673. </summary>
  2674. <param name="bytes">The bytes to decode</param>
  2675. <param name="encoding">The encoding to use</param>
  2676. </member>
  2677. <member name="T:StackExchange.Redis.GeoRadiusOptions">
  2678. <summary>
  2679. GeoRadius command options.
  2680. </summary>
  2681. </member>
  2682. <member name="F:StackExchange.Redis.GeoRadiusOptions.None">
  2683. <summary>
  2684. No Options
  2685. </summary>
  2686. </member>
  2687. <member name="F:StackExchange.Redis.GeoRadiusOptions.WithCoordinates">
  2688. <summary>
  2689. Redis will return the coordinates of any results.
  2690. </summary>
  2691. </member>
  2692. <member name="F:StackExchange.Redis.GeoRadiusOptions.WithDistance">
  2693. <summary>
  2694. Redis will return the distance from center for all results.
  2695. </summary>
  2696. </member>
  2697. <member name="F:StackExchange.Redis.GeoRadiusOptions.WithGeoHash">
  2698. <summary>
  2699. Redis will return the geo hash value as an integer. (This is the score in the sorted set)
  2700. </summary>
  2701. </member>
  2702. <member name="F:StackExchange.Redis.GeoRadiusOptions.Default">
  2703. <summary>
  2704. Populates the commonly used values from the entry (the integer hash is not returned as it is not commonly useful)
  2705. </summary>
  2706. </member>
  2707. <member name="T:StackExchange.Redis.GeoRadiusResult">
  2708. <summary>
  2709. The result of a GeoRadius command.
  2710. </summary>
  2711. </member>
  2712. <member name="M:StackExchange.Redis.GeoRadiusResult.ToString">
  2713. <summary>
  2714. Indicate the member being represented
  2715. </summary>
  2716. </member>
  2717. <member name="P:StackExchange.Redis.GeoRadiusResult.Member">
  2718. <summary>
  2719. The matched member.
  2720. </summary>
  2721. </member>
  2722. <member name="P:StackExchange.Redis.GeoRadiusResult.Distance">
  2723. <summary>
  2724. The distance of the matched member from the center of the geo radius command.
  2725. </summary>
  2726. </member>
  2727. <member name="P:StackExchange.Redis.GeoRadiusResult.Hash">
  2728. <summary>
  2729. The hash value of the matched member as an integer. (The key in the sorted set)
  2730. </summary>
  2731. <remarks>Note that this is not the same as the hash returned from GeoHash</remarks>
  2732. </member>
  2733. <member name="P:StackExchange.Redis.GeoRadiusResult.Position">
  2734. <summary>
  2735. The coordinates of the matched member.
  2736. </summary>
  2737. </member>
  2738. <member name="M:StackExchange.Redis.GeoRadiusResult.#ctor(StackExchange.Redis.RedisValue@,System.Nullable{System.Double},System.Nullable{System.Int64},System.Nullable{StackExchange.Redis.GeoPosition})">
  2739. <summary>
  2740. Returns a new GeoRadiusResult
  2741. </summary>
  2742. <param name="member">The value from the result.</param>
  2743. <param name="distance">Tthe distance from the result.</param>
  2744. <param name="hash">The hash of the result.</param>
  2745. <param name="position">The geo position of the result.</param>
  2746. </member>
  2747. <member name="T:StackExchange.Redis.GeoPosition">
  2748. <summary>
  2749. Describes the longitude and latitude of a GeoEntry
  2750. </summary>
  2751. </member>
  2752. <member name="P:StackExchange.Redis.GeoPosition.Latitude">
  2753. <summary>
  2754. The Latitude of the GeoPosition
  2755. </summary>
  2756. </member>
  2757. <member name="P:StackExchange.Redis.GeoPosition.Longitude">
  2758. <summary>
  2759. The Logitude of the GeoPosition
  2760. </summary>
  2761. </member>
  2762. <member name="M:StackExchange.Redis.GeoPosition.#ctor(System.Double,System.Double)">
  2763. <summary>
  2764. Creates a new GeoPosition
  2765. </summary>
  2766. <param name="longitude"></param>
  2767. <param name="latitude"></param>
  2768. </member>
  2769. <member name="M:StackExchange.Redis.GeoPosition.ToString">
  2770. <summary>
  2771. See Object.ToString()
  2772. </summary>
  2773. </member>
  2774. <member name="M:StackExchange.Redis.GeoPosition.GetHashCode">
  2775. <summary>
  2776. See Object.GetHashCode()
  2777. Diagonals not an issue in the case of lat/long
  2778. </summary>
  2779. <remarks>
  2780. Diagonals are not an issue in the case of lat/long.
  2781. </remarks>
  2782. </member>
  2783. <member name="M:StackExchange.Redis.GeoPosition.Equals(System.Object)">
  2784. <summary>
  2785. Compares two values for equality
  2786. </summary>
  2787. <param name="obj">The <see cref="T:StackExchange.Redis.GeoPosition"/> to compare to.</param>
  2788. </member>
  2789. <member name="M:StackExchange.Redis.GeoPosition.Equals(StackExchange.Redis.GeoPosition)">
  2790. <summary>
  2791. Compares two values for equality
  2792. </summary>
  2793. <param name="other">The <see cref="T:StackExchange.Redis.GeoPosition"/> to compare to.</param>
  2794. </member>
  2795. <member name="M:StackExchange.Redis.GeoPosition.op_Equality(StackExchange.Redis.GeoPosition,StackExchange.Redis.GeoPosition)">
  2796. <summary>
  2797. Compares two values for equality
  2798. </summary>
  2799. <param name="x">The first position to compare.</param>
  2800. <param name="y">The second position to compare.</param>
  2801. </member>
  2802. <member name="M:StackExchange.Redis.GeoPosition.op_Inequality(StackExchange.Redis.GeoPosition,StackExchange.Redis.GeoPosition)">
  2803. <summary>
  2804. Compares two values for non-equality
  2805. </summary>
  2806. <param name="x">The first position to compare.</param>
  2807. <param name="y">The second position to compare.</param>
  2808. </member>
  2809. <member name="T:StackExchange.Redis.GeoEntry">
  2810. <summary>
  2811. Describes a GeoEntry element with the corresponding value
  2812. GeoEntries are stored in redis as SortedSetEntries
  2813. </summary>
  2814. </member>
  2815. <member name="P:StackExchange.Redis.GeoEntry.Member">
  2816. <summary>
  2817. The name of the geo entry
  2818. </summary>
  2819. </member>
  2820. <member name="P:StackExchange.Redis.GeoEntry.Position">
  2821. <summary>
  2822. Describes the longitude and latitude of a GeoEntry
  2823. </summary>
  2824. </member>
  2825. <member name="M:StackExchange.Redis.GeoEntry.#ctor(System.Double,System.Double,StackExchange.Redis.RedisValue)">
  2826. <summary>
  2827. Initializes a GeoEntry value
  2828. </summary>
  2829. <param name="longitude">The longitude position to use.</param>
  2830. <param name="latitude">The latitude position to use.</param>
  2831. <param name="member">The value to store for this position.</param>
  2832. </member>
  2833. <member name="P:StackExchange.Redis.GeoEntry.Longitude">
  2834. <summary>
  2835. The longitude of the geo entry
  2836. </summary>
  2837. </member>
  2838. <member name="P:StackExchange.Redis.GeoEntry.Latitude">
  2839. <summary>
  2840. The latitude of the geo entry
  2841. </summary>
  2842. </member>
  2843. <member name="M:StackExchange.Redis.GeoEntry.ToString">
  2844. <summary>
  2845. See Object.ToString()
  2846. </summary>
  2847. </member>
  2848. <member name="M:StackExchange.Redis.GeoEntry.GetHashCode">
  2849. <summary>
  2850. See Object.GetHashCode()
  2851. </summary>
  2852. </member>
  2853. <member name="M:StackExchange.Redis.GeoEntry.Equals(System.Object)">
  2854. <summary>
  2855. Compares two values for equality
  2856. </summary>
  2857. <param name="obj">The <see cref="T:StackExchange.Redis.GeoEntry"/> to compare to.</param>
  2858. </member>
  2859. <member name="M:StackExchange.Redis.GeoEntry.Equals(StackExchange.Redis.GeoEntry)">
  2860. <summary>
  2861. Compares two values for equality
  2862. </summary>
  2863. <param name="other">The <see cref="T:StackExchange.Redis.GeoEntry"/> to compare to.</param>
  2864. </member>
  2865. <member name="M:StackExchange.Redis.GeoEntry.op_Equality(StackExchange.Redis.GeoEntry,StackExchange.Redis.GeoEntry)">
  2866. <summary>
  2867. Compares two values for equality
  2868. </summary>
  2869. <param name="x">The first entry to compare.</param>
  2870. <param name="y">The second entry to compare.</param>
  2871. </member>
  2872. <member name="M:StackExchange.Redis.GeoEntry.op_Inequality(StackExchange.Redis.GeoEntry,StackExchange.Redis.GeoEntry)">
  2873. <summary>
  2874. Compares two values for non-equality
  2875. </summary>
  2876. <param name="x">The first entry to compare.</param>
  2877. <param name="y">The second entry to compare.</param>
  2878. </member>
  2879. <member name="T:StackExchange.Redis.HashEntry">
  2880. <summary>
  2881. Describes a hash-field (a name/value pair)
  2882. </summary>
  2883. </member>
  2884. <member name="M:StackExchange.Redis.HashEntry.#ctor(StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue)">
  2885. <summary>
  2886. Initializes a <see cref="T:StackExchange.Redis.HashEntry"/> value.
  2887. </summary>
  2888. <param name="name">The name for this hash entry.</param>
  2889. <param name="value">The value for this hash entry.</param>
  2890. </member>
  2891. <member name="P:StackExchange.Redis.HashEntry.Name">
  2892. <summary>
  2893. The name of the hash field
  2894. </summary>
  2895. </member>
  2896. <member name="P:StackExchange.Redis.HashEntry.Value">
  2897. <summary>
  2898. The value of the hash field
  2899. </summary>
  2900. </member>
  2901. <member name="P:StackExchange.Redis.HashEntry.Key">
  2902. <summary>
  2903. The name of the hash field
  2904. </summary>
  2905. </member>
  2906. <member name="M:StackExchange.Redis.HashEntry.op_Implicit(StackExchange.Redis.HashEntry)~System.Collections.Generic.KeyValuePair{StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue}">
  2907. <summary>
  2908. Converts to a key/value pair
  2909. </summary>
  2910. <param name="value">The <see cref="T:StackExchange.Redis.HashEntry"/> to create a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> from.</param>
  2911. </member>
  2912. <member name="M:StackExchange.Redis.HashEntry.op_Implicit(System.Collections.Generic.KeyValuePair{StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue})~StackExchange.Redis.HashEntry">
  2913. <summary>
  2914. Converts from a key/value pair
  2915. </summary>
  2916. <param name="value">The <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to get a <see cref="T:StackExchange.Redis.HashEntry"/> from.</param>
  2917. </member>
  2918. <member name="M:StackExchange.Redis.HashEntry.ToString">
  2919. <summary>
  2920. See Object.ToString()
  2921. </summary>
  2922. </member>
  2923. <member name="M:StackExchange.Redis.HashEntry.GetHashCode">
  2924. <summary>
  2925. See Object.GetHashCode()
  2926. </summary>
  2927. </member>
  2928. <member name="M:StackExchange.Redis.HashEntry.Equals(System.Object)">
  2929. <summary>
  2930. Compares two values for equality.
  2931. </summary>
  2932. <param name="obj">The <see cref="T:StackExchange.Redis.HashEntry"/> to compare to.</param>
  2933. </member>
  2934. <member name="M:StackExchange.Redis.HashEntry.Equals(StackExchange.Redis.HashEntry)">
  2935. <summary>
  2936. Compares two values for equality.
  2937. </summary>
  2938. <param name="other">The <see cref="T:StackExchange.Redis.HashEntry"/> to compare to.</param>
  2939. </member>
  2940. <member name="M:StackExchange.Redis.HashEntry.op_Equality(StackExchange.Redis.HashEntry,StackExchange.Redis.HashEntry)">
  2941. <summary>
  2942. Compares two values for equality
  2943. </summary>
  2944. <param name="x">The first <see cref="T:StackExchange.Redis.HashEntry"/> to compare.</param>
  2945. <param name="y">The second <see cref="T:StackExchange.Redis.HashEntry"/> to compare.</param>
  2946. </member>
  2947. <member name="M:StackExchange.Redis.HashEntry.op_Inequality(StackExchange.Redis.HashEntry,StackExchange.Redis.HashEntry)">
  2948. <summary>
  2949. Compares two values for non-equality
  2950. </summary>
  2951. <param name="x">The first <see cref="T:StackExchange.Redis.HashEntry"/> to compare.</param>
  2952. <param name="y">The second <see cref="T:StackExchange.Redis.HashEntry"/> to compare.</param>
  2953. </member>
  2954. <member name="T:StackExchange.Redis.HashSlotMovedEventArgs">
  2955. <summary>
  2956. Contains information about individual hash-slot relocations
  2957. </summary>
  2958. </member>
  2959. <member name="P:StackExchange.Redis.HashSlotMovedEventArgs.HashSlot">
  2960. <summary>
  2961. The hash-slot that was relocated
  2962. </summary>
  2963. </member>
  2964. <member name="P:StackExchange.Redis.HashSlotMovedEventArgs.OldEndPoint">
  2965. <summary>
  2966. The old endpoint for this hash-slot (if known)
  2967. </summary>
  2968. </member>
  2969. <member name="P:StackExchange.Redis.HashSlotMovedEventArgs.NewEndPoint">
  2970. <summary>
  2971. The new endpoint for this hash-slot (if known)
  2972. </summary>
  2973. </member>
  2974. <member name="M:StackExchange.Redis.HashSlotMovedEventArgs.#ctor(System.Object,System.Int32,System.Net.EndPoint,System.Net.EndPoint)">
  2975. <summary>
  2976. This constructor is only for testing purposes.
  2977. </summary>
  2978. <param name="sender">The source of the event.</param>
  2979. <param name="hashSlot">Hash slot.</param>
  2980. <param name="old">Old endpoint.</param>
  2981. <param name="new">New endpoint.</param>
  2982. </member>
  2983. <member name="T:StackExchange.Redis.IBatch">
  2984. <summary>
  2985. Represents a block of operations that will be sent to the server together;
  2986. this can be useful to reduce packet fragmentation on slow connections - it
  2987. can improve the time to get *all* the operations processed, with the trade-off
  2988. of a slower time to get the *first* operation processed; this is usually
  2989. a good thing. Unless this batch is a <b>transaction</b>, there is no guarantee
  2990. that these operations will be processed either contiguously or atomically by the server.
  2991. </summary>
  2992. </member>
  2993. <member name="M:StackExchange.Redis.IBatch.Execute">
  2994. <summary>
  2995. Execute the batch operation, sending all queued commands to the server.
  2996. Note that this operation is neither synchronous nor truly asyncronous - it
  2997. simply enqueues the buffered messages. To check on completion, you should
  2998. check the individual responses.
  2999. </summary>
  3000. </member>
  3001. <member name="T:StackExchange.Redis.IConnectionMultiplexer">
  3002. <summary>
  3003. Represents the abstract multiplexer API
  3004. </summary>
  3005. </member>
  3006. <member name="P:StackExchange.Redis.IConnectionMultiplexer.ClientName">
  3007. <summary>
  3008. Gets the client-name that will be used on all new connections
  3009. </summary>
  3010. </member>
  3011. <member name="P:StackExchange.Redis.IConnectionMultiplexer.Configuration">
  3012. <summary>
  3013. Gets the configuration of the connection
  3014. </summary>
  3015. </member>
  3016. <member name="P:StackExchange.Redis.IConnectionMultiplexer.TimeoutMilliseconds">
  3017. <summary>
  3018. Gets the timeout associated with the connections
  3019. </summary>
  3020. </member>
  3021. <member name="P:StackExchange.Redis.IConnectionMultiplexer.OperationCount">
  3022. <summary>
  3023. The number of operations that have been performed on all connections
  3024. </summary>
  3025. </member>
  3026. <member name="P:StackExchange.Redis.IConnectionMultiplexer.PreserveAsyncOrder">
  3027. <summary>
  3028. Gets or sets whether asynchronous operations should be invoked in a way that guarantees their original delivery order
  3029. </summary>
  3030. </member>
  3031. <member name="P:StackExchange.Redis.IConnectionMultiplexer.IsConnected">
  3032. <summary>
  3033. Indicates whether any servers are connected
  3034. </summary>
  3035. </member>
  3036. <member name="P:StackExchange.Redis.IConnectionMultiplexer.IsConnecting">
  3037. <summary>
  3038. Indicates whether any servers are connected
  3039. </summary>
  3040. </member>
  3041. <member name="P:StackExchange.Redis.IConnectionMultiplexer.IncludeDetailInExceptions">
  3042. <summary>
  3043. Should exceptions include identifiable details? (key names, additional .Data annotations)
  3044. </summary>
  3045. </member>
  3046. <member name="P:StackExchange.Redis.IConnectionMultiplexer.StormLogThreshold">
  3047. <summary>
  3048. Limit at which to start recording unusual busy patterns (only one log will be retained at a time;
  3049. set to a negative value to disable this feature)
  3050. </summary>
  3051. </member>
  3052. <member name="M:StackExchange.Redis.IConnectionMultiplexer.RegisterProfiler(System.Func{StackExchange.Redis.Profiling.ProfilingSession})">
  3053. <summary>
  3054. Register a callback to provide an on-demand ambient session provider based on the
  3055. calling context; the implementing code is responsible for reliably resolving the same provider
  3056. based on ambient context, or returning null to not profile
  3057. </summary>
  3058. <param name="profilingSessionProvider">The profiling session provider.</param>
  3059. </member>
  3060. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetCounters">
  3061. <summary>
  3062. Get summary statistics associates with this server
  3063. </summary>
  3064. </member>
  3065. <member name="E:StackExchange.Redis.IConnectionMultiplexer.ErrorMessage">
  3066. <summary>
  3067. A server replied with an error message;
  3068. </summary>
  3069. </member>
  3070. <member name="E:StackExchange.Redis.IConnectionMultiplexer.ConnectionFailed">
  3071. <summary>
  3072. Raised whenever a physical connection fails
  3073. </summary>
  3074. </member>
  3075. <member name="E:StackExchange.Redis.IConnectionMultiplexer.InternalError">
  3076. <summary>
  3077. Raised whenever an internal error occurs (this is primarily for debugging)
  3078. </summary>
  3079. </member>
  3080. <member name="E:StackExchange.Redis.IConnectionMultiplexer.ConnectionRestored">
  3081. <summary>
  3082. Raised whenever a physical connection is established
  3083. </summary>
  3084. </member>
  3085. <member name="E:StackExchange.Redis.IConnectionMultiplexer.ConfigurationChanged">
  3086. <summary>
  3087. Raised when configuration changes are detected
  3088. </summary>
  3089. </member>
  3090. <member name="E:StackExchange.Redis.IConnectionMultiplexer.ConfigurationChangedBroadcast">
  3091. <summary>
  3092. Raised when nodes are explicitly requested to reconfigure via broadcast;
  3093. this usually means master/replica changes
  3094. </summary>
  3095. </member>
  3096. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetEndPoints(System.Boolean)">
  3097. <summary>
  3098. Gets all endpoints defined on the server
  3099. </summary>
  3100. <param name="configuredOnly">Whether to return only the explicitly configured endpoints.</param>
  3101. </member>
  3102. <member name="M:StackExchange.Redis.IConnectionMultiplexer.Wait(System.Threading.Tasks.Task)">
  3103. <summary>
  3104. Wait for a given asynchronous operation to complete (or timeout)
  3105. </summary>
  3106. <param name="task">The task to wait on.</param>
  3107. </member>
  3108. <member name="M:StackExchange.Redis.IConnectionMultiplexer.Wait``1(System.Threading.Tasks.Task{``0})">
  3109. <summary>
  3110. Wait for a given asynchronous operation to complete (or timeout)
  3111. </summary>
  3112. <typeparam name="T">The type in <paramref name="task"/>.</typeparam>
  3113. <param name="task">The task to wait on.</param>
  3114. </member>
  3115. <member name="M:StackExchange.Redis.IConnectionMultiplexer.WaitAll(System.Threading.Tasks.Task[])">
  3116. <summary>
  3117. Wait for the given asynchronous operations to complete (or timeout)
  3118. </summary>
  3119. <param name="tasks">The tasks to wait on.</param>
  3120. </member>
  3121. <member name="E:StackExchange.Redis.IConnectionMultiplexer.HashSlotMoved">
  3122. <summary>
  3123. Raised when a hash-slot has been relocated
  3124. </summary>
  3125. </member>
  3126. <member name="M:StackExchange.Redis.IConnectionMultiplexer.HashSlot(StackExchange.Redis.RedisKey)">
  3127. <summary>
  3128. Compute the hash-slot of a specified key
  3129. </summary>
  3130. <param name="key">The key to get a slot ID for.</param>
  3131. </member>
  3132. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetSubscriber(System.Object)">
  3133. <summary>
  3134. Obtain a pub/sub subscriber connection to the specified server
  3135. </summary>
  3136. <param name="asyncState">The async state to pass to the created <see cref="T:StackExchange.Redis.ISubscriber"/>.</param>
  3137. </member>
  3138. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetDatabase(System.Int32,System.Object)">
  3139. <summary>
  3140. Obtain an interactive connection to a database inside redis
  3141. </summary>
  3142. <param name="db">The database ID to get.</param>
  3143. <param name="asyncState">The async state to pass to the created <see cref="T:StackExchange.Redis.IDatabase"/>.</param>
  3144. </member>
  3145. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetServer(System.String,System.Int32,System.Object)">
  3146. <summary>
  3147. Obtain a configuration API for an individual server
  3148. </summary>
  3149. <param name="host">The host to get a server for.</param>
  3150. <param name="port">The specific port for <paramref name="host"/> to get a server for.</param>
  3151. <param name="asyncState">The async state to pass to the created <see cref="T:StackExchange.Redis.IServer"/>.</param>
  3152. </member>
  3153. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetServer(System.String,System.Object)">
  3154. <summary>
  3155. Obtain a configuration API for an individual server
  3156. </summary>
  3157. <param name="hostAndPort">The "host:port" string to get a server for.</param>
  3158. <param name="asyncState">The async state to pass to the created <see cref="T:StackExchange.Redis.IServer"/>.</param>
  3159. </member>
  3160. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetServer(System.Net.IPAddress,System.Int32)">
  3161. <summary>
  3162. Obtain a configuration API for an individual server
  3163. </summary>
  3164. <param name="host">The host to get a server for.</param>
  3165. <param name="port">The specific port for <paramref name="host"/> to get a server for.</param>
  3166. </member>
  3167. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetServer(System.Net.EndPoint,System.Object)">
  3168. <summary>
  3169. Obtain a configuration API for an individual server
  3170. </summary>
  3171. <param name="endpoint">The endpoint to get a server for.</param>
  3172. <param name="asyncState">The async state to pass to the created <see cref="T:StackExchange.Redis.IServer"/>.</param>
  3173. </member>
  3174. <member name="M:StackExchange.Redis.IConnectionMultiplexer.ConfigureAsync(System.IO.TextWriter)">
  3175. <summary>
  3176. Reconfigure the current connections based on the existing configuration
  3177. </summary>
  3178. <param name="log">The log to write output to.</param>
  3179. </member>
  3180. <member name="M:StackExchange.Redis.IConnectionMultiplexer.Configure(System.IO.TextWriter)">
  3181. <summary>
  3182. Reconfigure the current connections based on the existing configuration
  3183. </summary>
  3184. <param name="log">The log to write output to.</param>
  3185. </member>
  3186. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetStatus">
  3187. <summary>
  3188. Provides a text overview of the status of all connections
  3189. </summary>
  3190. </member>
  3191. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetStatus(System.IO.TextWriter)">
  3192. <summary>
  3193. Provides a text overview of the status of all connections
  3194. </summary>
  3195. <param name="log">The log to write output to.</param>
  3196. </member>
  3197. <member name="M:StackExchange.Redis.IConnectionMultiplexer.ToString">
  3198. <summary>
  3199. See Object.ToString()
  3200. </summary>
  3201. </member>
  3202. <member name="M:StackExchange.Redis.IConnectionMultiplexer.Close(System.Boolean)">
  3203. <summary>
  3204. Close all connections and release all resources associated with this object
  3205. </summary>
  3206. <param name="allowCommandsToComplete">Whether to allow in-queue commadns to complete first.</param>
  3207. </member>
  3208. <member name="M:StackExchange.Redis.IConnectionMultiplexer.CloseAsync(System.Boolean)">
  3209. <summary>
  3210. Close all connections and release all resources associated with this object
  3211. </summary>
  3212. <param name="allowCommandsToComplete">Whether to allow in-queue commadns to complete first.</param>
  3213. </member>
  3214. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetStormLog">
  3215. <summary>
  3216. Obtains the log of unusual busy patterns
  3217. </summary>
  3218. </member>
  3219. <member name="M:StackExchange.Redis.IConnectionMultiplexer.ResetStormLog">
  3220. <summary>
  3221. Resets the log of unusual busy patterns
  3222. </summary>
  3223. </member>
  3224. <member name="M:StackExchange.Redis.IConnectionMultiplexer.PublishReconfigure(StackExchange.Redis.CommandFlags)">
  3225. <summary>
  3226. Request all compatible clients to reconfigure or reconnect
  3227. </summary>
  3228. <param name="flags">The command flags to use.</param>
  3229. <returns>The number of instances known to have received the message (however, the actual number can be higher; returns -1 if the operation is pending)</returns>
  3230. </member>
  3231. <member name="M:StackExchange.Redis.IConnectionMultiplexer.PublishReconfigureAsync(StackExchange.Redis.CommandFlags)">
  3232. <summary>
  3233. Request all compatible clients to reconfigure or reconnect
  3234. </summary>
  3235. <param name="flags">The command flags to use.</param>
  3236. <returns>The number of instances known to have received the message (however, the actual number can be higher)</returns>
  3237. </member>
  3238. <member name="M:StackExchange.Redis.IConnectionMultiplexer.GetHashSlot(StackExchange.Redis.RedisKey)">
  3239. <summary>
  3240. Get the hash-slot associated with a given key, if applicable; this can be useful for grouping operations
  3241. </summary>
  3242. <param name="key">The key to get a the slot for.</param>
  3243. </member>
  3244. <member name="M:StackExchange.Redis.IConnectionMultiplexer.ExportConfiguration(System.IO.Stream,StackExchange.Redis.ExportOptions)">
  3245. <summary>
  3246. Write the configuration of all servers to an output stream
  3247. </summary>
  3248. <param name="destination">The destination stream to write the export to.</param>
  3249. <param name="options">The options to use for this export.</param>
  3250. </member>
  3251. <member name="T:StackExchange.Redis.IDatabase">
  3252. <summary>
  3253. Describes functionality that is common to both standalone redis servers and redis clusters
  3254. </summary>
  3255. </member>
  3256. <member name="P:StackExchange.Redis.IDatabase.Database">
  3257. <summary>
  3258. The numeric identifier of this database
  3259. </summary>
  3260. </member>
  3261. <member name="M:StackExchange.Redis.IDatabase.CreateBatch(System.Object)">
  3262. <summary>
  3263. Allows creation of a group of operations that will be sent to the server as a single unit,
  3264. but which may or may not be processed on the server contiguously.
  3265. </summary>
  3266. <param name="asyncState">The async object state to be passed into the created <see cref="T:StackExchange.Redis.IBatch"/>.</param>
  3267. <returns>The created batch.</returns>
  3268. </member>
  3269. <member name="M:StackExchange.Redis.IDatabase.CreateTransaction(System.Object)">
  3270. <summary>
  3271. Allows creation of a group of operations that will be sent to the server as a single unit,
  3272. and processed on the server as a single unit.
  3273. </summary>
  3274. <param name="asyncState">The async object state to be passed into the created <see cref="T:StackExchange.Redis.ITransaction"/>.</param>
  3275. <returns>The created transaction.</returns>
  3276. </member>
  3277. <member name="M:StackExchange.Redis.IDatabase.KeyMigrate(StackExchange.Redis.RedisKey,System.Net.EndPoint,System.Int32,System.Int32,StackExchange.Redis.MigrateOptions,StackExchange.Redis.CommandFlags)">
  3278. <summary>
  3279. Atomically transfer a key from a source Redis instance to a destination Redis instance. On success the key is deleted from the original instance by default, and is guaranteed to exist in the target instance.
  3280. </summary>
  3281. <param name="key">The key to migrate.</param>
  3282. <param name="toServer">The server to migrate the key to.</param>
  3283. <param name="toDatabase">The database to migrate the key to.</param>
  3284. <param name="timeoutMilliseconds">The timeout to use for the transfer.</param>
  3285. <param name="migrateOptions">The options to use for this migration.</param>
  3286. <param name="flags">The flags to use for this operation.</param>
  3287. <remarks>https://redis.io/commands/MIGRATE</remarks>
  3288. </member>
  3289. <member name="M:StackExchange.Redis.IDatabase.DebugObject(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3290. <summary>
  3291. Returns the raw DEBUG OBJECT output for a key; this command is not fully documented and should be avoided unless you have good reason, and then avoided anyway.
  3292. </summary>
  3293. <param name="key">The key to debug.</param>
  3294. <param name="flags">The flags to use for this migration.</param>
  3295. <returns>The raw output from DEBUG OBJECT.</returns>
  3296. <remarks>https://redis.io/commands/debug-object</remarks>
  3297. </member>
  3298. <member name="M:StackExchange.Redis.IDatabase.GeoAdd(StackExchange.Redis.RedisKey,System.Double,System.Double,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3299. <summary>
  3300. Add the specified member to the set stored at key. Specified members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.
  3301. </summary>
  3302. <param name="key">The key of the set.</param>
  3303. <param name="longitude">The longitude of geo entry.</param>
  3304. <param name="latitude">The latitude of the geo entry.</param>
  3305. <param name="member">The value to set at this entry.</param>
  3306. <param name="flags">The flags to use for this operation.</param>
  3307. <returns>True if the specified member was not already present in the set, else False.</returns>
  3308. <remarks>https://redis.io/commands/geoadd</remarks>
  3309. </member>
  3310. <member name="M:StackExchange.Redis.IDatabase.GeoAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.GeoEntry,StackExchange.Redis.CommandFlags)">
  3311. <summary>
  3312. Add the specified member to the set stored at key. Specified members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.
  3313. </summary>
  3314. <param name="key">The key of the set.</param>
  3315. <param name="value">The geo value to store.</param>
  3316. <param name="flags">The flags to use for this operation.</param>
  3317. <returns>True if the specified member was not already present in the set, else False</returns>
  3318. <remarks>https://redis.io/commands/geoadd</remarks>
  3319. </member>
  3320. <member name="M:StackExchange.Redis.IDatabase.GeoAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.GeoEntry[],StackExchange.Redis.CommandFlags)">
  3321. <summary>
  3322. Add the specified members to the set stored at key. Specified members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.
  3323. </summary>
  3324. <param name="key">The key of the set.</param>
  3325. <param name="values">The geo values add to the set.</param>
  3326. <param name="flags">The flags to use for this operation.</param>
  3327. <returns>The number of elements that were added to the set, not including all the elements already present into the set.</returns>
  3328. <remarks>https://redis.io/commands/geoadd</remarks>
  3329. </member>
  3330. <member name="M:StackExchange.Redis.IDatabase.GeoRemove(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3331. <summary>
  3332. Removes the specified member from the geo sorted set stored at key. Non existing members are ignored.
  3333. </summary>
  3334. <param name="key">The key of the set.</param>
  3335. <param name="member">The geo value to remove.</param>
  3336. <param name="flags">The flags to use for this operation.</param>
  3337. <returns>True if the member existed in the sorted set and was removed; False otherwise.</returns>
  3338. <remarks>https://redis.io/commands/zrem</remarks>
  3339. </member>
  3340. <member name="M:StackExchange.Redis.IDatabase.GeoDistance(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.GeoUnit,StackExchange.Redis.CommandFlags)">
  3341. <summary>
  3342. Return the distance between two members in the geospatial index represented by the sorted set.
  3343. </summary>
  3344. <param name="key">The key of the set.</param>
  3345. <param name="member1">The first member to check.</param>
  3346. <param name="member2">The second member to check.</param>
  3347. <param name="unit">The unit of distance to return (defaults to meters).</param>
  3348. <param name="flags">The flags to use for this operation.</param>
  3349. <returns>The command returns the distance as a double (represented as a string) in the specified unit, or NULL if one or both the elements are missing.</returns>
  3350. <remarks>https://redis.io/commands/geodist</remarks>
  3351. </member>
  3352. <member name="M:StackExchange.Redis.IDatabase.GeoHash(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  3353. <summary>
  3354. Return valid Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index (where elements were added using GEOADD).
  3355. </summary>
  3356. <param name="key">The key of the set.</param>
  3357. <param name="members">The members to get.</param>
  3358. <param name="flags">The flags to use for this operation.</param>
  3359. <returns>The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.</returns>
  3360. <remarks>https://redis.io/commands/geohash</remarks>
  3361. </member>
  3362. <member name="M:StackExchange.Redis.IDatabase.GeoHash(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3363. <summary>
  3364. Return valid Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index (where elements were added using GEOADD).
  3365. </summary>
  3366. <param name="key">The key of the set.</param>
  3367. <param name="member">The member to get.</param>
  3368. <param name="flags">The flags to use for this operation.</param>
  3369. <returns>The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.</returns>
  3370. <remarks>https://redis.io/commands/geohash</remarks>
  3371. </member>
  3372. <member name="M:StackExchange.Redis.IDatabase.GeoPosition(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  3373. <summary>
  3374. Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the sorted set at key.
  3375. </summary>
  3376. <param name="key">The key of the set.</param>
  3377. <param name="members">The members to get.</param>
  3378. <param name="flags">The flags to use for this operation.</param>
  3379. <returns>The command returns an array where each element is a two elements array representing longitude and latitude (x,y) of each member name passed as argument to the command.Non existing elements are reported as NULL elements of the array.</returns>
  3380. <remarks>https://redis.io/commands/geopos</remarks>
  3381. </member>
  3382. <member name="M:StackExchange.Redis.IDatabase.GeoPosition(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3383. <summary>
  3384. Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the sorted set at key.
  3385. </summary>
  3386. <param name="key">The key of the set.</param>
  3387. <param name="member">The member to get.</param>
  3388. <param name="flags">The flags to use for this operation.</param>
  3389. <returns>The command returns an array where each element is a two elements array representing longitude and latitude (x,y) of each member name passed as argument to the command.Non existing elements are reported as NULL elements of the array.</returns>
  3390. <remarks>https://redis.io/commands/geopos</remarks>
  3391. </member>
  3392. <member name="M:StackExchange.Redis.IDatabase.GeoRadius(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.GeoUnit,System.Int32,System.Nullable{StackExchange.Redis.Order},StackExchange.Redis.GeoRadiusOptions,StackExchange.Redis.CommandFlags)">
  3393. <summary>
  3394. Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders of the area specified with the center location and the maximum distance from the center (the radius).
  3395. </summary>
  3396. <param name="key">The key of the set.</param>
  3397. <param name="member">The member to get a radius of results from.</param>
  3398. <param name="radius">The radius to check.</param>
  3399. <param name="unit">The unit of <paramref name="radius"/> (defaults to meters).</param>
  3400. <param name="count">The count of results to get, -1 for unlimited.</param>
  3401. <param name="order">The order of the results.</param>
  3402. <param name="options">The search options to use.</param>
  3403. <param name="flags">The flags to use for this operation.</param>
  3404. <returns>The results found within the radius, if any.</returns>
  3405. <remarks>https://redis.io/commands/georadius</remarks>
  3406. </member>
  3407. <member name="M:StackExchange.Redis.IDatabase.GeoRadius(StackExchange.Redis.RedisKey,System.Double,System.Double,System.Double,StackExchange.Redis.GeoUnit,System.Int32,System.Nullable{StackExchange.Redis.Order},StackExchange.Redis.GeoRadiusOptions,StackExchange.Redis.CommandFlags)">
  3408. <summary>
  3409. Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders of the area specified with the center location and the maximum distance from the center (the radius).
  3410. </summary>
  3411. <param name="key">The key of the set.</param>
  3412. <param name="longitude">The longitude of the point to get a radius of results from.</param>
  3413. <param name="latitude">The latitude of the point to get a radius of results from.</param>
  3414. <param name="radius">The radius to check.</param>
  3415. <param name="unit">The unit of <paramref name="radius"/> (defaults to meters).</param>
  3416. <param name="count">The count of results to get, -1 for unlimited.</param>
  3417. <param name="order">The order of the results.</param>
  3418. <param name="options">The search options to use.</param>
  3419. <param name="flags">The flags to use for this operation.</param>
  3420. <returns>The results found within the radius, if any.</returns>
  3421. <remarks>https://redis.io/commands/georadius</remarks>
  3422. </member>
  3423. <member name="M:StackExchange.Redis.IDatabase.HashDecrement(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int64,StackExchange.Redis.CommandFlags)">
  3424. <summary>
  3425. Decrements the number stored at field in the hash stored at key by decrement. If key does not exist, a new key holding a hash is created. If field does not exist or holds a string that cannot be interpreted as integer, the value is set to 0 before the operation is performed.
  3426. </summary>
  3427. <param name="key">The key of the hash.</param>
  3428. <param name="hashField">The field in the hash to decrement.</param>
  3429. <param name="value">The amount to decrement by.</param>
  3430. <param name="flags">The flags to use for this operation.</param>
  3431. <returns>The value at field after the decrement operation.</returns>
  3432. <remarks>The range of values supported by HINCRBY is limited to 64 bit signed integers.</remarks>
  3433. <remarks>https://redis.io/commands/hincrby</remarks>
  3434. </member>
  3435. <member name="M:StackExchange.Redis.IDatabase.HashDecrement(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.CommandFlags)">
  3436. <summary>
  3437. Decrement the specified field of an hash stored at key, and representing a floating point number, by the specified decrement. If the field does not exist, it is set to 0 before performing the operation.
  3438. </summary>
  3439. <param name="key">The key of the hash.</param>
  3440. <param name="hashField">The field in the hash to decrement.</param>
  3441. <param name="value">The amount to decrement by.</param>
  3442. <param name="flags">The flags to use for this operation.</param>
  3443. <returns>The value at field after the decrement operation.</returns>
  3444. <remarks>The precision of the output is fixed at 17 digits after the decimal point regardless of the actual internal precision of the computation.</remarks>
  3445. <remarks>https://redis.io/commands/hincrbyfloat</remarks>
  3446. </member>
  3447. <member name="M:StackExchange.Redis.IDatabase.HashDelete(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3448. <summary>
  3449. Removes the specified fields from the hash stored at key. Non-existing fields are ignored. Non-existing keys are treated as empty hashes and this command returns 0.
  3450. </summary>
  3451. <param name="key">The key of the hash.</param>
  3452. <param name="hashField">The field in the hash to delete.</param>
  3453. <param name="flags">The flags to use for this operation.</param>
  3454. <returns>The number of fields that were removed.</returns>
  3455. <remarks>https://redis.io/commands/hdel</remarks>
  3456. </member>
  3457. <member name="M:StackExchange.Redis.IDatabase.HashDelete(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  3458. <summary>
  3459. Removes the specified fields from the hash stored at key. Non-existing fields are ignored. Non-existing keys are treated as empty hashes and this command returns 0.
  3460. </summary>
  3461. <param name="key">The key of the hash.</param>
  3462. <param name="hashFields">The fields in the hash to delete.</param>
  3463. <param name="flags">The flags to use for this operation.</param>
  3464. <returns>The number of fields that were removed.</returns>
  3465. <remarks>https://redis.io/commands/hdel</remarks>
  3466. </member>
  3467. <member name="M:StackExchange.Redis.IDatabase.HashExists(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3468. <summary>
  3469. Returns if field is an existing field in the hash stored at key.
  3470. </summary>
  3471. <param name="key">The key of the hash.</param>
  3472. <param name="hashField">The field in the hash to check.</param>
  3473. <param name="flags">The flags to use for this operation.</param>
  3474. <returns>1 if the hash contains field. 0 if the hash does not contain field, or key does not exist.</returns>
  3475. <remarks>https://redis.io/commands/hexists</remarks>
  3476. </member>
  3477. <member name="M:StackExchange.Redis.IDatabase.HashGet(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3478. <summary>
  3479. Returns the value associated with field in the hash stored at key.
  3480. </summary>
  3481. <param name="key">The key of the hash.</param>
  3482. <param name="hashField">The field in the hash to get.</param>
  3483. <param name="flags">The flags to use for this operation.</param>
  3484. <returns>The value associated with field, or nil when field is not present in the hash or key does not exist.</returns>
  3485. <remarks>https://redis.io/commands/hget</remarks>
  3486. </member>
  3487. <member name="M:StackExchange.Redis.IDatabase.HashGetLease(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3488. <summary>
  3489. Returns the value associated with field in the hash stored at key.
  3490. </summary>
  3491. <param name="key">The key of the hash.</param>
  3492. <param name="hashField">The field in the hash to get.</param>
  3493. <param name="flags">The flags to use for this operation.</param>
  3494. <returns>The value associated with field, or nil when field is not present in the hash or key does not exist.</returns>
  3495. <remarks>https://redis.io/commands/hget</remarks>
  3496. </member>
  3497. <member name="M:StackExchange.Redis.IDatabase.HashGet(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  3498. <summary>
  3499. Returns the values associated with the specified fields in the hash stored at key.
  3500. For every field that does not exist in the hash, a nil value is returned.Because a non-existing keys are treated as empty hashes, running HMGET against a non-existing key will return a list of nil values.
  3501. </summary>
  3502. <param name="key">The key of the hash.</param>
  3503. <param name="hashFields">The fields in the hash to delete.</param>
  3504. <param name="flags">The flags to use for this operation.</param>
  3505. <returns>List of values associated with the given fields, in the same order as they are requested.</returns>
  3506. <remarks>https://redis.io/commands/hmget</remarks>
  3507. </member>
  3508. <member name="M:StackExchange.Redis.IDatabase.HashGetAll(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3509. <summary>
  3510. Returns all fields and values of the hash stored at key.
  3511. </summary>
  3512. <param name="key">The key of the hash to get all entries from.</param>
  3513. <param name="flags">The flags to use for this operation.</param>
  3514. <returns>List of fields and their values stored in the hash, or an empty list when key does not exist.</returns>
  3515. <remarks>https://redis.io/commands/hgetall</remarks>
  3516. </member>
  3517. <member name="M:StackExchange.Redis.IDatabase.HashIncrement(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int64,StackExchange.Redis.CommandFlags)">
  3518. <summary>
  3519. Increments the number stored at field in the hash stored at key by increment. If key does not exist, a new key holding a hash is created. If field does not exist or holds a string that cannot be interpreted as integer, the value is set to 0 before the operation is performed.
  3520. </summary>
  3521. <param name="key">The key of the hash.</param>
  3522. <param name="hashField">The field in the hash to increment.</param>
  3523. <param name="value">The amount to increment by.</param>
  3524. <param name="flags">The flags to use for this operation.</param>
  3525. <returns>The value at field after the increment operation.</returns>
  3526. <remarks>The range of values supported by HINCRBY is limited to 64 bit signed integers.</remarks>
  3527. <remarks>https://redis.io/commands/hincrby</remarks>
  3528. </member>
  3529. <member name="M:StackExchange.Redis.IDatabase.HashIncrement(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.CommandFlags)">
  3530. <summary>
  3531. Increment the specified field of an hash stored at key, and representing a floating point number, by the specified increment. If the field does not exist, it is set to 0 before performing the operation.
  3532. </summary>
  3533. <param name="key">The key of the hash.</param>
  3534. <param name="hashField">The field in the hash to increment.</param>
  3535. <param name="value">The amount to increment by.</param>
  3536. <param name="flags">The flags to use for this operation.</param>
  3537. <returns>The value at field after the increment operation.</returns>
  3538. <remarks>The precision of the output is fixed at 17 digits after the decimal point regardless of the actual internal precision of the computation.</remarks>
  3539. <remarks>https://redis.io/commands/hincrbyfloat</remarks>
  3540. </member>
  3541. <member name="M:StackExchange.Redis.IDatabase.HashKeys(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3542. <summary>
  3543. Returns all field names in the hash stored at key.
  3544. </summary>
  3545. <param name="key">The key of the hash.</param>
  3546. <param name="flags">The flags to use for this operation.</param>
  3547. <returns>List of fields in the hash, or an empty list when key does not exist.</returns>
  3548. <remarks>https://redis.io/commands/hkeys</remarks>
  3549. </member>
  3550. <member name="M:StackExchange.Redis.IDatabase.HashLength(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3551. <summary>
  3552. Returns the number of fields contained in the hash stored at key.
  3553. </summary>
  3554. <param name="key">The key of the hash.</param>
  3555. <param name="flags">The flags to use for this operation.</param>
  3556. <returns>The number of fields in the hash, or 0 when key does not exist.</returns>
  3557. <remarks>https://redis.io/commands/hlen</remarks>
  3558. </member>
  3559. <member name="M:StackExchange.Redis.IDatabase.HashScan(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int32,StackExchange.Redis.CommandFlags)">
  3560. <summary>
  3561. The HSCAN command is used to incrementally iterate over a hash.
  3562. </summary>
  3563. <param name="key">The key of the hash.</param>
  3564. <param name="pattern">The pattern of keys to get entries for.</param>
  3565. <param name="pageSize">The page size to iterate by.</param>
  3566. <param name="flags">The flags to use for this operation.</param>
  3567. <returns>Yields all elements of the hash matching the pattern.</returns>
  3568. <remarks>https://redis.io/commands/hscan</remarks>
  3569. </member>
  3570. <member name="M:StackExchange.Redis.IDatabase.HashScan(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int32,System.Int64,System.Int32,StackExchange.Redis.CommandFlags)">
  3571. <summary>
  3572. The HSCAN command is used to incrementally iterate over a hash; note: to resume an iteration via <i>cursor</i>, cast the original enumerable or enumerator to <i>IScanningCursor</i>.
  3573. </summary>
  3574. <param name="key">The key of the hash.</param>
  3575. <param name="pattern">The pattern of keys to get entries for.</param>
  3576. <param name="pageSize">The page size to iterate by.</param>
  3577. <param name="cursor">The cursor position to start at.</param>
  3578. <param name="pageOffset">The page offset to start at.</param>
  3579. <param name="flags">The flags to use for this operation.</param>
  3580. <returns>Yields all elements of the hash matching the pattern.</returns>
  3581. <remarks>https://redis.io/commands/hscan</remarks>
  3582. </member>
  3583. <member name="M:StackExchange.Redis.IDatabase.HashSet(StackExchange.Redis.RedisKey,StackExchange.Redis.HashEntry[],StackExchange.Redis.CommandFlags)">
  3584. <summary>
  3585. Sets the specified fields to their respective values in the hash stored at key. This command overwrites any specified fields that already exist in the hash, leaving other unspecified fields untouched. If key does not exist, a new key holding a hash is created.
  3586. </summary>
  3587. <param name="key">The key of the hash.</param>
  3588. <param name="hashFields">The entries to set in the hash.</param>
  3589. <param name="flags">The flags to use for this operation.</param>
  3590. <remarks>https://redis.io/commands/hmset</remarks>
  3591. </member>
  3592. <member name="M:StackExchange.Redis.IDatabase.HashSet(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  3593. <summary>
  3594. Sets field in the hash stored at key to value. If key does not exist, a new key holding a hash is created. If field already exists in the hash, it is overwritten.
  3595. </summary>
  3596. <param name="key">The key of the hash.</param>
  3597. <param name="hashField">The field to set in the hash.</param>
  3598. <param name="value">The value to set.</param>
  3599. <param name="when">Which conditions under which to set the field value (defaults to always).</param>
  3600. <param name="flags">The flags to use for this operation.</param>
  3601. <returns>1 if field is a new field in the hash and value was set. 0 if field already exists in the hash and the value was updated.</returns>
  3602. <remarks>https://redis.io/commands/hset</remarks>
  3603. <remarks>https://redis.io/commands/hsetnx</remarks>
  3604. </member>
  3605. <member name="M:StackExchange.Redis.IDatabase.HashStringLength(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3606. <summary>
  3607. Returns the string length of the value associated with field in the hash stored at key.
  3608. </summary>
  3609. <param name="key">The key of the hash.</param>
  3610. <param name="hashField">The field containing the string</param>
  3611. <param name="flags">The flags to use for this operation.</param>
  3612. <returns>the length of the string at field, or 0 when key does not exist.</returns>
  3613. <remarks>https://redis.io/commands/hstrlen</remarks>
  3614. </member>
  3615. <member name="M:StackExchange.Redis.IDatabase.HashValues(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3616. <summary>
  3617. Returns all values in the hash stored at key.
  3618. </summary>
  3619. <param name="key">The key of the hash.</param>
  3620. <param name="flags">The flags to use for this operation.</param>
  3621. <returns>List of values in the hash, or an empty list when key does not exist.</returns>
  3622. <remarks>https://redis.io/commands/hvals</remarks>
  3623. </member>
  3624. <member name="M:StackExchange.Redis.IDatabase.HyperLogLogAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3625. <summary>
  3626. Adds the element to the HyperLogLog data structure stored at the variable name specified as first argument.
  3627. </summary>
  3628. <param name="key">The key of the hyperloglog.</param>
  3629. <param name="value">The value to add.</param>
  3630. <param name="flags">The flags to use for this operation.</param>
  3631. <returns>True if at least 1 HyperLogLog internal register was altered, false otherwise.</returns>
  3632. <remarks>https://redis.io/commands/pfadd</remarks>
  3633. </member>
  3634. <member name="M:StackExchange.Redis.IDatabase.HyperLogLogAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  3635. <summary>
  3636. Adds all the element arguments to the HyperLogLog data structure stored at the variable name specified as first argument.
  3637. </summary>
  3638. <param name="key">The key of the hyperloglog.</param>
  3639. <param name="values">The values to add.</param>
  3640. <param name="flags">The flags to use for this operation.</param>
  3641. <returns>True if at least 1 HyperLogLog internal register was altered, false otherwise.</returns>
  3642. <remarks>https://redis.io/commands/pfadd</remarks>
  3643. </member>
  3644. <member name="M:StackExchange.Redis.IDatabase.HyperLogLogLength(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3645. <summary>
  3646. Returns the approximated cardinality computed by the HyperLogLog data structure stored at the specified variable, or 0 if the variable does not exist.
  3647. </summary>
  3648. <param name="key">The key of the hyperloglog.</param>
  3649. <param name="flags">The flags to use for this operation.</param>
  3650. <returns>The approximated number of unique elements observed via HyperLogLogAdd.</returns>
  3651. <remarks>https://redis.io/commands/pfcount</remarks>
  3652. </member>
  3653. <member name="M:StackExchange.Redis.IDatabase.HyperLogLogLength(StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  3654. <summary>
  3655. Returns the approximated cardinality of the union of the HyperLogLogs passed, by internally merging the HyperLogLogs stored at the provided keys into a temporary hyperLogLog, or 0 if the variable does not exist.
  3656. </summary>
  3657. <param name="keys">The keys of the hyperloglogs.</param>
  3658. <param name="flags">The flags to use for this operation.</param>
  3659. <returns>The approximated number of unique elements observed via HyperLogLogAdd.</returns>
  3660. <remarks>https://redis.io/commands/pfcount</remarks>
  3661. </member>
  3662. <member name="M:StackExchange.Redis.IDatabase.HyperLogLogMerge(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3663. <summary>
  3664. Merge multiple HyperLogLog values into an unique value that will approximate the cardinality of the union of the observed Sets of the source HyperLogLog structures.
  3665. </summary>
  3666. <param name="destination">The key of the merged hyperloglog.</param>
  3667. <param name="first">The key of the first hyperloglog to merge.</param>
  3668. <param name="second">The key of the first hyperloglog to merge.</param>
  3669. <param name="flags">The flags to use for this operation.</param>
  3670. <remarks>https://redis.io/commands/pfmerge</remarks>
  3671. </member>
  3672. <member name="M:StackExchange.Redis.IDatabase.HyperLogLogMerge(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  3673. <summary>
  3674. Merge multiple HyperLogLog values into an unique value that will approximate the cardinality of the union of the observed Sets of the source HyperLogLog structures.
  3675. </summary>
  3676. <param name="destination">The key of the merged hyperloglog.</param>
  3677. <param name="sourceKeys">The keys of the hyperloglogs to merge.</param>
  3678. <param name="flags">The flags to use for this operation.</param>
  3679. <remarks>https://redis.io/commands/pfmerge</remarks>
  3680. </member>
  3681. <member name="M:StackExchange.Redis.IDatabase.IdentifyEndpoint(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3682. <summary>
  3683. Inidicate exactly which redis server we are talking to.
  3684. </summary>
  3685. <param name="key">The key to check.</param>
  3686. <param name="flags">The flags to use for this operation.</param>
  3687. <returns>The endpoint serving the key.</returns>
  3688. </member>
  3689. <member name="M:StackExchange.Redis.IDatabase.KeyDelete(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3690. <summary>
  3691. Removes the specified key. A key is ignored if it does not exist.
  3692. If UNLINK is available (Redis 4.0+), it will be used.
  3693. </summary>
  3694. <param name="key">The key to delete.</param>
  3695. <param name="flags">The flags to use for this operation.</param>
  3696. <returns>True if the key was removed.</returns>
  3697. <remarks>https://redis.io/commands/del</remarks>
  3698. <remarks>https://redis.io/commands/unlink</remarks>
  3699. </member>
  3700. <member name="M:StackExchange.Redis.IDatabase.KeyDelete(StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  3701. <summary>
  3702. Removes the specified keys. A key is ignored if it does not exist.
  3703. If UNLINK is available (Redis 4.0+), it will be used.
  3704. </summary>
  3705. <param name="keys">The keys to delete.</param>
  3706. <param name="flags">The flags to use for this operation.</param>
  3707. <returns>The number of keys that were removed.</returns>
  3708. <remarks>https://redis.io/commands/del</remarks>
  3709. <remarks>https://redis.io/commands/unlink</remarks>
  3710. </member>
  3711. <member name="M:StackExchange.Redis.IDatabase.KeyDump(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3712. <summary>
  3713. Serialize the value stored at key in a Redis-specific format and return it to the user. The returned value can be synthesized back into a Redis key using the RESTORE command.
  3714. </summary>
  3715. <param name="key">The key to dump.</param>
  3716. <param name="flags">The flags to use for this operation.</param>
  3717. <returns>the serialized value.</returns>
  3718. <remarks>https://redis.io/commands/dump</remarks>
  3719. </member>
  3720. <member name="M:StackExchange.Redis.IDatabase.KeyExists(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3721. <summary>
  3722. Returns if key exists.
  3723. </summary>
  3724. <param name="key">The key to check.</param>
  3725. <param name="flags">The flags to use for this operation.</param>
  3726. <returns>1 if the key exists. 0 if the key does not exist.</returns>
  3727. <remarks>https://redis.io/commands/exists</remarks>
  3728. </member>
  3729. <member name="M:StackExchange.Redis.IDatabase.KeyExists(StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  3730. <summary>
  3731. Indicates how many of the supplied keys exists.
  3732. </summary>
  3733. <param name="keys">The keys to check.</param>
  3734. <param name="flags">The flags to use for this operation.</param>
  3735. <returns>The number of keys that existed.</returns>
  3736. <remarks>https://redis.io/commands/exists</remarks>
  3737. </member>
  3738. <member name="M:StackExchange.Redis.IDatabase.KeyExpire(StackExchange.Redis.RedisKey,System.Nullable{System.TimeSpan},StackExchange.Redis.CommandFlags)">
  3739. <summary>
  3740. Set a timeout on key. After the timeout has expired, the key will automatically be deleted. A key with an associated timeout is said to be volatile in Redis terminology.
  3741. </summary>
  3742. <param name="key">The key to set the expiration for.</param>
  3743. <param name="expiry">The timeout to set.</param>
  3744. <param name="flags">The flags to use for this operation.</param>
  3745. <returns>1 if the timeout was set. 0 if key does not exist or the timeout could not be set.</returns>
  3746. <remarks>If key is updated before the timeout has expired, then the timeout is removed as if the PERSIST command was invoked on key.
  3747. For Redis versions &lt; 2.1.3, existing timeouts cannot be overwritten. So, if key already has an associated timeout, it will do nothing and return 0. Since Redis 2.1.3, you can update the timeout of a key. It is also possible to remove the timeout using the PERSIST command. See the page on key expiry for more information.</remarks>
  3748. <remarks>https://redis.io/commands/expire</remarks>
  3749. <remarks>https://redis.io/commands/pexpire</remarks>
  3750. <remarks>https://redis.io/commands/persist</remarks>
  3751. </member>
  3752. <member name="M:StackExchange.Redis.IDatabase.KeyExpire(StackExchange.Redis.RedisKey,System.Nullable{System.DateTime},StackExchange.Redis.CommandFlags)">
  3753. <summary>
  3754. Set a timeout on key. After the timeout has expired, the key will automatically be deleted. A key with an associated timeout is said to be volatile in Redis terminology.
  3755. </summary>
  3756. <param name="key">The key to set the expiration for.</param>
  3757. <param name="expiry">The exact date to expiry to set.</param>
  3758. <param name="flags">The flags to use for this operation.</param>
  3759. <returns>1 if the timeout was set. 0 if key does not exist or the timeout could not be set.</returns>
  3760. <remarks>If key is updated before the timeout has expired, then the timeout is removed as if the PERSIST command was invoked on key.
  3761. For Redis versions &lt; 2.1.3, existing timeouts cannot be overwritten. So, if key already has an associated timeout, it will do nothing and return 0. Since Redis 2.1.3, you can update the timeout of a key. It is also possible to remove the timeout using the PERSIST command. See the page on key expiry for more information.</remarks>
  3762. <remarks>https://redis.io/commands/expireat</remarks>
  3763. <remarks>https://redis.io/commands/pexpireat</remarks>
  3764. <remarks>https://redis.io/commands/persist</remarks>
  3765. </member>
  3766. <member name="M:StackExchange.Redis.IDatabase.KeyIdleTime(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3767. <summary>
  3768. Returns the time since the object stored at the specified key is idle (not requested by read or write operations)
  3769. </summary>
  3770. <param name="key">The key to get the time of.</param>
  3771. <param name="flags">The flags to use for this operation.</param>
  3772. <returns>The time since the object stored at the specified key is idle</returns>
  3773. <remarks>https://redis.io/commands/object</remarks>
  3774. </member>
  3775. <member name="M:StackExchange.Redis.IDatabase.KeyMove(StackExchange.Redis.RedisKey,System.Int32,StackExchange.Redis.CommandFlags)">
  3776. <summary>
  3777. Move key from the currently selected database (see SELECT) to the specified destination database. When key already exists in the destination database, or it does not exist in the source database, it does nothing. It is possible to use MOVE as a locking primitive because of this.
  3778. </summary>
  3779. <param name="key">The key to move.</param>
  3780. <param name="database">The database to move the key to.</param>
  3781. <param name="flags">The flags to use for this operation.</param>
  3782. <returns>1 if key was moved; 0 if key was not moved.</returns>
  3783. <remarks>https://redis.io/commands/move</remarks>
  3784. </member>
  3785. <member name="M:StackExchange.Redis.IDatabase.KeyPersist(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3786. <summary>
  3787. Remove the existing timeout on key, turning the key from volatile (a key with an expire set) to persistent (a key that will never expire as no timeout is associated).
  3788. </summary>
  3789. <param name="key">The key to presist.</param>
  3790. <param name="flags">The flags to use for this operation.</param>
  3791. <returns>1 if the timeout was removed. 0 if key does not exist or does not have an associated timeout.</returns>
  3792. <remarks>https://redis.io/commands/persist</remarks>
  3793. </member>
  3794. <member name="M:StackExchange.Redis.IDatabase.KeyRandom(StackExchange.Redis.CommandFlags)">
  3795. <summary>
  3796. Return a random key from the currently selected database.
  3797. </summary>
  3798. <param name="flags">The flags to use for this operation.</param>
  3799. <returns>The random key, or nil when the database is empty.</returns>
  3800. <remarks>https://redis.io/commands/randomkey</remarks>
  3801. </member>
  3802. <member name="M:StackExchange.Redis.IDatabase.KeyRename(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  3803. <summary>
  3804. Renames key to newkey. It returns an error when the source and destination names are the same, or when key does not exist.
  3805. </summary>
  3806. <param name="key">The key to rename.</param>
  3807. <param name="newKey">The key to rename to.</param>
  3808. <param name="when">What conditions to rename under (defaults to always).</param>
  3809. <param name="flags">The flags to use for this operation.</param>
  3810. <returns>True if the key was renamed, false otherwise.</returns>
  3811. <remarks>https://redis.io/commands/rename</remarks>
  3812. <remarks>https://redis.io/commands/renamenx</remarks>
  3813. </member>
  3814. <member name="M:StackExchange.Redis.IDatabase.KeyRestore(StackExchange.Redis.RedisKey,System.Byte[],System.Nullable{System.TimeSpan},StackExchange.Redis.CommandFlags)">
  3815. <summary>
  3816. Create a key associated with a value that is obtained by deserializing the provided serialized value (obtained via DUMP).
  3817. If ttl is 0 the key is created without any expire, otherwise the specified expire time(in milliseconds) is set.
  3818. </summary>
  3819. <param name="key">The key to restore.</param>
  3820. <param name="value">The value of the key.</param>
  3821. <param name="expiry">The expiry to set.</param>
  3822. <param name="flags">The flags to use for this operation.</param>
  3823. <remarks>https://redis.io/commands/restore</remarks>
  3824. </member>
  3825. <member name="M:StackExchange.Redis.IDatabase.KeyTimeToLive(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3826. <summary>
  3827. Returns the remaining time to live of a key that has a timeout. This introspection capability allows a Redis client to check how many seconds a given key will continue to be part of the dataset.
  3828. </summary>
  3829. <param name="key">The key to check.</param>
  3830. <param name="flags">The flags to use for this operation.</param>
  3831. <returns>TTL, or nil when key does not exist or does not have a timeout.</returns>
  3832. <remarks>https://redis.io/commands/ttl</remarks>
  3833. </member>
  3834. <member name="M:StackExchange.Redis.IDatabase.KeyType(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3835. <summary>
  3836. Returns the string representation of the type of the value stored at key. The different types that can be returned are: string, list, set, zset and hash.
  3837. </summary>
  3838. <param name="key">The key to get the type of.</param>
  3839. <param name="flags">The flags to use for this operation.</param>
  3840. <returns>Type of key, or none when key does not exist.</returns>
  3841. <remarks>https://redis.io/commands/type</remarks>
  3842. </member>
  3843. <member name="M:StackExchange.Redis.IDatabase.ListGetByIndex(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  3844. <summary>
  3845. Returns the element at index index in the list stored at key. The index is zero-based, so 0 means the first element, 1 the second element and so on. Negative indices can be used to designate elements starting at the tail of the list. Here, -1 means the last element, -2 means the penultimate and so forth.
  3846. </summary>
  3847. <param name="key">The key of the list.</param>
  3848. <param name="index">The index position to ge the value at.</param>
  3849. <param name="flags">The flags to use for this operation.</param>
  3850. <returns>The requested element, or nil when index is out of range.</returns>
  3851. <remarks>https://redis.io/commands/lindex</remarks>
  3852. </member>
  3853. <member name="M:StackExchange.Redis.IDatabase.ListInsertAfter(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3854. <summary>
  3855. Inserts value in the list stored at key either before or after the reference value pivot.
  3856. When key does not exist, it is considered an empty list and no operation is performed.
  3857. </summary>
  3858. <param name="key">The key of the list.</param>
  3859. <param name="pivot">The value to insert after.</param>
  3860. <param name="value">The value to insert.</param>
  3861. <param name="flags">The flags to use for this operation.</param>
  3862. <returns>The length of the list after the insert operation, or -1 when the value pivot was not found.</returns>
  3863. <remarks>https://redis.io/commands/linsert</remarks>
  3864. </member>
  3865. <member name="M:StackExchange.Redis.IDatabase.ListInsertBefore(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3866. <summary>
  3867. Inserts value in the list stored at key either before or after the reference value pivot.
  3868. When key does not exist, it is considered an empty list and no operation is performed.
  3869. </summary>
  3870. <param name="key">The key of the list.</param>
  3871. <param name="pivot">The value to insert before.</param>
  3872. <param name="value">The value to insert.</param>
  3873. <param name="flags">The flags to use for this operation.</param>
  3874. <returns>The length of the list after the insert operation, or -1 when the value pivot was not found.</returns>
  3875. <remarks>https://redis.io/commands/linsert</remarks>
  3876. </member>
  3877. <member name="M:StackExchange.Redis.IDatabase.ListLeftPop(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3878. <summary>
  3879. Removes and returns the first element of the list stored at key.
  3880. </summary>
  3881. <param name="key">The key of the list.</param>
  3882. <param name="flags">The flags to use for this operation.</param>
  3883. <returns>The value of the first element, or nil when key does not exist.</returns>
  3884. <remarks>https://redis.io/commands/lpop</remarks>
  3885. </member>
  3886. <member name="M:StackExchange.Redis.IDatabase.ListLeftPush(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  3887. <summary>
  3888. Insert the specified value at the head of the list stored at key. If key does not exist, it is created as empty list before performing the push operations.
  3889. </summary>
  3890. <param name="key">The key of the list.</param>
  3891. <param name="value">The value to add to the head of the list.</param>
  3892. <param name="when">Which conditions to add to the list under (defaults to always).</param>
  3893. <param name="flags">The flags to use for this operation.</param>
  3894. <returns>The length of the list after the push operations.</returns>
  3895. <remarks>https://redis.io/commands/lpush</remarks>
  3896. <remarks>https://redis.io/commands/lpushx</remarks>
  3897. </member>
  3898. <member name="M:StackExchange.Redis.IDatabase.ListLeftPush(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  3899. <summary>
  3900. Insert all the specified values at the head of the list stored at key. If key does not exist, it is created as empty list before performing the push operations.
  3901. Elements are inserted one after the other to the head of the list, from the leftmost element to the rightmost element. So for instance the command LPUSH mylist a b c will result into a list containing c as first element, b as second element and a as third element.
  3902. </summary>
  3903. <param name="key">The key of the list.</param>
  3904. <param name="values">The values to add to the head of the list.</param>
  3905. <param name="flags">The flags to use for this operation.</param>
  3906. <returns>The length of the list after the push operations.</returns>
  3907. <remarks>https://redis.io/commands/lpush</remarks>
  3908. </member>
  3909. <member name="M:StackExchange.Redis.IDatabase.ListLength(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3910. <summary>
  3911. Returns the length of the list stored at key. If key does not exist, it is interpreted as an empty list and 0 is returned.
  3912. </summary>
  3913. <param name="key">The key of the list.</param>
  3914. <param name="flags">The flags to use for this operation.</param>
  3915. <returns>The length of the list at key.</returns>
  3916. <remarks>https://redis.io/commands/llen</remarks>
  3917. </member>
  3918. <member name="M:StackExchange.Redis.IDatabase.ListRange(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  3919. <summary>
  3920. Returns the specified elements of the list stored at key. The offsets start and stop are zero-based indexes, with 0 being the first element of the list (the head of the list), 1 being the next element and so on.
  3921. These offsets can also be negative numbers indicating offsets starting at the end of the list.For example, -1 is the last element of the list, -2 the penultimate, and so on.
  3922. Note that if you have a list of numbers from 0 to 100, LRANGE list 0 10 will return 11 elements, that is, the rightmost item is included.
  3923. </summary>
  3924. <param name="key">The key of the list.</param>
  3925. <param name="start">The start index of the list.</param>
  3926. <param name="stop">The stop index of the list.</param>
  3927. <param name="flags">The flags to use for this operation.</param>
  3928. <returns>List of elements in the specified range.</returns>
  3929. <remarks>https://redis.io/commands/lrange</remarks>
  3930. </member>
  3931. <member name="M:StackExchange.Redis.IDatabase.ListRemove(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int64,StackExchange.Redis.CommandFlags)">
  3932. <summary>
  3933. Removes the first count occurrences of elements equal to value from the list stored at key. The count argument influences the operation in the following ways:
  3934. count &gt; 0: Remove elements equal to value moving from head to tail.
  3935. count &lt; 0: Remove elements equal to value moving from tail to head.
  3936. count = 0: Remove all elements equal to value.
  3937. </summary>
  3938. <param name="key">The key of the list.</param>
  3939. <param name="value">The value to remove from the list.</param>
  3940. <param name="count">The count behavior (see method summary).</param>
  3941. <param name="flags">The flags to use for this operation.</param>
  3942. <returns>The number of removed elements.</returns>
  3943. <remarks>https://redis.io/commands/lrem</remarks>
  3944. </member>
  3945. <member name="M:StackExchange.Redis.IDatabase.ListRightPop(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3946. <summary>
  3947. Removes and returns the last element of the list stored at key.
  3948. </summary>
  3949. <param name="key">The key of the list.</param>
  3950. <param name="flags">The flags to use for this operation.</param>
  3951. <returns>The element being popped.</returns>
  3952. <remarks>https://redis.io/commands/rpop</remarks>
  3953. </member>
  3954. <member name="M:StackExchange.Redis.IDatabase.ListRightPopLeftPush(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  3955. <summary>
  3956. Atomically returns and removes the last element (tail) of the list stored at source, and pushes the element at the first element (head) of the list stored at destination.
  3957. </summary>
  3958. <param name="source">The key of the source list.</param>
  3959. <param name="destination">The key of the destination list.</param>
  3960. <param name="flags">The flags to use for this operation.</param>
  3961. <returns>The element being popped and pushed.</returns>
  3962. <remarks>https://redis.io/commands/rpoplpush</remarks>
  3963. </member>
  3964. <member name="M:StackExchange.Redis.IDatabase.ListRightPush(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  3965. <summary>
  3966. Insert the specified value at the tail of the list stored at key. If key does not exist, it is created as empty list before performing the push operation.
  3967. </summary>
  3968. <param name="key">The key of the list.</param>
  3969. <param name="value">The value to add to the tail of the list.</param>
  3970. <param name="when">Which conditions to add to the list under.</param>
  3971. <param name="flags">The flags to use for this operation.</param>
  3972. <returns>The length of the list after the push operation.</returns>
  3973. <remarks>https://redis.io/commands/rpush</remarks>
  3974. <remarks>https://redis.io/commands/rpushx</remarks>
  3975. </member>
  3976. <member name="M:StackExchange.Redis.IDatabase.ListRightPush(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  3977. <summary>
  3978. Insert all the specified values at the tail of the list stored at key. If key does not exist, it is created as empty list before performing the push operation.
  3979. Elements are inserted one after the other to the tail of the list, from the leftmost element to the rightmost element. So for instance the command RPUSH mylist a b c will result into a list containing a as first element, b as second element and c as third element.
  3980. </summary>
  3981. <param name="key">The key of the list.</param>
  3982. <param name="values">The values to add to the tail of the list.</param>
  3983. <param name="flags">The flags to use for this operation.</param>
  3984. <returns>The length of the list after the push operation.</returns>
  3985. <remarks>https://redis.io/commands/rpush</remarks>
  3986. </member>
  3987. <member name="M:StackExchange.Redis.IDatabase.ListSetByIndex(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  3988. <summary>
  3989. Sets the list element at index to value. For more information on the index argument, see ListGetByIndex. An error is returned for out of range indexes.
  3990. </summary>
  3991. <param name="key">The key of the list.</param>
  3992. <param name="index">The index to set the value at.</param>
  3993. <param name="value">The values to add to the list.</param>
  3994. <param name="flags">The flags to use for this operation.</param>
  3995. <remarks>https://redis.io/commands/lset</remarks>
  3996. </member>
  3997. <member name="M:StackExchange.Redis.IDatabase.ListTrim(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  3998. <summary>
  3999. Trim an existing list so that it will contain only the specified range of elements specified. Both start and stop are zero-based indexes, where 0 is the first element of the list (the head), 1 the next element and so on.
  4000. For example: LTRIM foobar 0 2 will modify the list stored at foobar so that only the first three elements of the list will remain.
  4001. start and end can also be negative numbers indicating offsets from the end of the list, where -1 is the last element of the list, -2 the penultimate element and so on.
  4002. </summary>
  4003. <param name="key">The key of the list.</param>
  4004. <param name="start">The start index of the list to trim to.</param>
  4005. <param name="stop">The end index of the list to trim to.</param>
  4006. <param name="flags">The flags to use for this operation.</param>
  4007. <remarks>https://redis.io/commands/ltrim</remarks>
  4008. </member>
  4009. <member name="M:StackExchange.Redis.IDatabase.LockExtend(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.TimeSpan,StackExchange.Redis.CommandFlags)">
  4010. <summary>
  4011. Extends a lock, if the token value is correct.
  4012. </summary>
  4013. <param name="key">The key of the lock.</param>
  4014. <param name="value">The value to set at the key.</param>
  4015. <param name="expiry">The expiration of the lock key.</param>
  4016. <param name="flags">The flags to use for this operation.</param>
  4017. <returns>True if the lock was successfully extended.</returns>
  4018. </member>
  4019. <member name="M:StackExchange.Redis.IDatabase.LockQuery(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  4020. <summary>
  4021. Queries the token held against a lock.
  4022. </summary>
  4023. <param name="key">The key of the lock.</param>
  4024. <param name="flags">The flags to use for this operation.</param>
  4025. <returns>The current value of the lock, if any.</returns>
  4026. </member>
  4027. <member name="M:StackExchange.Redis.IDatabase.LockRelease(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4028. <summary>
  4029. Releases a lock, if the token value is correct.
  4030. </summary>
  4031. <param name="key">The key of the lock.</param>
  4032. <param name="value">The value at the key tht must match.</param>
  4033. <param name="flags">The flags to use for this operation.</param>
  4034. <returns>True if the lock was successfully released, false otherwise.</returns>
  4035. </member>
  4036. <member name="M:StackExchange.Redis.IDatabase.LockTake(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.TimeSpan,StackExchange.Redis.CommandFlags)">
  4037. <summary>
  4038. Takes a lock (specifying a token value) if it is not already taken.
  4039. </summary>
  4040. <param name="key">The key of the lock.</param>
  4041. <param name="value">The value to set at the key.</param>
  4042. <param name="expiry">The expiration of the lock key.</param>
  4043. <param name="flags">The flags to use for this operation.</param>
  4044. <returns>True if the lock was successfully taken, false otherwise.</returns>
  4045. </member>
  4046. <member name="M:StackExchange.Redis.IDatabase.Publish(StackExchange.Redis.RedisChannel,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4047. <summary>
  4048. Posts a message to the given channel.
  4049. </summary>
  4050. <param name="channel">The channel to publish to.</param>
  4051. <param name="message">The message to send.</param>
  4052. <param name="flags">The flags to use for this operation.</param>
  4053. <returns>The number of clients that received the message.</returns>
  4054. <remarks>https://redis.io/commands/publish</remarks>
  4055. </member>
  4056. <member name="M:StackExchange.Redis.IDatabase.Execute(System.String,System.Object[])">
  4057. <summary>
  4058. Execute an arbitrary command against the server; this is primarily intended for
  4059. executing modules, but may also be used to provide access to new features that lack
  4060. a direct API.
  4061. </summary>
  4062. <param name="command">The command to run.</param>
  4063. <param name="args">The arguments to pass for the command.</param>
  4064. <remarks>This API should be considered an advanced feature; inappropriate use can be harmful</remarks>
  4065. <returns>A dynamic representation of the command's result</returns>
  4066. </member>
  4067. <member name="M:StackExchange.Redis.IDatabase.Execute(System.String,System.Collections.Generic.ICollection{System.Object},StackExchange.Redis.CommandFlags)">
  4068. <summary>
  4069. Execute an arbitrary command against the server; this is primarily intended for
  4070. executing modules, but may also be used to provide access to new features that lack
  4071. a direct API.
  4072. </summary>
  4073. <param name="command">The command to run.</param>
  4074. <param name="args">The arguments to pass for the command.</param>
  4075. <param name="flags">The flags to use for this operation.</param>
  4076. <remarks>This API should be considered an advanced feature; inappropriate use can be harmful</remarks>
  4077. <returns>A dynamic representation of the command's result</returns>
  4078. </member>
  4079. <member name="M:StackExchange.Redis.IDatabase.ScriptEvaluate(System.String,StackExchange.Redis.RedisKey[],StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  4080. <summary>
  4081. Execute a Lua script against the server.
  4082. </summary>
  4083. <param name="script">The script to execute.</param>
  4084. <param name="keys">The keys to execute against.</param>
  4085. <param name="values">The values to execute against.</param>
  4086. <param name="flags">The flags to use for this operation.</param>
  4087. <returns>A dynamic representation of the script's result</returns>
  4088. <remarks>https://redis.io/commands/eval</remarks>
  4089. <remarks>https://redis.io/commands/evalsha</remarks>
  4090. </member>
  4091. <member name="M:StackExchange.Redis.IDatabase.ScriptEvaluate(System.Byte[],StackExchange.Redis.RedisKey[],StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  4092. <summary>
  4093. Execute a Lua script against the server using just the SHA1 hash
  4094. </summary>
  4095. <param name="hash">The hash of the script to execute.</param>
  4096. <param name="keys">The keys to execute against.</param>
  4097. <param name="values">The values to execute against.</param>
  4098. <param name="flags">The flags to use for this operation.</param>
  4099. <returns>A dynamic representation of the script's result</returns>
  4100. <remarks>https://redis.io/commands/evalsha</remarks>
  4101. </member>
  4102. <member name="M:StackExchange.Redis.IDatabase.ScriptEvaluate(StackExchange.Redis.LuaScript,System.Object,StackExchange.Redis.CommandFlags)">
  4103. <summary>
  4104. Execute a lua script against the server, using previously prepared script.
  4105. Named parameters, if any, are provided by the `parameters` object.
  4106. </summary>
  4107. <param name="script">The script to execute.</param>
  4108. <param name="parameters">The parameters to pass to the script.</param>
  4109. <param name="flags">The flags to use for this operation.</param>
  4110. <returns>A dynamic representation of the script's result</returns>
  4111. <remarks>https://redis.io/commands/eval</remarks>
  4112. </member>
  4113. <member name="M:StackExchange.Redis.IDatabase.ScriptEvaluate(StackExchange.Redis.LoadedLuaScript,System.Object,StackExchange.Redis.CommandFlags)">
  4114. <summary>
  4115. Execute a lua script against the server, using previously prepared and loaded script.
  4116. This method sends only the SHA1 hash of the lua script to Redis.
  4117. Named parameters, if any, are provided by the `parameters` object.
  4118. </summary>
  4119. <param name="script">The already-loaded script to execute.</param>
  4120. <param name="parameters">The parameters to pass to the script.</param>
  4121. <param name="flags">The flags to use for this operation.</param>
  4122. <returns>A dynamic representation of the script's result</returns>
  4123. <remarks>https://redis.io/commands/eval</remarks>
  4124. </member>
  4125. <member name="M:StackExchange.Redis.IDatabase.SetAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4126. <summary>
  4127. Add the specified member to the set stored at key.
  4128. Specified members that are already a member of this set are ignored.
  4129. If key does not exist, a new set is created before adding the specified members.
  4130. </summary>
  4131. <param name="key">The key of the set.</param>
  4132. <param name="value">The value to add to the set.</param>
  4133. <param name="flags">The flags to use for this operation.</param>
  4134. <returns>True if the specified member was not already present in the set, else False</returns>
  4135. <remarks>https://redis.io/commands/sadd</remarks>
  4136. </member>
  4137. <member name="M:StackExchange.Redis.IDatabase.SetAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  4138. <summary>
  4139. Add the specified members to the set stored at key.
  4140. Specified members that are already a member of this set are ignored.
  4141. If key does not exist, a new set is created before adding the specified members.
  4142. </summary>
  4143. <param name="key">The key of the set.</param>
  4144. <param name="values">The values to add to the set.</param>
  4145. <param name="flags">The flags to use for this operation.</param>
  4146. <returns>The number of elements that were added to the set, not including all the elements already present into the set.</returns>
  4147. <remarks>https://redis.io/commands/sadd</remarks>
  4148. </member>
  4149. <member name="M:StackExchange.Redis.IDatabase.SetCombine(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  4150. <summary>
  4151. Returns the members of the set resulting from the specified operation against the given sets.
  4152. </summary>
  4153. <param name="operation">The operation to perform.</param>
  4154. <param name="first">The key of the first set.</param>
  4155. <param name="second">The key of the second set.</param>
  4156. <param name="flags">The flags to use for this operation.</param>
  4157. <returns>List with members of the resulting set.</returns>
  4158. <remarks>https://redis.io/commands/sunion</remarks>
  4159. <remarks>https://redis.io/commands/sinter</remarks>
  4160. <remarks>https://redis.io/commands/sdiff</remarks>
  4161. </member>
  4162. <member name="M:StackExchange.Redis.IDatabase.SetCombine(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  4163. <summary>
  4164. Returns the members of the set resulting from the specified operation against the given sets.
  4165. </summary>
  4166. <param name="operation">The operation to perform.</param>
  4167. <param name="keys">The keys of the sets to operate on.</param>
  4168. <param name="flags">The flags to use for this operation.</param>
  4169. <returns>List with members of the resulting set.</returns>
  4170. <remarks>https://redis.io/commands/sunion</remarks>
  4171. <remarks>https://redis.io/commands/sinter</remarks>
  4172. <remarks>https://redis.io/commands/sdiff</remarks>
  4173. </member>
  4174. <member name="M:StackExchange.Redis.IDatabase.SetCombineAndStore(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  4175. <summary>
  4176. This command is equal to SetCombine, but instead of returning the resulting set, it is stored in destination. If destination already exists, it is overwritten.
  4177. </summary>
  4178. <param name="operation">The operation to perform.</param>
  4179. <param name="destination">The key of the destination set.</param>
  4180. <param name="first">The key of the first set.</param>
  4181. <param name="second">The key of the second set.</param>
  4182. <param name="flags">The flags to use for this operation.</param>
  4183. <returns>The number of elements in the resulting set.</returns>
  4184. <remarks>https://redis.io/commands/sunionstore</remarks>
  4185. <remarks>https://redis.io/commands/sinterstore</remarks>
  4186. <remarks>https://redis.io/commands/sdiffstore</remarks>
  4187. </member>
  4188. <member name="M:StackExchange.Redis.IDatabase.SetCombineAndStore(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  4189. <summary>
  4190. This command is equal to SetCombine, but instead of returning the resulting set, it is stored in destination. If destination already exists, it is overwritten.
  4191. </summary>
  4192. <param name="operation">The operation to perform.</param>
  4193. <param name="destination">The key of the destination set.</param>
  4194. <param name="keys">The keys of the sets to operate on.</param>
  4195. <param name="flags">The flags to use for this operation.</param>
  4196. <returns>The number of elements in the resulting set.</returns>
  4197. <remarks>https://redis.io/commands/sunionstore</remarks>
  4198. <remarks>https://redis.io/commands/sinterstore</remarks>
  4199. <remarks>https://redis.io/commands/sdiffstore</remarks>
  4200. </member>
  4201. <member name="M:StackExchange.Redis.IDatabase.SetContains(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4202. <summary>
  4203. Returns if member is a member of the set stored at key.
  4204. </summary>
  4205. <param name="key">The key of the set.</param>
  4206. <param name="value">The value to check for .</param>
  4207. <param name="flags">The flags to use for this operation.</param>
  4208. <returns>1 if the element is a member of the set. 0 if the element is not a member of the set, or if key does not exist.</returns>
  4209. <remarks>https://redis.io/commands/sismember</remarks>
  4210. </member>
  4211. <member name="M:StackExchange.Redis.IDatabase.SetLength(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  4212. <summary>
  4213. Returns the set cardinality (number of elements) of the set stored at key.
  4214. </summary>
  4215. <param name="key">The key of the set.</param>
  4216. <param name="flags">The flags to use for this operation.</param>
  4217. <returns>The cardinality (number of elements) of the set, or 0 if key does not exist.</returns>
  4218. <remarks>https://redis.io/commands/scard</remarks>
  4219. </member>
  4220. <member name="M:StackExchange.Redis.IDatabase.SetMembers(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  4221. <summary>
  4222. Returns all the members of the set value stored at key.
  4223. </summary>
  4224. <param name="key">The key of the set.</param>
  4225. <param name="flags">The flags to use for this operation.</param>
  4226. <returns>All elements of the set.</returns>
  4227. <remarks>https://redis.io/commands/smembers</remarks>
  4228. </member>
  4229. <member name="M:StackExchange.Redis.IDatabase.SetMove(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4230. <summary>
  4231. Move member from the set at source to the set at destination. This operation is atomic. In every given moment the element will appear to be a member of source or destination for other clients.
  4232. When the specified element already exists in the destination set, it is only removed from the source set.
  4233. </summary>
  4234. <param name="source">The key of the source set.</param>
  4235. <param name="destination">The key of the destination set.</param>
  4236. <param name="value">The value to move.</param>
  4237. <param name="flags">The flags to use for this operation.</param>
  4238. <returns>1 if the element is moved. 0 if the element is not a member of source and no operation was performed.</returns>
  4239. <remarks>https://redis.io/commands/smove</remarks>
  4240. </member>
  4241. <member name="M:StackExchange.Redis.IDatabase.SetPop(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  4242. <summary>
  4243. Removes and returns a random element from the set value stored at key.
  4244. </summary>
  4245. <param name="key">The key of the set.</param>
  4246. <param name="flags">The flags to use for this operation.</param>
  4247. <returns>The removed element, or nil when key does not exist.</returns>
  4248. <remarks>https://redis.io/commands/spop</remarks>
  4249. </member>
  4250. <member name="M:StackExchange.Redis.IDatabase.SetPop(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  4251. <summary>
  4252. Removes and returns the specified number of random elements from the set value stored at key.
  4253. </summary>
  4254. <param name="key">The key of the set.</param>
  4255. <param name="count">The number of elements to return.</param>
  4256. <param name="flags">The flags to use for this operation.</param>
  4257. <returns>An array of elements, or an empty array when key does not exist.</returns>
  4258. <remarks>https://redis.io/commands/spop</remarks>
  4259. </member>
  4260. <member name="M:StackExchange.Redis.IDatabase.SetRandomMember(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  4261. <summary>
  4262. Return a random element from the set value stored at key.
  4263. </summary>
  4264. <param name="key">The key of the set.</param>
  4265. <param name="flags">The flags to use for this operation.</param>
  4266. <returns>The randomly selected element, or nil when key does not exist</returns>
  4267. <remarks>https://redis.io/commands/srandmember</remarks>
  4268. </member>
  4269. <member name="M:StackExchange.Redis.IDatabase.SetRandomMembers(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  4270. <summary>
  4271. Return an array of count distinct elements if count is positive. If called with a negative count the behavior changes and the command is allowed to return the same element multiple times.
  4272. In this case the numer of returned elements is the absolute value of the specified count.
  4273. </summary>
  4274. <param name="key">The key of the set.</param>
  4275. <param name="count">The count of members to get.</param>
  4276. <param name="flags">The flags to use for this operation.</param>
  4277. <returns>An array of elements, or an empty array when key does not exist</returns>
  4278. <remarks>https://redis.io/commands/srandmember</remarks>
  4279. </member>
  4280. <member name="M:StackExchange.Redis.IDatabase.SetRemove(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4281. <summary>
  4282. Remove the specified member from the set stored at key. Specified members that are not a member of this set are ignored.
  4283. </summary>
  4284. <param name="key">The key of the set.</param>
  4285. <param name="value">The value to remove.</param>
  4286. <param name="flags">The flags to use for this operation.</param>
  4287. <returns>True if the specified member was already present in the set, else False</returns>
  4288. <remarks>https://redis.io/commands/srem</remarks>
  4289. </member>
  4290. <member name="M:StackExchange.Redis.IDatabase.SetRemove(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  4291. <summary>
  4292. Remove the specified members from the set stored at key. Specified members that are not a member of this set are ignored.
  4293. </summary>
  4294. <param name="key">The key of the set.</param>
  4295. <param name="values">The values to remove.</param>
  4296. <param name="flags">The flags to use for this operation.</param>
  4297. <returns>The number of members that were removed from the set, not including non existing members.</returns>
  4298. <remarks>https://redis.io/commands/srem</remarks>
  4299. </member>
  4300. <member name="M:StackExchange.Redis.IDatabase.SetScan(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int32,StackExchange.Redis.CommandFlags)">
  4301. <summary>
  4302. The SSCAN command is used to incrementally iterate over set
  4303. </summary>
  4304. <param name="key">The key of the set.</param>
  4305. <param name="pattern">The pattern to match.</param>
  4306. <param name="pageSize">The page size to iterate by.</param>
  4307. <param name="flags">The flags to use for this operation.</param>
  4308. <returns>Yields all matching elements of the set.</returns>
  4309. <remarks>https://redis.io/commands/sscan</remarks>
  4310. </member>
  4311. <member name="M:StackExchange.Redis.IDatabase.SetScan(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int32,System.Int64,System.Int32,StackExchange.Redis.CommandFlags)">
  4312. <summary>
  4313. The SSCAN command is used to incrementally iterate over set; note: to resume an iteration via <i>cursor</i>, cast the original enumerable or enumerator to <i>IScanningCursor</i>.
  4314. </summary>
  4315. <param name="key">The key of the set.</param>
  4316. <param name="pattern">The pattern to match.</param>
  4317. <param name="pageSize">The page size to iterate by.</param>
  4318. <param name="cursor">The cursor position to start at.</param>
  4319. <param name="pageOffset">The page offset to start at.</param>
  4320. <param name="flags">The flags to use for this operation.</param>
  4321. <returns>Yields all matching elements of the set.</returns>
  4322. <remarks>https://redis.io/commands/sscan</remarks>
  4323. </member>
  4324. <member name="M:StackExchange.Redis.IDatabase.Sort(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.Order,StackExchange.Redis.SortType,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  4325. <summary>
  4326. Sorts a list, set or sorted set (numerically or alphabetically, ascending by default); By default, the elements themselves are compared, but the values can also be
  4327. used to perform external key-lookups using the <c>by</c> parameter. By default, the elements themselves are returned, but external key-lookups (one or many) can
  4328. be performed instead by specifying the <c>get</c> parameter (note that <c>#</c> specifies the element itself, when used in <c>get</c>).
  4329. Referring to the <a href="https://redis.io/commands/sort">redis SORT documentation </a> for examples is recommended. When used in hashes, <c>by</c> and <c>get</c>
  4330. can be used to specify fields using <c>-&gt;</c> notation (again, refer to redis documentation).
  4331. </summary>
  4332. <param name="key">The key of the list, set, or sorted set.</param>
  4333. <param name="skip">How many entries to skip on the return.</param>
  4334. <param name="take">How many entries to take on the return.</param>
  4335. <param name="order">The ascending or descending order (defaults to ascending).</param>
  4336. <param name="sortType">The sorting method (defaults to numeric).</param>
  4337. <param name="by">The key pattern to sort by, if any. e.g. ExternalKey_* would sort by ExternalKey_{listvalue} as a lookup.</param>
  4338. <param name="get">The key pattern to sort by, if any e.g. ExternalKey_* would return the value of ExternalKey_{listvalue} for each entry.</param>
  4339. <param name="flags">The flags to use for this operation.</param>
  4340. <returns>The sorted elements, or the external values if <c>get</c> is specified.</returns>
  4341. <remarks>https://redis.io/commands/sort</remarks>
  4342. </member>
  4343. <member name="M:StackExchange.Redis.IDatabase.SortAndStore(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.Order,StackExchange.Redis.SortType,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  4344. <summary>
  4345. Sorts a list, set or sorted set (numerically or alphabetically, ascending by default); By default, the elements themselves are compared, but the values can also be
  4346. used to perform external key-lookups using the <c>by</c> parameter. By default, the elements themselves are returned, but external key-lookups (one or many) can
  4347. be performed instead by specifying the <c>get</c> parameter (note that <c>#</c> specifies the element itself, when used in <c>get</c>).
  4348. Referring to the <a href="https://redis.io/commands/sort">redis SORT documentation </a> for examples is recommended. When used in hashes, <c>by</c> and <c>get</c>
  4349. can be used to specify fields using <c>-&gt;</c> notation (again, refer to redis documentation).
  4350. </summary>
  4351. <param name="destination">The destination key to store results in.</param>
  4352. <param name="key">The key of the list, set, or sorted set.</param>
  4353. <param name="skip">How many entries to skip on the return.</param>
  4354. <param name="take">How many entries to take on the return.</param>
  4355. <param name="order">The ascending or descending order (defaults to ascending).</param>
  4356. <param name="sortType">The sorting method (defaults to numeric).</param>
  4357. <param name="by">The key pattern to sort by, if any. e.g. ExternalKey_* would sort by ExternalKey_{listvalue} as a lookup.</param>
  4358. <param name="get">The key pattern to sort by, if any e.g. ExternalKey_* would return the value of ExternalKey_{listvalue} for each entry.</param>
  4359. <param name="flags">The flags to use for this operation.</param>
  4360. <returns>The number of elements stored in the new list.</returns>
  4361. <remarks>https://redis.io/commands/sort</remarks>
  4362. </member>
  4363. <member name="M:StackExchange.Redis.IDatabase.SortedSetAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.CommandFlags)">
  4364. <summary>
  4365. Adds the specified member with the specified score to the sorted set stored at key. If the specified member is already a member of the sorted set, the score is updated and the element reinserted at the right position to ensure the correct ordering.
  4366. </summary>
  4367. <param name="key">The key of the sorted set.</param>
  4368. <param name="member">The member to add to the sorted set.</param>
  4369. <param name="score">The score for the member to add to the sorted set.</param>
  4370. <param name="flags">The flags to use for this operation.</param>
  4371. <returns>True if the value was added, False if it already existed (the score is still updated)</returns>
  4372. <remarks>https://redis.io/commands/zadd</remarks>
  4373. </member>
  4374. <member name="M:StackExchange.Redis.IDatabase.SortedSetAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  4375. <summary>
  4376. Adds the specified member with the specified score to the sorted set stored at key. If the specified member is already a member of the sorted set, the score is updated and the element reinserted at the right position to ensure the correct ordering.
  4377. </summary>
  4378. <param name="key">The key of the sorted set.</param>
  4379. <param name="member">The member to add to the sorted set.</param>
  4380. <param name="score">The score for the member to add to the sorted set.</param>
  4381. <param name="when">What conditions to add the element under (defaults to always).</param>
  4382. <param name="flags">The flags to use for this operation.</param>
  4383. <returns>True if the value was added, False if it already existed (the score is still updated)</returns>
  4384. <remarks>https://redis.io/commands/zadd</remarks>
  4385. </member>
  4386. <member name="M:StackExchange.Redis.IDatabase.SortedSetAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.SortedSetEntry[],StackExchange.Redis.CommandFlags)">
  4387. <summary>
  4388. Adds all the specified members with the specified scores to the sorted set stored at key. If a specified member is already a member of the sorted set, the score is updated and the element reinserted at the right position to ensure the correct ordering.
  4389. </summary>
  4390. <param name="key">The key of the sorted set.</param>
  4391. <param name="values">The members and vlues to add to the sorted set.</param>
  4392. <param name="flags">The flags to use for this operation.</param>
  4393. <returns>The number of elements added to the sorted sets, not including elements already existing for which the score was updated.</returns>
  4394. <remarks>https://redis.io/commands/zadd</remarks>
  4395. </member>
  4396. <member name="M:StackExchange.Redis.IDatabase.SortedSetAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.SortedSetEntry[],StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  4397. <summary>
  4398. Adds all the specified members with the specified scores to the sorted set stored at key. If a specified member is already a member of the sorted set, the score is updated and the element reinserted at the right position to ensure the correct ordering.
  4399. </summary>
  4400. <param name="key">The key of the sorted set.</param>
  4401. <param name="values">The members and vlues to add to the sorted set.</param>
  4402. <param name="when">What conditions to add the element under (defaults to always).</param>
  4403. <param name="flags">The flags to use for this operation.</param>
  4404. <returns>The number of elements added to the sorted sets, not including elements already existing for which the score was updated.</returns>
  4405. <remarks>https://redis.io/commands/zadd</remarks>
  4406. </member>
  4407. <member name="M:StackExchange.Redis.IDatabase.SortedSetCombineAndStore(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.Aggregate,StackExchange.Redis.CommandFlags)">
  4408. <summary>
  4409. Computes a set operation over two sorted sets, and stores the result in destination, optionally performing
  4410. a specific aggregation (defaults to sum).
  4411. </summary>
  4412. <param name="operation">The operation to perform.</param>
  4413. <param name="destination">The key to store the results in.</param>
  4414. <param name="first">The key of the first sorted set.</param>
  4415. <param name="second">The key of the second sorted set.</param>
  4416. <param name="aggregate">The aggregation method (defaults to sum).</param>
  4417. <param name="flags">The flags to use for this operation.</param>
  4418. <remarks>https://redis.io/commands/zunionstore</remarks>
  4419. <remarks>https://redis.io/commands/zinterstore</remarks>
  4420. <returns>the number of elements in the resulting sorted set at destination</returns>
  4421. </member>
  4422. <member name="M:StackExchange.Redis.IDatabase.SortedSetCombineAndStore(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey[],System.Double[],StackExchange.Redis.Aggregate,StackExchange.Redis.CommandFlags)">
  4423. <summary>
  4424. Computes a set operation over multiple sorted sets (optionally using per-set weights), and stores the result in destination, optionally performing
  4425. a specific aggregation (defaults to sum).
  4426. </summary>
  4427. <param name="operation">The operation to perform.</param>
  4428. <param name="destination">The key to store the results in.</param>
  4429. <param name="keys">The keys of the sorted sets.</param>
  4430. <param name="weights">The optional weights per set that correspond to <paramref name="keys"/>.</param>
  4431. <param name="aggregate">The aggregation method (defaults to sum).</param>
  4432. <param name="flags">The flags to use for this operation.</param>
  4433. <remarks>https://redis.io/commands/zunionstore</remarks>
  4434. <remarks>https://redis.io/commands/zinterstore</remarks>
  4435. <returns>the number of elements in the resulting sorted set at destination</returns>
  4436. </member>
  4437. <member name="M:StackExchange.Redis.IDatabase.SortedSetDecrement(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.CommandFlags)">
  4438. <summary>
  4439. Decrements the score of member in the sorted set stored at key by decrement. If member does not exist in the sorted set, it is added with -decrement as its score (as if its previous score was 0.0).
  4440. </summary>
  4441. <param name="key">The key of the sorted set.</param>
  4442. <param name="member">The member to decrement.</param>
  4443. <param name="value">The amount to decrement by.</param>
  4444. <param name="flags">The flags to use for this operation.</param>
  4445. <returns>The new score of member.</returns>
  4446. <remarks>https://redis.io/commands/zincrby</remarks>
  4447. </member>
  4448. <member name="M:StackExchange.Redis.IDatabase.SortedSetIncrement(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.CommandFlags)">
  4449. <summary>
  4450. Increments the score of member in the sorted set stored at key by increment. If member does not exist in the sorted set, it is added with increment as its score (as if its previous score was 0.0).
  4451. </summary>
  4452. <param name="key">The key of the sorted set.</param>
  4453. <param name="member">The member to increment.</param>
  4454. <param name="value">The amount to increment by.</param>
  4455. <param name="flags">The flags to use for this operation.</param>
  4456. <returns>The new score of member.</returns>
  4457. <remarks>https://redis.io/commands/zincrby</remarks>
  4458. </member>
  4459. <member name="M:StackExchange.Redis.IDatabase.SortedSetLength(StackExchange.Redis.RedisKey,System.Double,System.Double,StackExchange.Redis.Exclude,StackExchange.Redis.CommandFlags)">
  4460. <summary>
  4461. Returns the sorted set cardinality (number of elements) of the sorted set stored at key.
  4462. </summary>
  4463. <param name="key">The key of the sorted set.</param>
  4464. <param name="min">The min score to filter by (defaults to negative infinity).</param>
  4465. <param name="max">The max score to filter by (defaults to positive infinity).</param>
  4466. <param name="exclude">Whether to exclude <paramref name="min"/> and <paramref name="max"/> from the range check (defaults to both inclusive).</param>
  4467. <param name="flags">The flags to use for this operation.</param>
  4468. <returns>The cardinality (number of elements) of the sorted set, or 0 if key does not exist.</returns>
  4469. <remarks>https://redis.io/commands/zcard</remarks>
  4470. </member>
  4471. <member name="M:StackExchange.Redis.IDatabase.SortedSetLengthByValue(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.Exclude,StackExchange.Redis.CommandFlags)">
  4472. <summary>
  4473. When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command returns the number of elements in the sorted set at key with a value between min and max.
  4474. </summary>
  4475. <param name="key">The key of the sorted set.</param>
  4476. <param name="min">The min value to filter by.</param>
  4477. <param name="max">The max value to filter by.</param>
  4478. <param name="exclude">Whether to exclude <paramref name="min"/> and <paramref name="max"/> from the range check (defaults to both inclusive).</param>
  4479. <param name="flags">The flags to use for this operation.</param>
  4480. <returns>The number of elements in the specified score range.</returns>
  4481. <remarks>https://redis.io/commands/zlexcount</remarks>
  4482. </member>
  4483. <member name="M:StackExchange.Redis.IDatabase.SortedSetRangeByRank(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  4484. <summary>
  4485. Returns the specified range of elements in the sorted set stored at key. By default the elements are considered to be ordered from the lowest to the highest score. Lexicographical order is used for elements with equal score.
  4486. Both start and stop are zero-based indexes, where 0 is the first element, 1 is the next element and so on. They can also be negative numbers indicating offsets from the end of the sorted set, with -1 being the last element of the sorted set, -2 the penultimate element and so on.
  4487. </summary>
  4488. <param name="key">The key of the sorted set.</param>
  4489. <param name="start">The start index to get.</param>
  4490. <param name="stop">The stop index to get.</param>
  4491. <param name="order">The order to sort by (defaults to ascending).</param>
  4492. <param name="flags">The flags to use for this operation.</param>
  4493. <returns>List of elements in the specified range.</returns>
  4494. <remarks>https://redis.io/commands/zrange</remarks>
  4495. <remarks>https://redis.io/commands/zrevrange</remarks>
  4496. </member>
  4497. <member name="M:StackExchange.Redis.IDatabase.SortedSetRangeByRankWithScores(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  4498. <summary>
  4499. Returns the specified range of elements in the sorted set stored at key. By default the elements are considered to be ordered from the lowest to the highest score. Lexicographical order is used for elements with equal score.
  4500. Both start and stop are zero-based indexes, where 0 is the first element, 1 is the next element and so on. They can also be negative numbers indicating offsets from the end of the sorted set, with -1 being the last element of the sorted set, -2 the penultimate element and so on.
  4501. </summary>
  4502. <param name="key">The key of the sorted set.</param>
  4503. <param name="start">The start index to get.</param>
  4504. <param name="stop">The stop index to get.</param>
  4505. <param name="order">The order to sort by (defaults to ascending).</param>
  4506. <param name="flags">The flags to use for this operation.</param>
  4507. <returns>List of elements in the specified range.</returns>
  4508. <remarks>https://redis.io/commands/zrange</remarks>
  4509. <remarks>https://redis.io/commands/zrevrange</remarks>
  4510. </member>
  4511. <member name="M:StackExchange.Redis.IDatabase.SortedSetRangeByScore(StackExchange.Redis.RedisKey,System.Double,System.Double,StackExchange.Redis.Exclude,StackExchange.Redis.Order,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  4512. <summary>
  4513. Returns the specified range of elements in the sorted set stored at key. By default the elements are considered to be ordered from the lowest to the highest score. Lexicographical order is used for elements with equal score.
  4514. Start and stop are used to specify the min and max range for score values. Similar to other range methods the values are inclusive.
  4515. </summary>
  4516. <param name="key">The key of the sorted set.</param>
  4517. <param name="start">The minimum score to filter by.</param>
  4518. <param name="stop">The maximum score to filter by.</param>
  4519. <param name="exclude">Which of <paramref name="start"/> and <paramref name="stop"/> to exclude (defaults to both inclusive).</param>
  4520. <param name="order">The order to sort by (defaults to ascending).</param>
  4521. <param name="skip">How many items to skip.</param>
  4522. <param name="take">How many items to take.</param>
  4523. <param name="flags">The flags to use for this operation.</param>
  4524. <returns>List of elements in the specified score range.</returns>
  4525. <remarks>https://redis.io/commands/zrangebyscore</remarks>
  4526. <remarks>https://redis.io/commands/zrevrangebyscore</remarks>
  4527. </member>
  4528. <member name="M:StackExchange.Redis.IDatabase.SortedSetRangeByScoreWithScores(StackExchange.Redis.RedisKey,System.Double,System.Double,StackExchange.Redis.Exclude,StackExchange.Redis.Order,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  4529. <summary>
  4530. Returns the specified range of elements in the sorted set stored at key. By default the elements are considered to be ordered from the lowest to the highest score. Lexicographical order is used for elements with equal score.
  4531. Start and stop are used to specify the min and max range for score values. Similar to other range methods the values are inclusive.
  4532. </summary>
  4533. <param name="key">The key of the sorted set.</param>
  4534. <param name="start">The minimum score to filter by.</param>
  4535. <param name="stop">The maximum score to filter by.</param>
  4536. <param name="exclude">Which of <paramref name="start"/> and <paramref name="stop"/> to exclude (defaults to both inclusive).</param>
  4537. <param name="order">The order to sort by (defaults to ascending).</param>
  4538. <param name="skip">How many items to skip.</param>
  4539. <param name="take">How many items to take.</param>
  4540. <param name="flags">The flags to use for this operation.</param>
  4541. <returns>List of elements in the specified score range.</returns>
  4542. <remarks>https://redis.io/commands/zrangebyscore</remarks>
  4543. <remarks>https://redis.io/commands/zrevrangebyscore</remarks>
  4544. </member>
  4545. <member name="M:StackExchange.Redis.IDatabase.SortedSetRangeByValue(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.Exclude,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  4546. <summary>
  4547. When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command returns all the elements in the sorted set at key with a value between min and max.
  4548. </summary>
  4549. <param name="key">The key of the sorted set.</param>
  4550. <param name="min">The min value to filter by.</param>
  4551. <param name="max">The max value to filter by.</param>
  4552. <param name="exclude">Which of <paramref name="min"/> and <paramref name="max"/> to exclude (defaults to both inclusive).</param>
  4553. <param name="skip">How many items to skip.</param>
  4554. <param name="take">How many items to take.</param>
  4555. <param name="flags">The flags to use for this operation.</param>
  4556. <remarks>https://redis.io/commands/zrangebylex</remarks>
  4557. <returns>list of elements in the specified score range.</returns>
  4558. </member>
  4559. <member name="M:StackExchange.Redis.IDatabase.SortedSetRangeByValue(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.Exclude,StackExchange.Redis.Order,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  4560. <summary>
  4561. When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command returns all the elements in the sorted set at key with a value between min and max.
  4562. </summary>
  4563. <param name="key">The key of the sorted set.</param>
  4564. <param name="min">The min value to filter by.</param>
  4565. <param name="max">The max value to filter by.</param>
  4566. <param name="exclude">Which of <paramref name="min"/> and <paramref name="max"/> to exclude (defaults to both inclusive).</param>
  4567. <param name="order">Whether to order the data ascending or descending</param>
  4568. <param name="skip">How many items to skip.</param>
  4569. <param name="take">How many items to take.</param>
  4570. <param name="flags">The flags to use for this operation.</param>
  4571. <remarks>https://redis.io/commands/zrangebylex</remarks>
  4572. <remarks>https://redis.io/commands/zrevrangebylex</remarks>
  4573. <returns>list of elements in the specified score range.</returns>
  4574. </member>
  4575. <member name="M:StackExchange.Redis.IDatabase.SortedSetRank(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  4576. <summary>
  4577. Returns the rank of member in the sorted set stored at key, by default with the scores ordered from low to high. The rank (or index) is 0-based, which means that the member with the lowest score has rank 0.
  4578. </summary>
  4579. <param name="key">The key of the sorted set.</param>
  4580. <param name="member">The member to get the rank of.</param>
  4581. <param name="order">The order to sort by (defaults to ascending).</param>
  4582. <param name="flags">The flags to use for this operation.</param>
  4583. <returns>If member exists in the sorted set, the rank of member; If member does not exist in the sorted set or key does not exist, null</returns>
  4584. <remarks>https://redis.io/commands/zrank</remarks>
  4585. <remarks>https://redis.io/commands/zrevrank</remarks>
  4586. </member>
  4587. <member name="M:StackExchange.Redis.IDatabase.SortedSetRemove(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4588. <summary>
  4589. Removes the specified member from the sorted set stored at key. Non existing members are ignored.
  4590. </summary>
  4591. <param name="key">The key of the sorted set.</param>
  4592. <param name="member">The member to remove.</param>
  4593. <param name="flags">The flags to use for this operation.</param>
  4594. <returns>True if the member existed in the sorted set and was removed; False otherwise.</returns>
  4595. <remarks>https://redis.io/commands/zrem</remarks>
  4596. </member>
  4597. <member name="M:StackExchange.Redis.IDatabase.SortedSetRemove(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  4598. <summary>
  4599. Removes the specified members from the sorted set stored at key. Non existing members are ignored.
  4600. </summary>
  4601. <param name="key">The key of the sorted set.</param>
  4602. <param name="members">The members to remove.</param>
  4603. <param name="flags">The flags to use for this operation.</param>
  4604. <returns>The number of members removed from the sorted set, not including non existing members.</returns>
  4605. <remarks>https://redis.io/commands/zrem</remarks>
  4606. </member>
  4607. <member name="M:StackExchange.Redis.IDatabase.SortedSetRemoveRangeByRank(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  4608. <summary>
  4609. Removes all elements in the sorted set stored at key with rank between start and stop. Both start and stop are 0 -based indexes with 0 being the element with the lowest score. These indexes can be negative numbers, where they indicate offsets starting at the element with the highest score. For example: -1 is the element with the highest score, -2 the element with the second highest score and so forth.
  4610. </summary>
  4611. <param name="key">The key of the sorted set.</param>
  4612. <param name="start">The minimum rank to remove.</param>
  4613. <param name="stop">The maximum rank to remove.</param>
  4614. <param name="flags">The flags to use for this operation.</param>
  4615. <returns>The number of elements removed.</returns>
  4616. <remarks>https://redis.io/commands/zremrangebyrank</remarks>
  4617. </member>
  4618. <member name="M:StackExchange.Redis.IDatabase.SortedSetRemoveRangeByScore(StackExchange.Redis.RedisKey,System.Double,System.Double,StackExchange.Redis.Exclude,StackExchange.Redis.CommandFlags)">
  4619. <summary>
  4620. Removes all elements in the sorted set stored at key with a score between min and max (inclusive by default).
  4621. </summary>
  4622. <param name="key">The key of the sorted set.</param>
  4623. <param name="start">The minimum score to remove.</param>
  4624. <param name="stop">The maximum score to remove.</param>
  4625. <param name="exclude">Which of <paramref name="start"/> and <paramref name="stop"/> to exclude (defaults to both inclusive).</param>
  4626. <param name="flags">The flags to use for this operation.</param>
  4627. <returns>The number of elements removed.</returns>
  4628. <remarks>https://redis.io/commands/zremrangebyscore</remarks>
  4629. </member>
  4630. <member name="M:StackExchange.Redis.IDatabase.SortedSetRemoveRangeByValue(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.Exclude,StackExchange.Redis.CommandFlags)">
  4631. <summary>
  4632. When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command removes all elements in the sorted set stored at key between the lexicographical range specified by min and max.
  4633. </summary>
  4634. <param name="key">The key of the sorted set.</param>
  4635. <param name="min">The minimum value to remove.</param>
  4636. <param name="max">The maximum value to remove.</param>
  4637. <param name="exclude">Which of <paramref name="min"/> and <paramref name="max"/> to exclude (defaults to both inclusive).</param>
  4638. <param name="flags">The flags to use for this operation.</param>
  4639. <returns>the number of elements removed.</returns>
  4640. <remarks>https://redis.io/commands/zremrangebylex</remarks>
  4641. </member>
  4642. <member name="M:StackExchange.Redis.IDatabase.SortedSetScan(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int32,StackExchange.Redis.CommandFlags)">
  4643. <summary>
  4644. The ZSCAN command is used to incrementally iterate over a sorted set
  4645. </summary>
  4646. <param name="key">The key of the sorted set.</param>
  4647. <param name="pattern">The pattern to match.</param>
  4648. <param name="pageSize">The page size to iterate by.</param>
  4649. <param name="flags">The flags to use for this operation.</param>
  4650. <returns>Yields all matching elements of the sorted set.</returns>
  4651. <remarks>https://redis.io/commands/zscan</remarks>
  4652. </member>
  4653. <member name="M:StackExchange.Redis.IDatabase.SortedSetScan(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int32,System.Int64,System.Int32,StackExchange.Redis.CommandFlags)">
  4654. <summary>
  4655. The ZSCAN command is used to incrementally iterate over a sorted set; note: to resume an iteration via <i>cursor</i>, cast the original enumerable or enumerator to <i>IScanningCursor</i>.
  4656. </summary>
  4657. <param name="key">The key of the sorted set.</param>
  4658. <param name="pattern">The pattern to match.</param>
  4659. <param name="pageSize">The page size to iterate by.</param>
  4660. <param name="cursor">The cursor position to start at.</param>
  4661. <param name="pageOffset">The page offset to start at.</param>
  4662. <param name="flags">The flags to use for this operation.</param>
  4663. <returns>Yields all matching elements of the sorted set.</returns>
  4664. <remarks>https://redis.io/commands/zscan</remarks>
  4665. </member>
  4666. <member name="M:StackExchange.Redis.IDatabase.SortedSetScore(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4667. <summary>
  4668. Returns the score of member in the sorted set at key; If member does not exist in the sorted set, or key does not exist, nil is returned.
  4669. </summary>
  4670. <param name="key">The key of the sorted set.</param>
  4671. <param name="member">The member to get a score for.</param>
  4672. <param name="flags">The flags to use for this operation.</param>
  4673. <returns>The score of the member.</returns>
  4674. <remarks>https://redis.io/commands/zscore</remarks>
  4675. </member>
  4676. <member name="M:StackExchange.Redis.IDatabase.SortedSetPop(StackExchange.Redis.RedisKey,StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  4677. <summary>
  4678. Removes and returns the first element from the sorted set stored at key, by default with the scores ordered from low to high.
  4679. </summary>
  4680. <param name="key">The key of the sorted set.</param>
  4681. <param name="order">The order to sort by (defaults to ascending).</param>
  4682. <param name="flags">The flags to use for this operation.</param>
  4683. <returns>The removed element, or nil when key does not exist.</returns>
  4684. <remarks>https://redis.io/commands/zpopmin</remarks>
  4685. <remarks>https://redis.io/commands/zpopmax</remarks>
  4686. </member>
  4687. <member name="M:StackExchange.Redis.IDatabase.SortedSetPop(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  4688. <summary>
  4689. Removes and returns the specified number of first elements from the sorted set stored at key, by default with the scores ordered from low to high.
  4690. </summary>
  4691. <param name="key">The key of the sorted set.</param>
  4692. <param name="count">The number of elements to return.</param>
  4693. <param name="order">The order to sort by (defaults to ascending).</param>
  4694. <param name="flags">The flags to use for this operation.</param>
  4695. <returns>An array of elements, or an empty array when key does not exist.</returns>
  4696. <remarks>https://redis.io/commands/zpopmin</remarks>
  4697. <remarks>https://redis.io/commands/zpopmax</remarks>
  4698. </member>
  4699. <member name="M:StackExchange.Redis.IDatabase.StreamAcknowledge(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4700. <summary>
  4701. Allow the consumer to mark a pending message as correctly processed. Returns the number of messages acknowledged.
  4702. </summary>
  4703. <param name="key">The key of the stream.</param>
  4704. <param name="groupName">The name of the consumer group that received the message.</param>
  4705. <param name="messageId">The ID of the message to acknowledge.</param>
  4706. <param name="flags">The flags to use for this operation.</param>
  4707. <returns>The number of messages acknowledged.</returns>
  4708. <remarks>https://redis.io/topics/streams-intro</remarks>
  4709. </member>
  4710. <member name="M:StackExchange.Redis.IDatabase.StreamAcknowledge(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  4711. <summary>
  4712. Allow the consumer to mark a pending message as correctly processed. Returns the number of messages acknowledged.
  4713. </summary>
  4714. <param name="key">The key of the stream.</param>
  4715. <param name="groupName">The name of the consumer group that received the message.</param>
  4716. <param name="messageIds">The IDs of the messages to acknowledge.</param>
  4717. <param name="flags">The flags to use for this operation.</param>
  4718. <returns>The number of messages acknowledged.</returns>
  4719. <remarks>https://redis.io/topics/streams-intro</remarks>
  4720. </member>
  4721. <member name="M:StackExchange.Redis.IDatabase.StreamAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{System.Int32},System.Boolean,StackExchange.Redis.CommandFlags)">
  4722. <summary>
  4723. Adds an entry using the specified values to the given stream key. If key does not exist, a new key holding a stream is created. The command returns the ID of the newly created stream entry.
  4724. </summary>
  4725. <param name="key">The key of the stream.</param>
  4726. <param name="streamField">The field name for the stream entry.</param>
  4727. <param name="streamValue">The value to set in the stream entry.</param>
  4728. <param name="messageId">The ID to assign to the stream entry, defaults to an auto-generated ID ("*").</param>
  4729. <param name="maxLength">The maximum length of the stream.</param>
  4730. <param name="useApproximateMaxLength">If true, the "~" argument is used to allow the stream to exceed max length by a small number. This improves performance when removing messages.</param>
  4731. <param name="flags">The flags to use for this operation.</param>
  4732. <returns>The ID of the newly created message.</returns>
  4733. <remarks>https://redis.io/commands/xadd</remarks>
  4734. </member>
  4735. <member name="M:StackExchange.Redis.IDatabase.StreamAdd(StackExchange.Redis.RedisKey,StackExchange.Redis.NameValueEntry[],System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{System.Int32},System.Boolean,StackExchange.Redis.CommandFlags)">
  4736. <summary>
  4737. Adds an entry using the specified values to the given stream key. If key does not exist, a new key holding a stream is created. The command returns the ID of the newly created stream entry.
  4738. </summary>
  4739. <param name="key">The key of the stream.</param>
  4740. <param name="streamPairs">The fields and their associated values to set in the stream entry.</param>
  4741. <param name="messageId">The ID to assign to the stream entry, defaults to an auto-generated ID ("*").</param>
  4742. <param name="maxLength">The maximum length of the stream.</param>
  4743. <param name="useApproximateMaxLength">If true, the "~" argument is used to allow the stream to exceed max length by a small number. This improves performance when removing messages.</param>
  4744. <param name="flags">The flags to use for this operation.</param>
  4745. <returns>The ID of the newly created message.</returns>
  4746. <remarks>https://redis.io/commands/xadd</remarks>
  4747. </member>
  4748. <member name="M:StackExchange.Redis.IDatabase.StreamClaim(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Int64,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  4749. <summary>
  4750. Change ownership of messages consumed, but not yet acknowledged, by a different consumer. This method returns the complete message for the claimed message(s).
  4751. </summary>
  4752. <param name="key">The key of the stream.</param>
  4753. <param name="consumerGroup">The consumer group.</param>
  4754. <param name="claimingConsumer">The consumer claiming the given message(s).</param>
  4755. <param name="minIdleTimeInMs">The minimum message idle time to allow the reassignment of the message(s).</param>
  4756. <param name="messageIds">The IDs of the messages to claim for the given consumer.</param>
  4757. <param name="flags">The flags to use for this operation.</param>
  4758. <returns>The messages successfully claimed by the given consumer.</returns>
  4759. <remarks>https://redis.io/topics/streams-intro</remarks>
  4760. </member>
  4761. <member name="M:StackExchange.Redis.IDatabase.StreamClaimIdsOnly(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Int64,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  4762. <summary>
  4763. Change ownership of messages consumed, but not yet acknowledged, by a different consumer. This method returns the IDs for the claimed message(s).
  4764. </summary>
  4765. <param name="key">The key of the stream.</param>
  4766. <param name="consumerGroup">The consumer group.</param>
  4767. <param name="claimingConsumer">The consumer claiming the given message(s).</param>
  4768. <param name="minIdleTimeInMs">The minimum message idle time to allow the reassignment of the message(s).</param>
  4769. <param name="messageIds">The IDs of the messages to claim for the given consumer.</param>
  4770. <param name="flags">The flags to use for this operation.</param>
  4771. <returns>The message IDs for the messages successfully claimed by the given consumer.</returns>
  4772. <remarks>https://redis.io/topics/streams-intro</remarks>
  4773. </member>
  4774. <member name="M:StackExchange.Redis.IDatabase.StreamConsumerGroupSetPosition(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4775. <summary>
  4776. Set the position from which to read a stream for a consumer group.
  4777. </summary>
  4778. <param name="key">The key of the stream.</param>
  4779. <param name="groupName">The name of the consumer group.</param>
  4780. <param name="position">The position from which to read for the consumer group.</param>
  4781. <param name="flags">The flags to use for this operation.</param>
  4782. <returns>True if successful, otherwise false.</returns>
  4783. </member>
  4784. <member name="M:StackExchange.Redis.IDatabase.StreamConsumerInfo(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4785. <summary>
  4786. Retrieve information about the consumers for the given consumer group. This is the equivalent of calling "XINFO GROUPS key group".
  4787. </summary>
  4788. <param name="key">The key of the stream.</param>
  4789. <param name="groupName">The consumer group name.</param>
  4790. <param name="flags">The flags to use for this operation.</param>
  4791. <returns>An instance of <see cref="T:StackExchange.Redis.StreamConsumerInfo"/> for each of the consumer group's consumers.</returns>
  4792. <remarks>https://redis.io/topics/streams-intro</remarks>
  4793. </member>
  4794. <member name="M:StackExchange.Redis.IDatabase.StreamCreateConsumerGroup(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},StackExchange.Redis.CommandFlags)">
  4795. <summary>
  4796. Create a consumer group for the given stream.
  4797. </summary>
  4798. <param name="key">The key of the stream.</param>
  4799. <param name="groupName">The name of the group to create.</param>
  4800. <param name="position">The position to begin reading the stream. Defaults to <see cref="P:StackExchange.Redis.StreamPosition.NewMessages"/>.</param>
  4801. <param name="flags">The flags to use for this operation.</param>
  4802. <returns>True if the group was created.</returns>
  4803. <remarks>https://redis.io/topics/streams-intro</remarks>
  4804. </member>
  4805. <member name="M:StackExchange.Redis.IDatabase.StreamCreateConsumerGroup(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},System.Boolean,StackExchange.Redis.CommandFlags)">
  4806. <summary>
  4807. Create a consumer group for the given stream.
  4808. </summary>
  4809. <param name="key">The key of the stream.</param>
  4810. <param name="groupName">The name of the group to create.</param>
  4811. <param name="position">The position to begin reading the stream. Defaults to <see cref="P:StackExchange.Redis.StreamPosition.NewMessages"/>.</param>
  4812. <param name="createStream">Create the stream if it does not already exist.</param>
  4813. <param name="flags">The flags to use for this operation.</param>
  4814. <returns>True if the group was created.</returns>
  4815. <remarks>https://redis.io/topics/streams-intro</remarks>
  4816. </member>
  4817. <member name="M:StackExchange.Redis.IDatabase.StreamDelete(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  4818. <summary>
  4819. Delete messages in the stream. This method does not delete the stream.
  4820. </summary>
  4821. <param name="key">The key of the stream.</param>
  4822. <param name="messageIds">The IDs of the messages to delete.</param>
  4823. <param name="flags">The flags to use for this operation.</param>
  4824. <returns>Returns the number of messages successfully deleted from the stream.</returns>
  4825. <remarks>https://redis.io/topics/streams-intro</remarks>
  4826. </member>
  4827. <member name="M:StackExchange.Redis.IDatabase.StreamDeleteConsumer(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4828. <summary>
  4829. Delete a consumer from a consumer group.
  4830. </summary>
  4831. <param name="key">The key of the stream.</param>
  4832. <param name="groupName">The name of the consumer group.</param>
  4833. <param name="consumerName">The name of the consumer.</param>
  4834. <param name="flags">The flags to use for this operation.</param>
  4835. <returns>The number of messages that were pending for the deleted consumer.</returns>
  4836. </member>
  4837. <member name="M:StackExchange.Redis.IDatabase.StreamDeleteConsumerGroup(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4838. <summary>
  4839. Delete a consumer group.
  4840. </summary>
  4841. <param name="key">The key of the stream.</param>
  4842. <param name="groupName">The name of the consumer group.</param>
  4843. <param name="flags">The flags to use for this operation.</param>
  4844. <returns>True if deleted, otherwise false.</returns>
  4845. </member>
  4846. <member name="M:StackExchange.Redis.IDatabase.StreamGroupInfo(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  4847. <summary>
  4848. Retrieve information about the groups created for the given stream. This is the equivalent of calling "XINFO GROUPS key".
  4849. </summary>
  4850. <param name="key">The key of the stream.</param>
  4851. <param name="flags">The flags to use for this operation.</param>
  4852. <returns>An instance of <see cref="T:StackExchange.Redis.StreamGroupInfo"/> for each of the stream's groups.</returns>
  4853. <remarks>https://redis.io/topics/streams-intro</remarks>
  4854. </member>
  4855. <member name="M:StackExchange.Redis.IDatabase.StreamInfo(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  4856. <summary>
  4857. Retrieve information about the given stream. This is the equivalent of calling "XINFO STREAM key".
  4858. </summary>
  4859. <param name="key">The key of the stream.</param>
  4860. <param name="flags">The flags to use for this operation.</param>
  4861. <returns>A <see cref="T:StackExchange.Redis.StreamInfo"/> instance with information about the stream.</returns>
  4862. <remarks>https://redis.io/topics/streams-intro</remarks>
  4863. </member>
  4864. <member name="M:StackExchange.Redis.IDatabase.StreamLength(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  4865. <summary>
  4866. Return the number of entries in a stream.
  4867. </summary>
  4868. <param name="key">The key of the stream.</param>
  4869. <param name="flags">The flags to use for this operation.</param>
  4870. <returns>The number of entries inside the given stream.</returns>
  4871. <remarks>https://redis.io/commands/xlen</remarks>
  4872. </member>
  4873. <member name="M:StackExchange.Redis.IDatabase.StreamPending(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  4874. <summary>
  4875. View information about pending messages for a stream.
  4876. </summary>
  4877. <param name="key">The key of the stream.</param>
  4878. <param name="groupName">The name of the consumer group</param>
  4879. <param name="flags">The flags to use for this operation.</param>
  4880. <returns>An instance of <see cref="T:StackExchange.Redis.StreamPendingInfo"/>. <see cref="T:StackExchange.Redis.StreamPendingInfo"/> contains the number of pending messages, the highest and lowest ID of the pending messages, and the consumers with their pending message count.</returns>
  4881. <remarks>The equivalent of calling XPENDING key group.</remarks>
  4882. <remarks>https://redis.io/commands/xpending</remarks>
  4883. </member>
  4884. <member name="M:StackExchange.Redis.IDatabase.StreamPendingMessages(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int32,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{StackExchange.Redis.RedisValue},StackExchange.Redis.CommandFlags)">
  4885. <summary>
  4886. View information about each pending message.
  4887. </summary>
  4888. <param name="key">The key of the stream.</param>
  4889. <param name="groupName">The name of the consumer group.</param>
  4890. <param name="count">The maximum number of pending messages to return.</param>
  4891. <param name="consumerName">The consumer name for the pending messages. Pass RedisValue.Null to include pending messages for all consumers.</param>
  4892. <param name="minId">The minimum ID from which to read the stream of pending messages. The method will default to reading from the beginning of the stream.</param>
  4893. <param name="maxId">The maximum ID to read to within the stream of pending messages. The method will default to reading to the end of the stream.</param>
  4894. <param name="flags">The flags to use for this operation.</param>
  4895. <returns>An instance of <see cref="T:StackExchange.Redis.StreamPendingMessageInfo"/> for each pending message.</returns>
  4896. <remarks>Equivalent of calling XPENDING key group start-id end-id count consumer-name.</remarks>
  4897. <remarks>https://redis.io/commands/xpending</remarks>
  4898. </member>
  4899. <member name="M:StackExchange.Redis.IDatabase.StreamRange(StackExchange.Redis.RedisKey,System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{System.Int32},StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  4900. <summary>
  4901. Read a stream using the given range of IDs.
  4902. </summary>
  4903. <param name="key">The key of the stream.</param>
  4904. <param name="minId">The minimum ID from which to read the stream. The method will default to reading from the beginning of the stream.</param>
  4905. <param name="maxId">The maximum ID to read to within the stream. The method will default to reading to the end of the stream.</param>
  4906. <param name="count">The maximum number of messages to return.</param>
  4907. <param name="messageOrder">The order of the messages. <see cref="F:StackExchange.Redis.Order.Ascending"/> will execute XRANGE and <see cref="F:StackExchange.Redis.Order.Descending"/> wil execute XREVRANGE.</param>
  4908. <param name="flags">The flags to use for this operation.</param>
  4909. <returns>Returns an instance of <see cref="T:StackExchange.Redis.StreamEntry"/> for each message returned.</returns>
  4910. <remarks>https://redis.io/commands/xrange</remarks>
  4911. </member>
  4912. <member name="M:StackExchange.Redis.IDatabase.StreamRead(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Nullable{System.Int32},StackExchange.Redis.CommandFlags)">
  4913. <summary>
  4914. Read from a single stream.
  4915. </summary>
  4916. <param name="key">The key of the stream.</param>
  4917. <param name="position">The position from which to read the stream.</param>
  4918. <param name="count">The maximum number of messages to return.</param>
  4919. <param name="flags">The flags to use for this operation.</param>
  4920. <returns>Returns a value of <see cref="T:StackExchange.Redis.StreamEntry"/> for each message returned.</returns>
  4921. <remarks>Equivalent of calling XREAD COUNT num STREAMS key id.</remarks>
  4922. <remarks>https://redis.io/commands/xread</remarks>
  4923. </member>
  4924. <member name="M:StackExchange.Redis.IDatabase.StreamRead(StackExchange.Redis.StreamPosition[],System.Nullable{System.Int32},StackExchange.Redis.CommandFlags)">
  4925. <summary>
  4926. Read from multiple streams.
  4927. </summary>
  4928. <param name="streamPositions">Array of streams and the positions from which to begin reading for each stream.</param>
  4929. <param name="countPerStream">The maximum number of messages to return from each stream.</param>
  4930. <param name="flags">The flags to use for this operation.</param>
  4931. <returns>A value of <see cref="T:StackExchange.Redis.RedisStream"/> for each stream.</returns>
  4932. <remarks>Equivalent of calling XREAD COUNT num STREAMS key1 key2 id1 id2.</remarks>
  4933. <remarks>https://redis.io/commands/xread</remarks>
  4934. </member>
  4935. <member name="M:StackExchange.Redis.IDatabase.StreamReadGroup(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{System.Int32},StackExchange.Redis.CommandFlags)">
  4936. <summary>
  4937. Read messages from a stream into an associated consumer group.
  4938. </summary>
  4939. <param name="key">The key of the stream.</param>
  4940. <param name="groupName">The name of the consumer group.</param>
  4941. <param name="consumerName">The consumer name.</param>
  4942. <param name="position">The position from which to read the stream. Defaults to <see cref="P:StackExchange.Redis.StreamPosition.NewMessages"/> when null.</param>
  4943. <param name="count">The maximum number of messages to return.</param>
  4944. <param name="flags">The flags to use for this operation.</param>
  4945. <returns>Returns a value of <see cref="T:StackExchange.Redis.StreamEntry"/> for each message returned.</returns>
  4946. <remarks>https://redis.io/commands/xreadgroup</remarks>
  4947. </member>
  4948. <member name="M:StackExchange.Redis.IDatabase.StreamReadGroup(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{System.Int32},System.Boolean,StackExchange.Redis.CommandFlags)">
  4949. <summary>
  4950. Read messages from a stream into an associated consumer group.
  4951. </summary>
  4952. <param name="key">The key of the stream.</param>
  4953. <param name="groupName">The name of the consumer group.</param>
  4954. <param name="consumerName">The consumer name.</param>
  4955. <param name="position">The position from which to read the stream. Defaults to <see cref="P:StackExchange.Redis.StreamPosition.NewMessages"/> when null.</param>
  4956. <param name="count">The maximum number of messages to return.</param>
  4957. <param name="noAck">When true, the message will not be added to the pending message list.</param>
  4958. <param name="flags">The flags to use for this operation.</param>
  4959. <returns>Returns a value of <see cref="T:StackExchange.Redis.StreamEntry"/> for each message returned.</returns>
  4960. <remarks>https://redis.io/commands/xreadgroup</remarks>
  4961. </member>
  4962. <member name="M:StackExchange.Redis.IDatabase.StreamReadGroup(StackExchange.Redis.StreamPosition[],StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Nullable{System.Int32},StackExchange.Redis.CommandFlags)">
  4963. <summary>
  4964. Read from multiple streams into the given consumer group. The consumer group with the given <paramref name="groupName"/>
  4965. will need to have been created for each stream prior to calling this method.
  4966. </summary>
  4967. <param name="streamPositions">Array of streams and the positions from which to begin reading for each stream.</param>
  4968. <param name="groupName">The name of the consumer group.</param>
  4969. <param name="consumerName"></param>
  4970. <param name="countPerStream">The maximum number of messages to return from each stream.</param>
  4971. <param name="flags">The flags to use for this operation.</param>
  4972. <returns>A value of <see cref="T:StackExchange.Redis.RedisStream"/> for each stream.</returns>
  4973. <remarks>Equivalent of calling XREADGROUP GROUP groupName consumerName COUNT countPerStream STREAMS stream1 stream2 id1 id2</remarks>
  4974. <remarks>https://redis.io/commands/xreadgroup</remarks>
  4975. </member>
  4976. <member name="M:StackExchange.Redis.IDatabase.StreamReadGroup(StackExchange.Redis.StreamPosition[],StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Nullable{System.Int32},System.Boolean,StackExchange.Redis.CommandFlags)">
  4977. <summary>
  4978. Read from multiple streams into the given consumer group. The consumer group with the given <paramref name="groupName"/>
  4979. will need to have been created for each stream prior to calling this method.
  4980. </summary>
  4981. <param name="streamPositions">Array of streams and the positions from which to begin reading for each stream.</param>
  4982. <param name="groupName">The name of the consumer group.</param>
  4983. <param name="consumerName"></param>
  4984. <param name="countPerStream">The maximum number of messages to return from each stream.</param>
  4985. <param name="noAck">When true, the message will not be added to the pending message list.</param>
  4986. <param name="flags">The flags to use for this operation.</param>
  4987. <returns>A value of <see cref="T:StackExchange.Redis.RedisStream"/> for each stream.</returns>
  4988. <remarks>Equivalent of calling XREADGROUP GROUP groupName consumerName COUNT countPerStream STREAMS stream1 stream2 id1 id2</remarks>
  4989. <remarks>https://redis.io/commands/xreadgroup</remarks>
  4990. </member>
  4991. <member name="M:StackExchange.Redis.IDatabase.StreamTrim(StackExchange.Redis.RedisKey,System.Int32,System.Boolean,StackExchange.Redis.CommandFlags)">
  4992. <summary>
  4993. Trim the stream to a specified maximum length.
  4994. </summary>
  4995. <param name="key">The key of the stream.</param>
  4996. <param name="maxLength">The maximum length of the stream.</param>
  4997. <param name="useApproximateMaxLength">If true, the "~" argument is used to allow the stream to exceed max length by a small number. This improves performance when removing messages.</param>
  4998. <param name="flags">The flags to use for this operation.</param>
  4999. <returns>The number of messages removed from the stream.</returns>
  5000. <remarks>https://redis.io/topics/streams-intro</remarks>
  5001. </member>
  5002. <member name="M:StackExchange.Redis.IDatabase.StringAppend(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5003. <summary>
  5004. If key already exists and is a string, this command appends the value at the end of the string. If key does not exist it is created and set as an empty string,
  5005. so APPEND will be similar to SET in this special case.
  5006. </summary>
  5007. <param name="key">The key of the string.</param>
  5008. <param name="value">The value to append to the string.</param>
  5009. <param name="flags">The flags to use for this operation.</param>
  5010. <returns>The length of the string after the append operation.</returns>
  5011. <remarks>https://redis.io/commands/append</remarks>
  5012. </member>
  5013. <member name="M:StackExchange.Redis.IDatabase.StringBitCount(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  5014. <summary>
  5015. Count the number of set bits (population counting) in a string.
  5016. By default all the bytes contained in the string are examined. It is possible to specify the counting operation only in an interval passing the additional arguments start and end.
  5017. Like for the GETRANGE command start and end can contain negative values in order to index bytes starting from the end of the string, where -1 is the last byte, -2 is the penultimate, and so forth.
  5018. </summary>
  5019. <param name="key">The key of the string.</param>
  5020. <param name="start">The start byte to count at.</param>
  5021. <param name="end">The end byte to count at.</param>
  5022. <param name="flags">The flags to use for this operation.</param>
  5023. <returns>The number of bits set to 1.</returns>
  5024. <remarks>https://redis.io/commands/bitcount</remarks>
  5025. </member>
  5026. <member name="M:StackExchange.Redis.IDatabase.StringBitOperation(StackExchange.Redis.Bitwise,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5027. <summary>
  5028. Perform a bitwise operation between multiple keys (containing string values) and store the result in the destination key.
  5029. The BITOP command supports four bitwise operations; note that NOT is a unary operator: the second key should be omitted in this case
  5030. and only the first key will be considered.
  5031. The result of the operation is always stored at destkey.
  5032. </summary>
  5033. <param name="operation">The operation to perform.</param>
  5034. <param name="destination">The destination key to store the result in.</param>
  5035. <param name="first">The first key to get the bit value from.</param>
  5036. <param name="second">The second key to get the bit value from.</param>
  5037. <param name="flags">The flags to use for this operation.</param>
  5038. <returns>The size of the string stored in the destination key, that is equal to the size of the longest input string.</returns>
  5039. <remarks>https://redis.io/commands/bitop</remarks>
  5040. </member>
  5041. <member name="M:StackExchange.Redis.IDatabase.StringBitOperation(StackExchange.Redis.Bitwise,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  5042. <summary>
  5043. Perform a bitwise operation between multiple keys (containing string values) and store the result in the destination key.
  5044. The BITOP command supports four bitwise operations; note that NOT is a unary operator.
  5045. The result of the operation is always stored at destkey.
  5046. </summary>
  5047. <param name="operation">The operation to perform.</param>
  5048. <param name="destination">The destination key to store the result in.</param>
  5049. <param name="keys">The keys to get the bit values from.</param>
  5050. <param name="flags">The flags to use for this operation.</param>
  5051. <returns>The size of the string stored in the destination key, that is equal to the size of the longest input string.</returns>
  5052. <remarks>https://redis.io/commands/bitop</remarks>
  5053. </member>
  5054. <member name="M:StackExchange.Redis.IDatabase.StringBitPosition(StackExchange.Redis.RedisKey,System.Boolean,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  5055. <summary>
  5056. Return the position of the first bit set to 1 or 0 in a string.
  5057. The position is returned thinking at the string as an array of bits from left to right where the first byte most significant bit is at position 0, the second byte most significant bit is at position 8 and so forth.
  5058. An start and end may be specified; these are in bytes, not bits; start and end can contain negative values in order to index bytes starting from the end of the string, where -1 is the last byte, -2 is the penultimate, and so forth.
  5059. </summary>
  5060. <param name="key">The key of the string.</param>
  5061. <param name="bit">True to check for the first 1 bit, false to check for the first 0 bit.</param>
  5062. <param name="start">The position to start looking (defaults to 0).</param>
  5063. <param name="end">The position to stop looking (defaults to -1, unlimited).</param>
  5064. <param name="flags">The flags to use for this operation.</param>
  5065. <returns>The command returns the position of the first bit set to 1 or 0 according to the request.
  5066. If we look for set bits(the bit argument is 1) and the string is empty or composed of just zero bytes, -1 is returned.</returns>
  5067. <remarks>https://redis.io/commands/bitpos</remarks>
  5068. </member>
  5069. <member name="M:StackExchange.Redis.IDatabase.StringDecrement(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  5070. <summary>
  5071. Decrements the number stored at key by decrement. If the key does not exist, it is set to 0 before performing the operation.
  5072. An error is returned if the key contains a value of the wrong type or contains a string that is not representable as integer. This operation is limited to 64 bit signed integers.
  5073. </summary>
  5074. <param name="key">The key of the string.</param>
  5075. <param name="value">The amount to decrement by (defaults to 1).</param>
  5076. <param name="flags">The flags to use for this operation.</param>
  5077. <returns>The value of key after the decrement.</returns>
  5078. <remarks>https://redis.io/commands/decrby</remarks>
  5079. <remarks>https://redis.io/commands/decr</remarks>
  5080. </member>
  5081. <member name="M:StackExchange.Redis.IDatabase.StringDecrement(StackExchange.Redis.RedisKey,System.Double,StackExchange.Redis.CommandFlags)">
  5082. <summary>
  5083. Decrements the string representing a floating point number stored at key by the specified decrement. If the key does not exist, it is set to 0 before performing the operation. The precision of the output is fixed at 17 digits after the decimal point regardless of the actual internal precision of the computation.
  5084. </summary>
  5085. <param name="key">The key of the string.</param>
  5086. <param name="value">The amount to decrement by (defaults to 1).</param>
  5087. <param name="flags">The flags to use for this operation.</param>
  5088. <returns>The value of key after the decrement.</returns>
  5089. <remarks>https://redis.io/commands/incrbyfloat</remarks>
  5090. </member>
  5091. <member name="M:StackExchange.Redis.IDatabase.StringGet(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5092. <summary>
  5093. Get the value of key. If the key does not exist the special value nil is returned. An error is returned if the value stored at key is not a string, because GET only handles string values.
  5094. </summary>
  5095. <param name="key">The key of the string.</param>
  5096. <param name="flags">The flags to use for this operation.</param>
  5097. <returns>The value of key, or nil when key does not exist.</returns>
  5098. <remarks>https://redis.io/commands/get</remarks>
  5099. </member>
  5100. <member name="M:StackExchange.Redis.IDatabase.StringGet(StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  5101. <summary>
  5102. Returns the values of all specified keys. For every key that does not hold a string value or does not exist, the special value nil is returned.
  5103. </summary>
  5104. <param name="keys">The keys of the strings.</param>
  5105. <param name="flags">The flags to use for this operation.</param>
  5106. <returns>The values of the strings with nil for keys do not exist.</returns>
  5107. <remarks>https://redis.io/commands/mget</remarks>
  5108. </member>
  5109. <member name="M:StackExchange.Redis.IDatabase.StringGetLease(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5110. <summary>
  5111. Get the value of key. If the key does not exist the special value nil is returned. An error is returned if the value stored at key is not a string, because GET only handles string values.
  5112. </summary>
  5113. <param name="key">The key of the string.</param>
  5114. <param name="flags">The flags to use for this operation.</param>
  5115. <returns>The value of key, or nil when key does not exist.</returns>
  5116. <remarks>https://redis.io/commands/get</remarks>
  5117. </member>
  5118. <member name="M:StackExchange.Redis.IDatabase.StringGetBit(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  5119. <summary>
  5120. Returns the bit value at offset in the string value stored at key.
  5121. When offset is beyond the string length, the string is assumed to be a contiguous space with 0 bits.
  5122. </summary>
  5123. <param name="key">The key of the string.</param>
  5124. <param name="offset">The offset in the string to get a bit at.</param>
  5125. <param name="flags">The flags to use for this operation.</param>
  5126. <returns>The bit value stored at offset.</returns>
  5127. <remarks>https://redis.io/commands/getbit</remarks>
  5128. </member>
  5129. <member name="M:StackExchange.Redis.IDatabase.StringGetRange(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  5130. <summary>
  5131. Returns the substring of the string value stored at key, determined by the offsets start and end (both are inclusive). Negative offsets can be used in order to provide an offset starting from the end of the string. So -1 means the last character, -2 the penultimate and so forth.
  5132. </summary>
  5133. <param name="key">The key of the string.</param>
  5134. <param name="start">The start index of the substring to get.</param>
  5135. <param name="end">The end index of the substring to get.</param>
  5136. <param name="flags">The flags to use for this operation.</param>
  5137. <returns>The substring of the string value stored at key.</returns>
  5138. <remarks>https://redis.io/commands/getrange</remarks>
  5139. </member>
  5140. <member name="M:StackExchange.Redis.IDatabase.StringGetSet(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5141. <summary>
  5142. Atomically sets key to value and returns the old value stored at key.
  5143. </summary>
  5144. <param name="key">The key of the string.</param>
  5145. <param name="value">The value to replace the existing value with.</param>
  5146. <param name="flags">The flags to use for this operation.</param>
  5147. <returns>The old value stored at key, or nil when key did not exist.</returns>
  5148. <remarks>https://redis.io/commands/getset</remarks>
  5149. </member>
  5150. <member name="M:StackExchange.Redis.IDatabase.StringGetWithExpiry(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5151. <summary>
  5152. Get the value of key. If the key does not exist the special value nil is returned. An error is returned if the value stored at key is not a string, because GET only handles string values.
  5153. </summary>
  5154. <param name="key">The key of the string.</param>
  5155. <param name="flags">The flags to use for this operation.</param>
  5156. <returns>The value of key and its expiry, or nil when key does not exist.</returns>
  5157. <remarks>https://redis.io/commands/get</remarks>
  5158. </member>
  5159. <member name="M:StackExchange.Redis.IDatabase.StringIncrement(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  5160. <summary>
  5161. Increments the number stored at key by increment. If the key does not exist, it is set to 0 before performing the operation. An error is returned if the key contains a value of the wrong type or contains a string that is not representable as integer. This operation is limited to 64 bit signed integers.
  5162. </summary>
  5163. <param name="key">The key of the string.</param>
  5164. <param name="value">The amount to increment by (defaults to 1).</param>
  5165. <param name="flags">The flags to use for this operation.</param>
  5166. <returns>The value of key after the increment.</returns>
  5167. <remarks>https://redis.io/commands/incrby</remarks>
  5168. <remarks>https://redis.io/commands/incr</remarks>
  5169. </member>
  5170. <member name="M:StackExchange.Redis.IDatabase.StringIncrement(StackExchange.Redis.RedisKey,System.Double,StackExchange.Redis.CommandFlags)">
  5171. <summary>
  5172. Increments the string representing a floating point number stored at key by the specified increment. If the key does not exist, it is set to 0 before performing the operation. The precision of the output is fixed at 17 digits after the decimal point regardless of the actual internal precision of the computation.
  5173. </summary>
  5174. <param name="key">The key of the string.</param>
  5175. <param name="value">The amount to increment by (defaults to 1).</param>
  5176. <param name="flags">The flags to use for this operation.</param>
  5177. <returns>The value of key after the increment.</returns>
  5178. <remarks>https://redis.io/commands/incrbyfloat</remarks>
  5179. </member>
  5180. <member name="M:StackExchange.Redis.IDatabase.StringLength(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5181. <summary>
  5182. Returns the length of the string value stored at key.
  5183. </summary>
  5184. <param name="key">The key of the string.</param>
  5185. <param name="flags">The flags to use for this operation.</param>
  5186. <returns>the length of the string at key, or 0 when key does not exist.</returns>
  5187. <remarks>https://redis.io/commands/strlen</remarks>
  5188. </member>
  5189. <member name="M:StackExchange.Redis.IDatabase.StringSet(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Nullable{System.TimeSpan},StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  5190. <summary>
  5191. Set key to hold the string value. If key already holds a value, it is overwritten, regardless of its type.
  5192. </summary>
  5193. <param name="key">The key of the string.</param>
  5194. <param name="value">The value to set.</param>
  5195. <param name="expiry">The expiry to set.</param>
  5196. <param name="when">Which condition to set the value under (detaults to always).</param>
  5197. <param name="flags">The flags to use for this operation.</param>
  5198. <returns>True if the string was set, false otherwise.</returns>
  5199. <remarks>https://redis.io/commands/set</remarks>
  5200. </member>
  5201. <member name="M:StackExchange.Redis.IDatabase.StringSet(System.Collections.Generic.KeyValuePair{StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue}[],StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  5202. <summary>
  5203. Sets the given keys to their respective values. If "not exists" is specified, this will not perform any operation at all even if just a single key already exists.
  5204. </summary>
  5205. <param name="values">The keys and values to set.</param>
  5206. <param name="when">Which condition to set the value under (detaults to always).</param>
  5207. <param name="flags">The flags to use for this operation.</param>
  5208. <returns>True if the keys were set, else False</returns>
  5209. <remarks>https://redis.io/commands/mset</remarks>
  5210. <remarks>https://redis.io/commands/msetnx</remarks>
  5211. </member>
  5212. <member name="M:StackExchange.Redis.IDatabase.StringSetBit(StackExchange.Redis.RedisKey,System.Int64,System.Boolean,StackExchange.Redis.CommandFlags)">
  5213. <summary>
  5214. Sets or clears the bit at offset in the string value stored at key.
  5215. The bit is either set or cleared depending on value, which can be either 0 or 1. When key does not exist, a new string value is created.The string is grown to make sure it can hold a bit at offset.
  5216. </summary>
  5217. <param name="key">The key of the string.</param>
  5218. <param name="offset">The offset in the string to set <paramref name="bit"/>.</param>
  5219. <param name="bit">The bit value to set, true for 1, false for 0.</param>
  5220. <param name="flags">The flags to use for this operation.</param>
  5221. <returns>The original bit value stored at offset.</returns>
  5222. <remarks>https://redis.io/commands/setbit</remarks>
  5223. </member>
  5224. <member name="M:StackExchange.Redis.IDatabase.StringSetRange(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5225. <summary>
  5226. Overwrites part of the string stored at key, starting at the specified offset, for the entire length of value. If the offset is larger than the current length of the string at key, the string is padded with zero-bytes to make offset fit. Non-existing keys are considered as empty strings, so this command will make sure it holds a string large enough to be able to set value at offset.
  5227. </summary>
  5228. <param name="key">The key of the string.</param>
  5229. <param name="offset">The offset in the string to overwrite.</param>
  5230. <param name="value">The value to overwrite with.</param>
  5231. <param name="flags">The flags to use for this operation.</param>
  5232. <returns>The length of the string after it was modified by the command.</returns>
  5233. <remarks>https://redis.io/commands/setrange</remarks>
  5234. </member>
  5235. <member name="M:StackExchange.Redis.IDatabase.KeyTouch(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5236. <summary>
  5237. Alters the last access time of a key.
  5238. </summary>
  5239. <param name="key">The key to touch.</param>
  5240. <param name="flags">The flags to use for this operation.</param>
  5241. <returns>True if the key was touched.</returns>
  5242. <remarks>https://redis.io/commands/touch</remarks>
  5243. </member>
  5244. <member name="M:StackExchange.Redis.IDatabase.KeyTouch(StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  5245. <summary>
  5246. Alters the last access time of a keys. A key is ignored if it does not exist.
  5247. </summary>
  5248. <param name="keys">The keys to touch.</param>
  5249. <param name="flags">The flags to use for this operation.</param>
  5250. <returns>The number of keys that were touched.</returns>
  5251. <remarks>https://redis.io/commands/touch</remarks>
  5252. </member>
  5253. <member name="T:StackExchange.Redis.IDatabaseAsync">
  5254. <summary>
  5255. Describes functionality that is common to both standalone redis servers and redis clusters
  5256. </summary>
  5257. </member>
  5258. <member name="M:StackExchange.Redis.IDatabaseAsync.IsConnected(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5259. <summary>
  5260. Indicates whether the instance can communicate with the server (resolved
  5261. using the supplied key and optional flags)
  5262. </summary>
  5263. <param name="key">The key to check for.</param>
  5264. <param name="flags">The flags to use for this operation.</param>
  5265. </member>
  5266. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyMigrateAsync(StackExchange.Redis.RedisKey,System.Net.EndPoint,System.Int32,System.Int32,StackExchange.Redis.MigrateOptions,StackExchange.Redis.CommandFlags)">
  5267. <summary>
  5268. Atomically transfer a key from a source Redis instance to a destination Redis instance. On success the key is deleted from the original instance by default, and is guaranteed to exist in the target instance.
  5269. </summary>
  5270. <param name="key">The key to migrate.</param>
  5271. <param name="toServer">The server to migrate the key to.</param>
  5272. <param name="toDatabase">The database to migrate the key to.</param>
  5273. <param name="timeoutMilliseconds">The timeout to use for the transfer.</param>
  5274. <param name="migrateOptions">The options to use for this migration.</param>
  5275. <param name="flags">The flags to use for this operation.</param>
  5276. <remarks>https://redis.io/commands/MIGRATE</remarks>
  5277. </member>
  5278. <member name="M:StackExchange.Redis.IDatabaseAsync.DebugObjectAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5279. <summary>
  5280. Returns the raw DEBUG OBJECT output for a key; this command is not fully documented and should be avoided unless you have good reason, and then avoided anyway.
  5281. </summary>
  5282. <param name="key">The key to debug.</param>
  5283. <param name="flags">The flags to use for this migration.</param>
  5284. <returns>The raw output from DEBUG OBJECT.</returns>
  5285. <remarks>https://redis.io/commands/debug-object</remarks>
  5286. </member>
  5287. <member name="M:StackExchange.Redis.IDatabaseAsync.GeoAddAsync(StackExchange.Redis.RedisKey,System.Double,System.Double,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5288. <summary>
  5289. Add the specified member to the set stored at key. Specified members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.
  5290. </summary>
  5291. <param name="key">The key of the set.</param>
  5292. <param name="longitude">The longitude of geo entry.</param>
  5293. <param name="latitude">The latitude of the geo entry.</param>
  5294. <param name="member">The value to set at this entry.</param>
  5295. <param name="flags">The flags to use for this operation.</param>
  5296. <returns>True if the specified member was not already present in the set, else False.</returns>
  5297. <remarks>https://redis.io/commands/geoadd</remarks>
  5298. </member>
  5299. <member name="M:StackExchange.Redis.IDatabaseAsync.GeoAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.GeoEntry,StackExchange.Redis.CommandFlags)">
  5300. <summary>
  5301. Add the specified member to the set stored at key. Specified members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.
  5302. </summary>
  5303. <param name="key">The key of the set.</param>
  5304. <param name="value">The geo value to store.</param>
  5305. <param name="flags">The flags to use for this operation.</param>
  5306. <returns>True if the specified member was not already present in the set, else False</returns>
  5307. <remarks>https://redis.io/commands/geoadd</remarks>
  5308. </member>
  5309. <member name="M:StackExchange.Redis.IDatabaseAsync.GeoAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.GeoEntry[],StackExchange.Redis.CommandFlags)">
  5310. <summary>
  5311. Add the specified members to the set stored at key. Specified members that are already a member of this set are ignored. If key does not exist, a new set is created before adding the specified members.
  5312. </summary>
  5313. <param name="key">The key of the set.</param>
  5314. <param name="values">The geo values add to the set.</param>
  5315. <param name="flags">The flags to use for this operation.</param>
  5316. <returns>The number of elements that were added to the set, not including all the elements already present into the set.</returns>
  5317. <remarks>https://redis.io/commands/geoadd</remarks>
  5318. </member>
  5319. <member name="M:StackExchange.Redis.IDatabaseAsync.GeoRemoveAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5320. <summary>
  5321. Removes the specified member from the geo sorted set stored at key. Non existing members are ignored.
  5322. </summary>
  5323. <param name="key">The key of the set.</param>
  5324. <param name="member">The geo value to remove.</param>
  5325. <param name="flags">The flags to use for this operation.</param>
  5326. <returns>True if the member existed in the sorted set and was removed; False otherwise.</returns>
  5327. <remarks>https://redis.io/commands/zrem</remarks>
  5328. </member>
  5329. <member name="M:StackExchange.Redis.IDatabaseAsync.GeoDistanceAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.GeoUnit,StackExchange.Redis.CommandFlags)">
  5330. <summary>
  5331. Return the distance between two members in the geospatial index represented by the sorted set.
  5332. </summary>
  5333. <param name="key">The key of the set.</param>
  5334. <param name="member1">The first member to check.</param>
  5335. <param name="member2">The second member to check.</param>
  5336. <param name="unit">The unit of distance to return (defaults to meters).</param>
  5337. <param name="flags">The flags to use for this operation.</param>
  5338. <returns>The command returns the distance as a double (represented as a string) in the specified unit, or NULL if one or both the elements are missing.</returns>
  5339. <remarks>https://redis.io/commands/geodist</remarks>
  5340. </member>
  5341. <member name="M:StackExchange.Redis.IDatabaseAsync.GeoHashAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  5342. <summary>
  5343. Return valid Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index (where elements were added using GEOADD).
  5344. </summary>
  5345. <param name="key">The key of the set.</param>
  5346. <param name="members">The members to get.</param>
  5347. <param name="flags">The flags to use for this operation.</param>
  5348. <returns>The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.</returns>
  5349. <remarks>https://redis.io/commands/geohash</remarks>
  5350. </member>
  5351. <member name="M:StackExchange.Redis.IDatabaseAsync.GeoHashAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5352. <summary>
  5353. Return valid Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index (where elements were added using GEOADD).
  5354. </summary>
  5355. <param name="key">The key of the set.</param>
  5356. <param name="member">The member to get.</param>
  5357. <param name="flags">The flags to use for this operation.</param>
  5358. <returns>The command returns an array where each element is the Geohash corresponding to each member name passed as argument to the command.</returns>
  5359. <remarks>https://redis.io/commands/geohash</remarks>
  5360. </member>
  5361. <member name="M:StackExchange.Redis.IDatabaseAsync.GeoPositionAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  5362. <summary>
  5363. Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the sorted set at key.
  5364. </summary>
  5365. <param name="key">The key of the set.</param>
  5366. <param name="members">The members to get.</param>
  5367. <param name="flags">The flags to use for this operation.</param>
  5368. <returns>The command returns an array where each element is a two elements array representing longitude and latitude (x,y) of each member name passed as argument to the command.Non existing elements are reported as NULL elements of the array.</returns>
  5369. <remarks>https://redis.io/commands/geopos</remarks>
  5370. </member>
  5371. <member name="M:StackExchange.Redis.IDatabaseAsync.GeoPositionAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5372. <summary>
  5373. Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the sorted set at key.
  5374. </summary>
  5375. <param name="key">The key of the set.</param>
  5376. <param name="member">The member to get.</param>
  5377. <param name="flags">The flags to use for this operation.</param>
  5378. <returns>The command returns an array where each element is a two elements array representing longitude and latitude (x,y) of each member name passed as argument to the command.Non existing elements are reported as NULL elements of the array.</returns>
  5379. <remarks>https://redis.io/commands/geopos</remarks>
  5380. </member>
  5381. <member name="M:StackExchange.Redis.IDatabaseAsync.GeoRadiusAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.GeoUnit,System.Int32,System.Nullable{StackExchange.Redis.Order},StackExchange.Redis.GeoRadiusOptions,StackExchange.Redis.CommandFlags)">
  5382. <summary>
  5383. Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders of the area specified with the center location and the maximum distance from the center (the radius).
  5384. </summary>
  5385. <param name="key">The key of the set.</param>
  5386. <param name="member">The member to get a radius of results from.</param>
  5387. <param name="radius">The radius to check.</param>
  5388. <param name="unit">The unit of <paramref name="radius"/> (defaults to meters).</param>
  5389. <param name="count">The count of results to get, -1 for unlimited.</param>
  5390. <param name="order">The order of the results.</param>
  5391. <param name="options">The search options to use.</param>
  5392. <param name="flags">The flags to use for this operation.</param>
  5393. <returns>The results found within the radius, if any.</returns>
  5394. <remarks>https://redis.io/commands/georadius</remarks>
  5395. </member>
  5396. <member name="M:StackExchange.Redis.IDatabaseAsync.GeoRadiusAsync(StackExchange.Redis.RedisKey,System.Double,System.Double,System.Double,StackExchange.Redis.GeoUnit,System.Int32,System.Nullable{StackExchange.Redis.Order},StackExchange.Redis.GeoRadiusOptions,StackExchange.Redis.CommandFlags)">
  5397. <summary>
  5398. Return the members of a sorted set populated with geospatial information using GEOADD, which are within the borders of the area specified with the center location and the maximum distance from the center (the radius).
  5399. </summary>
  5400. <param name="key">The key of the set.</param>
  5401. <param name="longitude">The longitude of the point to get a radius of results from.</param>
  5402. <param name="latitude">The latitude of the point to get a radius of results from.</param>
  5403. <param name="radius">The radius to check.</param>
  5404. <param name="unit">The unit of <paramref name="radius"/> (defaults to meters).</param>
  5405. <param name="count">The count of results to get, -1 for unlimited.</param>
  5406. <param name="order">The order of the results.</param>
  5407. <param name="options">The search options to use.</param>
  5408. <param name="flags">The flags to use for this operation.</param>
  5409. <returns>The results found within the radius, if any.</returns>
  5410. <remarks>https://redis.io/commands/georadius</remarks>
  5411. </member>
  5412. <member name="M:StackExchange.Redis.IDatabaseAsync.HashDecrementAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int64,StackExchange.Redis.CommandFlags)">
  5413. <summary>
  5414. Decrements the number stored at field in the hash stored at key by decrement. If key does not exist, a new key holding a hash is created. If field does not exist or holds a string that cannot be interpreted as integer, the value is set to 0 before the operation is performed.
  5415. </summary>
  5416. <param name="key">The key of the hash.</param>
  5417. <param name="hashField">The field in the hash to decrement.</param>
  5418. <param name="value">The amount to decrement by.</param>
  5419. <param name="flags">The flags to use for this operation.</param>
  5420. <returns>The value at field after the decrement operation.</returns>
  5421. <remarks>The range of values supported by HINCRBY is limited to 64 bit signed integers.</remarks>
  5422. <remarks>https://redis.io/commands/hincrby</remarks>
  5423. </member>
  5424. <member name="M:StackExchange.Redis.IDatabaseAsync.HashDecrementAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.CommandFlags)">
  5425. <summary>
  5426. Decrement the specified field of an hash stored at key, and representing a floating point number, by the specified decrement. If the field does not exist, it is set to 0 before performing the operation.
  5427. </summary>
  5428. <param name="key">The key of the hash.</param>
  5429. <param name="hashField">The field in the hash to decrement.</param>
  5430. <param name="value">The amount to decrement by.</param>
  5431. <param name="flags">The flags to use for this operation.</param>
  5432. <returns>The value at field after the decrement operation.</returns>
  5433. <remarks>The precision of the output is fixed at 17 digits after the decimal point regardless of the actual internal precision of the computation.</remarks>
  5434. <remarks>https://redis.io/commands/hincrbyfloat</remarks>
  5435. </member>
  5436. <member name="M:StackExchange.Redis.IDatabaseAsync.HashDeleteAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5437. <summary>
  5438. Removes the specified fields from the hash stored at key. Non-existing fields are ignored. Non-existing keys are treated as empty hashes and this command returns 0.
  5439. </summary>
  5440. <param name="key">The key of the hash.</param>
  5441. <param name="hashField">The field in the hash to delete.</param>
  5442. <param name="flags">The flags to use for this operation.</param>
  5443. <returns>The number of fields that were removed.</returns>
  5444. <remarks>https://redis.io/commands/hdel</remarks>
  5445. </member>
  5446. <member name="M:StackExchange.Redis.IDatabaseAsync.HashDeleteAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  5447. <summary>
  5448. Removes the specified fields from the hash stored at key. Non-existing fields are ignored. Non-existing keys are treated as empty hashes and this command returns 0.
  5449. </summary>
  5450. <param name="key">The key of the hash.</param>
  5451. <param name="hashFields">The fields in the hash to delete.</param>
  5452. <param name="flags">The flags to use for this operation.</param>
  5453. <returns>The number of fields that were removed.</returns>
  5454. <remarks>https://redis.io/commands/hdel</remarks>
  5455. </member>
  5456. <member name="M:StackExchange.Redis.IDatabaseAsync.HashExistsAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5457. <summary>
  5458. Returns if field is an existing field in the hash stored at key.
  5459. </summary>
  5460. <param name="key">The key of the hash.</param>
  5461. <param name="hashField">The field in the hash to check.</param>
  5462. <param name="flags">The flags to use for this operation.</param>
  5463. <returns>1 if the hash contains field. 0 if the hash does not contain field, or key does not exist.</returns>
  5464. <remarks>https://redis.io/commands/hexists</remarks>
  5465. </member>
  5466. <member name="M:StackExchange.Redis.IDatabaseAsync.HashGetAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5467. <summary>
  5468. Returns the value associated with field in the hash stored at key.
  5469. </summary>
  5470. <param name="key">The key of the hash.</param>
  5471. <param name="hashField">The field in the hash to get.</param>
  5472. <param name="flags">The flags to use for this operation.</param>
  5473. <returns>The value associated with field, or nil when field is not present in the hash or key does not exist.</returns>
  5474. <remarks>https://redis.io/commands/hget</remarks>
  5475. </member>
  5476. <member name="M:StackExchange.Redis.IDatabaseAsync.HashGetLeaseAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5477. <summary>
  5478. Returns the value associated with field in the hash stored at key.
  5479. </summary>
  5480. <param name="key">The key of the hash.</param>
  5481. <param name="hashField">The field in the hash to get.</param>
  5482. <param name="flags">The flags to use for this operation.</param>
  5483. <returns>The value associated with field, or nil when field is not present in the hash or key does not exist.</returns>
  5484. <remarks>https://redis.io/commands/hget</remarks>
  5485. </member>
  5486. <member name="M:StackExchange.Redis.IDatabaseAsync.HashGetAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  5487. <summary>
  5488. Returns the values associated with the specified fields in the hash stored at key.
  5489. For every field that does not exist in the hash, a nil value is returned.Because a non-existing keys are treated as empty hashes, running HMGET against a non-existing key will return a list of nil values.
  5490. </summary>
  5491. <param name="key">The key of the hash.</param>
  5492. <param name="hashFields">The fields in the hash to delete.</param>
  5493. <param name="flags">The flags to use for this operation.</param>
  5494. <returns>List of values associated with the given fields, in the same order as they are requested.</returns>
  5495. <remarks>https://redis.io/commands/hmget</remarks>
  5496. </member>
  5497. <member name="M:StackExchange.Redis.IDatabaseAsync.HashGetAllAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5498. <summary>
  5499. Returns all fields and values of the hash stored at key.
  5500. </summary>
  5501. <param name="key">The key of the hash to get all entries from.</param>
  5502. <param name="flags">The flags to use for this operation.</param>
  5503. <returns>List of fields and their values stored in the hash, or an empty list when key does not exist.</returns>
  5504. <remarks>https://redis.io/commands/hgetall</remarks>
  5505. </member>
  5506. <member name="M:StackExchange.Redis.IDatabaseAsync.HashIncrementAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int64,StackExchange.Redis.CommandFlags)">
  5507. <summary>
  5508. Increments the number stored at field in the hash stored at key by increment. If key does not exist, a new key holding a hash is created. If field does not exist or holds a string that cannot be interpreted as integer, the value is set to 0 before the operation is performed.
  5509. </summary>
  5510. <param name="key">The key of the hash.</param>
  5511. <param name="hashField">The field in the hash to increment.</param>
  5512. <param name="value">The amount to increment by.</param>
  5513. <param name="flags">The flags to use for this operation.</param>
  5514. <returns>The value at field after the increment operation.</returns>
  5515. <remarks>The range of values supported by HINCRBY is limited to 64 bit signed integers.</remarks>
  5516. <remarks>https://redis.io/commands/hincrby</remarks>
  5517. </member>
  5518. <member name="M:StackExchange.Redis.IDatabaseAsync.HashIncrementAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.CommandFlags)">
  5519. <summary>
  5520. Increment the specified field of an hash stored at key, and representing a floating point number, by the specified increment. If the field does not exist, it is set to 0 before performing the operation.
  5521. </summary>
  5522. <param name="key">The key of the hash.</param>
  5523. <param name="hashField">The field in the hash to increment.</param>
  5524. <param name="value">The amount to increment by.</param>
  5525. <param name="flags">The flags to use for this operation.</param>
  5526. <returns>The value at field after the increment operation.</returns>
  5527. <remarks>The precision of the output is fixed at 17 digits after the decimal point regardless of the actual internal precision of the computation.</remarks>
  5528. <remarks>https://redis.io/commands/hincrbyfloat</remarks>
  5529. </member>
  5530. <member name="M:StackExchange.Redis.IDatabaseAsync.HashKeysAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5531. <summary>
  5532. Returns all field names in the hash stored at key.
  5533. </summary>
  5534. <param name="key">The key of the hash.</param>
  5535. <param name="flags">The flags to use for this operation.</param>
  5536. <returns>List of fields in the hash, or an empty list when key does not exist.</returns>
  5537. <remarks>https://redis.io/commands/hkeys</remarks>
  5538. </member>
  5539. <member name="M:StackExchange.Redis.IDatabaseAsync.HashLengthAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5540. <summary>
  5541. Returns the number of fields contained in the hash stored at key.
  5542. </summary>
  5543. <param name="key">The key of the hash.</param>
  5544. <param name="flags">The flags to use for this operation.</param>
  5545. <returns>The number of fields in the hash, or 0 when key does not exist.</returns>
  5546. <remarks>https://redis.io/commands/hlen</remarks>
  5547. </member>
  5548. <member name="M:StackExchange.Redis.IDatabaseAsync.HashScanAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int32,System.Int64,System.Int32,StackExchange.Redis.CommandFlags)">
  5549. <summary>
  5550. The HSCAN command is used to incrementally iterate over a hash; note: to resume an iteration via <i>cursor</i>, cast the original enumerable or enumerator to <i>IScanningCursor</i>.
  5551. </summary>
  5552. <param name="key">The key of the hash.</param>
  5553. <param name="pattern">The pattern of keys to get entries for.</param>
  5554. <param name="pageSize">The page size to iterate by.</param>
  5555. <param name="cursor">The cursor position to start at.</param>
  5556. <param name="pageOffset">The page offset to start at.</param>
  5557. <param name="flags">The flags to use for this operation.</param>
  5558. <returns>Yields all elements of the hash matching the pattern.</returns>
  5559. <remarks>https://redis.io/commands/hscan</remarks>
  5560. </member>
  5561. <member name="M:StackExchange.Redis.IDatabaseAsync.HashSetAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.HashEntry[],StackExchange.Redis.CommandFlags)">
  5562. <summary>
  5563. Sets the specified fields to their respective values in the hash stored at key. This command overwrites any specified fields that already exist in the hash, leaving other unspecified fields untouched. If key does not exist, a new key holding a hash is created.
  5564. </summary>
  5565. <param name="key">The key of the hash.</param>
  5566. <param name="hashFields">The entries to set in the hash.</param>
  5567. <param name="flags">The flags to use for this operation.</param>
  5568. <remarks>https://redis.io/commands/hmset</remarks>
  5569. </member>
  5570. <member name="M:StackExchange.Redis.IDatabaseAsync.HashSetAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  5571. <summary>
  5572. Sets field in the hash stored at key to value. If key does not exist, a new key holding a hash is created. If field already exists in the hash, it is overwritten.
  5573. </summary>
  5574. <param name="key">The key of the hash.</param>
  5575. <param name="hashField">The field to set in the hash.</param>
  5576. <param name="value">The value to set.</param>
  5577. <param name="when">Which conditions under which to set the field value (defaults to always).</param>
  5578. <param name="flags">The flags to use for this operation.</param>
  5579. <returns>1 if field is a new field in the hash and value was set. 0 if field already exists in the hash and the value was updated.</returns>
  5580. <remarks>https://redis.io/commands/hset</remarks>
  5581. <remarks>https://redis.io/commands/hsetnx</remarks>
  5582. </member>
  5583. <member name="M:StackExchange.Redis.IDatabaseAsync.HashStringLengthAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5584. <summary>
  5585. Returns the string length of the value associated with field in the hash stored at key.
  5586. </summary>
  5587. <param name="key">The key of the hash.</param>
  5588. <param name="hashField">The field containing the string</param>
  5589. <param name="flags">The flags to use for this operation.</param>
  5590. <returns>the length of the string at field, or 0 when key does not exist.</returns>
  5591. <remarks>https://redis.io/commands/hstrlen</remarks>
  5592. </member>
  5593. <member name="M:StackExchange.Redis.IDatabaseAsync.HashValuesAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5594. <summary>
  5595. Returns all values in the hash stored at key.
  5596. </summary>
  5597. <param name="key">The key of the hash.</param>
  5598. <param name="flags">The flags to use for this operation.</param>
  5599. <returns>List of values in the hash, or an empty list when key does not exist.</returns>
  5600. <remarks>https://redis.io/commands/hvals</remarks>
  5601. </member>
  5602. <member name="M:StackExchange.Redis.IDatabaseAsync.HyperLogLogAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5603. <summary>
  5604. Adds the element to the HyperLogLog data structure stored at the variable name specified as first argument.
  5605. </summary>
  5606. <param name="key">The key of the hyperloglog.</param>
  5607. <param name="value">The value to add.</param>
  5608. <param name="flags">The flags to use for this operation.</param>
  5609. <returns>True if at least 1 HyperLogLog internal register was altered, false otherwise.</returns>
  5610. <remarks>https://redis.io/commands/pfadd</remarks>
  5611. </member>
  5612. <member name="M:StackExchange.Redis.IDatabaseAsync.HyperLogLogAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  5613. <summary>
  5614. Adds all the element arguments to the HyperLogLog data structure stored at the variable name specified as first argument.
  5615. </summary>
  5616. <param name="key">The key of the hyperloglog.</param>
  5617. <param name="values">The values to add.</param>
  5618. <param name="flags">The flags to use for this operation.</param>
  5619. <returns>True if at least 1 HyperLogLog internal register was altered, false otherwise.</returns>
  5620. <remarks>https://redis.io/commands/pfadd</remarks>
  5621. </member>
  5622. <member name="M:StackExchange.Redis.IDatabaseAsync.HyperLogLogLengthAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5623. <summary>
  5624. Returns the approximated cardinality computed by the HyperLogLog data structure stored at the specified variable, or 0 if the variable does not exist.
  5625. </summary>
  5626. <param name="key">The key of the hyperloglog.</param>
  5627. <param name="flags">The flags to use for this operation.</param>
  5628. <returns>The approximated number of unique elements observed via HyperLogLogAdd.</returns>
  5629. <remarks>https://redis.io/commands/pfcount</remarks>
  5630. </member>
  5631. <member name="M:StackExchange.Redis.IDatabaseAsync.HyperLogLogLengthAsync(StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  5632. <summary>
  5633. Returns the approximated cardinality of the union of the HyperLogLogs passed, by internally merging the HyperLogLogs stored at the provided keys into a temporary hyperLogLog, or 0 if the variable does not exist.
  5634. </summary>
  5635. <param name="keys">The keys of the hyperloglogs.</param>
  5636. <param name="flags">The flags to use for this operation.</param>
  5637. <returns>The approximated number of unique elements observed via HyperLogLogAdd.</returns>
  5638. <remarks>https://redis.io/commands/pfcount</remarks>
  5639. </member>
  5640. <member name="M:StackExchange.Redis.IDatabaseAsync.HyperLogLogMergeAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5641. <summary>
  5642. Merge multiple HyperLogLog values into an unique value that will approximate the cardinality of the union of the observed Sets of the source HyperLogLog structures.
  5643. </summary>
  5644. <param name="destination">The key of the merged hyperloglog.</param>
  5645. <param name="first">The key of the first hyperloglog to merge.</param>
  5646. <param name="second">The key of the first hyperloglog to merge.</param>
  5647. <param name="flags">The flags to use for this operation.</param>
  5648. <remarks>https://redis.io/commands/pfmerge</remarks>
  5649. </member>
  5650. <member name="M:StackExchange.Redis.IDatabaseAsync.HyperLogLogMergeAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  5651. <summary>
  5652. Merge multiple HyperLogLog values into an unique value that will approximate the cardinality of the union of the observed Sets of the source HyperLogLog structures.
  5653. </summary>
  5654. <param name="destination">The key of the merged hyperloglog.</param>
  5655. <param name="sourceKeys">The keys of the hyperloglogs to merge.</param>
  5656. <param name="flags">The flags to use for this operation.</param>
  5657. <remarks>https://redis.io/commands/pfmerge</remarks>
  5658. </member>
  5659. <member name="M:StackExchange.Redis.IDatabaseAsync.IdentifyEndpointAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5660. <summary>
  5661. Inidicate exactly which redis server we are talking to.
  5662. </summary>
  5663. <param name="key">The key to check.</param>
  5664. <param name="flags">The flags to use for this operation.</param>
  5665. <returns>The endpoint serving the key.</returns>
  5666. </member>
  5667. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyDeleteAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5668. <summary>
  5669. Removes the specified key. A key is ignored if it does not exist.
  5670. If UNLINK is available (Redis 4.0+), it will be used.
  5671. </summary>
  5672. <param name="key">The key to delete.</param>
  5673. <param name="flags">The flags to use for this operation.</param>
  5674. <returns>True if the key was removed.</returns>
  5675. <remarks>https://redis.io/commands/del</remarks>
  5676. <remarks>https://redis.io/commands/unlink</remarks>
  5677. </member>
  5678. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyDeleteAsync(StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  5679. <summary>
  5680. Removes the specified keys. A key is ignored if it does not exist.
  5681. If UNLINK is available (Redis 4.0+), it will be used.
  5682. </summary>
  5683. <param name="keys">The keys to delete.</param>
  5684. <param name="flags">The flags to use for this operation.</param>
  5685. <returns>The number of keys that were removed.</returns>
  5686. <remarks>https://redis.io/commands/del</remarks>
  5687. <remarks>https://redis.io/commands/unlink</remarks>
  5688. </member>
  5689. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyDumpAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5690. <summary>
  5691. Serialize the value stored at key in a Redis-specific format and return it to the user. The returned value can be synthesized back into a Redis key using the RESTORE command.
  5692. </summary>
  5693. <param name="key">The key to dump.</param>
  5694. <param name="flags">The flags to use for this operation.</param>
  5695. <returns>the serialized value.</returns>
  5696. <remarks>https://redis.io/commands/dump</remarks>
  5697. </member>
  5698. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyExistsAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5699. <summary>
  5700. Returns if key exists.
  5701. </summary>
  5702. <param name="key">The key to check.</param>
  5703. <param name="flags">The flags to use for this operation.</param>
  5704. <returns>1 if the key exists. 0 if the key does not exist.</returns>
  5705. <remarks>https://redis.io/commands/exists</remarks>
  5706. </member>
  5707. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyExistsAsync(StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  5708. <summary>
  5709. Indicates how many of the supplied keys exists.
  5710. </summary>
  5711. <param name="keys">The keys to check.</param>
  5712. <param name="flags">The flags to use for this operation.</param>
  5713. <returns>The number of keys that existed.</returns>
  5714. <remarks>https://redis.io/commands/exists</remarks>
  5715. </member>
  5716. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyExpireAsync(StackExchange.Redis.RedisKey,System.Nullable{System.TimeSpan},StackExchange.Redis.CommandFlags)">
  5717. <summary>
  5718. Set a timeout on key. After the timeout has expired, the key will automatically be deleted. A key with an associated timeout is said to be volatile in Redis terminology.
  5719. </summary>
  5720. <param name="key">The key to set the expiration for.</param>
  5721. <param name="expiry">The timeout to set.</param>
  5722. <param name="flags">The flags to use for this operation.</param>
  5723. <returns>1 if the timeout was set. 0 if key does not exist or the timeout could not be set.</returns>
  5724. <remarks>If key is updated before the timeout has expired, then the timeout is removed as if the PERSIST command was invoked on key.
  5725. For Redis versions &lt; 2.1.3, existing timeouts cannot be overwritten. So, if key already has an associated timeout, it will do nothing and return 0. Since Redis 2.1.3, you can update the timeout of a key. It is also possible to remove the timeout using the PERSIST command. See the page on key expiry for more information.</remarks>
  5726. <remarks>https://redis.io/commands/expire</remarks>
  5727. <remarks>https://redis.io/commands/pexpire</remarks>
  5728. <remarks>https://redis.io/commands/persist</remarks>
  5729. </member>
  5730. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyExpireAsync(StackExchange.Redis.RedisKey,System.Nullable{System.DateTime},StackExchange.Redis.CommandFlags)">
  5731. <summary>
  5732. Set a timeout on key. After the timeout has expired, the key will automatically be deleted. A key with an associated timeout is said to be volatile in Redis terminology.
  5733. </summary>
  5734. <param name="key">The key to set the expiration for.</param>
  5735. <param name="expiry">The exact date to expiry to set.</param>
  5736. <param name="flags">The flags to use for this operation.</param>
  5737. <returns>1 if the timeout was set. 0 if key does not exist or the timeout could not be set.</returns>
  5738. <remarks>If key is updated before the timeout has expired, then the timeout is removed as if the PERSIST command was invoked on key.
  5739. For Redis versions &lt; 2.1.3, existing timeouts cannot be overwritten. So, if key already has an associated timeout, it will do nothing and return 0. Since Redis 2.1.3, you can update the timeout of a key. It is also possible to remove the timeout using the PERSIST command. See the page on key expiry for more information.</remarks>
  5740. <remarks>https://redis.io/commands/expireat</remarks>
  5741. <remarks>https://redis.io/commands/pexpireat</remarks>
  5742. <remarks>https://redis.io/commands/persist</remarks>
  5743. </member>
  5744. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyIdleTimeAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5745. <summary>
  5746. Returns the time since the object stored at the specified key is idle (not requested by read or write operations)
  5747. </summary>
  5748. <param name="key">The key to get the time of.</param>
  5749. <param name="flags">The flags to use for this operation.</param>
  5750. <returns>The time since the object stored at the specified key is idle</returns>
  5751. <remarks>https://redis.io/commands/object</remarks>
  5752. </member>
  5753. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyMoveAsync(StackExchange.Redis.RedisKey,System.Int32,StackExchange.Redis.CommandFlags)">
  5754. <summary>
  5755. Move key from the currently selected database (see SELECT) to the specified destination database. When key already exists in the destination database, or it does not exist in the source database, it does nothing. It is possible to use MOVE as a locking primitive because of this.
  5756. </summary>
  5757. <param name="key">The key to move.</param>
  5758. <param name="database">The database to move the key to.</param>
  5759. <param name="flags">The flags to use for this operation.</param>
  5760. <returns>1 if key was moved; 0 if key was not moved.</returns>
  5761. <remarks>https://redis.io/commands/move</remarks>
  5762. </member>
  5763. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyPersistAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5764. <summary>
  5765. Remove the existing timeout on key, turning the key from volatile (a key with an expire set) to persistent (a key that will never expire as no timeout is associated).
  5766. </summary>
  5767. <param name="key">The key to presist.</param>
  5768. <param name="flags">The flags to use for this operation.</param>
  5769. <returns>1 if the timeout was removed. 0 if key does not exist or does not have an associated timeout.</returns>
  5770. <remarks>https://redis.io/commands/persist</remarks>
  5771. </member>
  5772. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyRandomAsync(StackExchange.Redis.CommandFlags)">
  5773. <summary>
  5774. Return a random key from the currently selected database.
  5775. </summary>
  5776. <param name="flags">The flags to use for this operation.</param>
  5777. <returns>The random key, or nil when the database is empty.</returns>
  5778. <remarks>https://redis.io/commands/randomkey</remarks>
  5779. </member>
  5780. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyRenameAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  5781. <summary>
  5782. Renames key to newkey. It returns an error when the source and destination names are the same, or when key does not exist.
  5783. </summary>
  5784. <param name="key">The key to rename.</param>
  5785. <param name="newKey">The key to rename to.</param>
  5786. <param name="when">What conditions to rename under (defaults to always).</param>
  5787. <param name="flags">The flags to use for this operation.</param>
  5788. <returns>True if the key was renamed, false otherwise.</returns>
  5789. <remarks>https://redis.io/commands/rename</remarks>
  5790. <remarks>https://redis.io/commands/renamenx</remarks>
  5791. </member>
  5792. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyRestoreAsync(StackExchange.Redis.RedisKey,System.Byte[],System.Nullable{System.TimeSpan},StackExchange.Redis.CommandFlags)">
  5793. <summary>
  5794. Create a key associated with a value that is obtained by deserializing the provided serialized value (obtained via DUMP).
  5795. If ttl is 0 the key is created without any expire, otherwise the specified expire time(in milliseconds) is set.
  5796. </summary>
  5797. <param name="key">The key to restore.</param>
  5798. <param name="value">The value of the key.</param>
  5799. <param name="expiry">The expiry to set.</param>
  5800. <param name="flags">The flags to use for this operation.</param>
  5801. <remarks>https://redis.io/commands/restore</remarks>
  5802. </member>
  5803. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyTimeToLiveAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5804. <summary>
  5805. Returns the remaining time to live of a key that has a timeout. This introspection capability allows a Redis client to check how many seconds a given key will continue to be part of the dataset.
  5806. </summary>
  5807. <param name="key">The key to check.</param>
  5808. <param name="flags">The flags to use for this operation.</param>
  5809. <returns>TTL, or nil when key does not exist or does not have a timeout.</returns>
  5810. <remarks>https://redis.io/commands/ttl</remarks>
  5811. </member>
  5812. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyTypeAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5813. <summary>
  5814. Returns the string representation of the type of the value stored at key. The different types that can be returned are: string, list, set, zset and hash.
  5815. </summary>
  5816. <param name="key">The key to get the type of.</param>
  5817. <param name="flags">The flags to use for this operation.</param>
  5818. <returns>Type of key, or none when key does not exist.</returns>
  5819. <remarks>https://redis.io/commands/type</remarks>
  5820. </member>
  5821. <member name="M:StackExchange.Redis.IDatabaseAsync.ListGetByIndexAsync(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  5822. <summary>
  5823. Returns the element at index index in the list stored at key. The index is zero-based, so 0 means the first element, 1 the second element and so on. Negative indices can be used to designate elements starting at the tail of the list. Here, -1 means the last element, -2 means the penultimate and so forth.
  5824. </summary>
  5825. <param name="key">The key of the list.</param>
  5826. <param name="index">The index position to ge the value at.</param>
  5827. <param name="flags">The flags to use for this operation.</param>
  5828. <returns>The requested element, or nil when index is out of range.</returns>
  5829. <remarks>https://redis.io/commands/lindex</remarks>
  5830. </member>
  5831. <member name="M:StackExchange.Redis.IDatabaseAsync.ListInsertAfterAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5832. <summary>
  5833. Inserts value in the list stored at key either before or after the reference value pivot.
  5834. When key does not exist, it is considered an empty list and no operation is performed.
  5835. </summary>
  5836. <param name="key">The key of the list.</param>
  5837. <param name="pivot">The value to insert after.</param>
  5838. <param name="value">The value to insert.</param>
  5839. <param name="flags">The flags to use for this operation.</param>
  5840. <returns>The length of the list after the insert operation, or -1 when the value pivot was not found.</returns>
  5841. <remarks>https://redis.io/commands/linsert</remarks>
  5842. </member>
  5843. <member name="M:StackExchange.Redis.IDatabaseAsync.ListInsertBeforeAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5844. <summary>
  5845. Inserts value in the list stored at key either before or after the reference value pivot.
  5846. When key does not exist, it is considered an empty list and no operation is performed.
  5847. </summary>
  5848. <param name="key">The key of the list.</param>
  5849. <param name="pivot">The value to insert before.</param>
  5850. <param name="value">The value to insert.</param>
  5851. <param name="flags">The flags to use for this operation.</param>
  5852. <returns>The length of the list after the insert operation, or -1 when the value pivot was not found.</returns>
  5853. <remarks>https://redis.io/commands/linsert</remarks>
  5854. </member>
  5855. <member name="M:StackExchange.Redis.IDatabaseAsync.ListLeftPopAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5856. <summary>
  5857. Removes and returns the first element of the list stored at key.
  5858. </summary>
  5859. <param name="key">The key of the list.</param>
  5860. <param name="flags">The flags to use for this operation.</param>
  5861. <returns>The value of the first element, or nil when key does not exist.</returns>
  5862. <remarks>https://redis.io/commands/lpop</remarks>
  5863. </member>
  5864. <member name="M:StackExchange.Redis.IDatabaseAsync.ListLeftPushAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  5865. <summary>
  5866. Insert the specified value at the head of the list stored at key. If key does not exist, it is created as empty list before performing the push operations.
  5867. </summary>
  5868. <param name="key">The key of the list.</param>
  5869. <param name="value">The value to add to the head of the list.</param>
  5870. <param name="when">Which conditions to add to the list under (defaults to always).</param>
  5871. <param name="flags">The flags to use for this operation.</param>
  5872. <returns>The length of the list after the push operations.</returns>
  5873. <remarks>https://redis.io/commands/lpush</remarks>
  5874. <remarks>https://redis.io/commands/lpushx</remarks>
  5875. </member>
  5876. <member name="M:StackExchange.Redis.IDatabaseAsync.ListLeftPushAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  5877. <summary>
  5878. Insert all the specified values at the head of the list stored at key. If key does not exist, it is created as empty list before performing the push operations.
  5879. Elements are inserted one after the other to the head of the list, from the leftmost element to the rightmost element. So for instance the command LPUSH mylist a b c will result into a list containing c as first element, b as second element and a as third element.
  5880. </summary>
  5881. <param name="key">The key of the list.</param>
  5882. <param name="values">The values to add to the head of the list.</param>
  5883. <param name="flags">The flags to use for this operation.</param>
  5884. <returns>The length of the list after the push operations.</returns>
  5885. <remarks>https://redis.io/commands/lpush</remarks>
  5886. </member>
  5887. <member name="M:StackExchange.Redis.IDatabaseAsync.ListLengthAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5888. <summary>
  5889. Returns the length of the list stored at key. If key does not exist, it is interpreted as an empty list and 0 is returned.
  5890. </summary>
  5891. <param name="key">The key of the list.</param>
  5892. <param name="flags">The flags to use for this operation.</param>
  5893. <returns>The length of the list at key.</returns>
  5894. <remarks>https://redis.io/commands/llen</remarks>
  5895. </member>
  5896. <member name="M:StackExchange.Redis.IDatabaseAsync.ListRangeAsync(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  5897. <summary>
  5898. Returns the specified elements of the list stored at key. The offsets start and stop are zero-based indexes, with 0 being the first element of the list (the head of the list), 1 being the next element and so on.
  5899. These offsets can also be negative numbers indicating offsets starting at the end of the list.For example, -1 is the last element of the list, -2 the penultimate, and so on.
  5900. Note that if you have a list of numbers from 0 to 100, LRANGE list 0 10 will return 11 elements, that is, the rightmost item is included.
  5901. </summary>
  5902. <param name="key">The key of the list.</param>
  5903. <param name="start">The start index of the list.</param>
  5904. <param name="stop">The stop index of the list.</param>
  5905. <param name="flags">The flags to use for this operation.</param>
  5906. <returns>List of elements in the specified range.</returns>
  5907. <remarks>https://redis.io/commands/lrange</remarks>
  5908. </member>
  5909. <member name="M:StackExchange.Redis.IDatabaseAsync.ListRemoveAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int64,StackExchange.Redis.CommandFlags)">
  5910. <summary>
  5911. Removes the first count occurrences of elements equal to value from the list stored at key. The count argument influences the operation in the following ways:
  5912. count &gt; 0: Remove elements equal to value moving from head to tail.
  5913. count &lt; 0: Remove elements equal to value moving from tail to head.
  5914. count = 0: Remove all elements equal to value.
  5915. </summary>
  5916. <param name="key">The key of the list.</param>
  5917. <param name="value">The value to remove from the list.</param>
  5918. <param name="count">The count behavior (see method summary).</param>
  5919. <param name="flags">The flags to use for this operation.</param>
  5920. <returns>The number of removed elements.</returns>
  5921. <remarks>https://redis.io/commands/lrem</remarks>
  5922. </member>
  5923. <member name="M:StackExchange.Redis.IDatabaseAsync.ListRightPopAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5924. <summary>
  5925. Removes and returns the last element of the list stored at key.
  5926. </summary>
  5927. <param name="key">The key of the list.</param>
  5928. <param name="flags">The flags to use for this operation.</param>
  5929. <returns>The element being popped.</returns>
  5930. <remarks>https://redis.io/commands/rpop</remarks>
  5931. </member>
  5932. <member name="M:StackExchange.Redis.IDatabaseAsync.ListRightPopLeftPushAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5933. <summary>
  5934. Atomically returns and removes the last element (tail) of the list stored at source, and pushes the element at the first element (head) of the list stored at destination.
  5935. </summary>
  5936. <param name="source">The key of the source list.</param>
  5937. <param name="destination">The key of the destination list.</param>
  5938. <param name="flags">The flags to use for this operation.</param>
  5939. <returns>The element being popped and pushed.</returns>
  5940. <remarks>https://redis.io/commands/rpoplpush</remarks>
  5941. </member>
  5942. <member name="M:StackExchange.Redis.IDatabaseAsync.ListRightPushAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  5943. <summary>
  5944. Insert the specified value at the tail of the list stored at key. If key does not exist, it is created as empty list before performing the push operation.
  5945. </summary>
  5946. <param name="key">The key of the list.</param>
  5947. <param name="value">The value to add to the tail of the list.</param>
  5948. <param name="when">Which conditions to add to the list under.</param>
  5949. <param name="flags">The flags to use for this operation.</param>
  5950. <returns>The length of the list after the push operation.</returns>
  5951. <remarks>https://redis.io/commands/rpush</remarks>
  5952. <remarks>https://redis.io/commands/rpushx</remarks>
  5953. </member>
  5954. <member name="M:StackExchange.Redis.IDatabaseAsync.ListRightPushAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  5955. <summary>
  5956. Insert all the specified values at the tail of the list stored at key. If key does not exist, it is created as empty list before performing the push operation.
  5957. Elements are inserted one after the other to the tail of the list, from the leftmost element to the rightmost element. So for instance the command RPUSH mylist a b c will result into a list containing a as first element, b as second element and c as third element.
  5958. </summary>
  5959. <param name="key">The key of the list.</param>
  5960. <param name="values">The values to add to the tail of the list.</param>
  5961. <param name="flags">The flags to use for this operation.</param>
  5962. <returns>The length of the list after the push operation.</returns>
  5963. <remarks>https://redis.io/commands/rpush</remarks>
  5964. </member>
  5965. <member name="M:StackExchange.Redis.IDatabaseAsync.ListSetByIndexAsync(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  5966. <summary>
  5967. Sets the list element at index to value. For more information on the index argument, see ListGetByIndex. An error is returned for out of range indexes.
  5968. </summary>
  5969. <param name="key">The key of the list.</param>
  5970. <param name="index">The index to set the value at.</param>
  5971. <param name="value">The values to add to the list.</param>
  5972. <param name="flags">The flags to use for this operation.</param>
  5973. <remarks>https://redis.io/commands/lset</remarks>
  5974. </member>
  5975. <member name="M:StackExchange.Redis.IDatabaseAsync.ListTrimAsync(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  5976. <summary>
  5977. Trim an existing list so that it will contain only the specified range of elements specified. Both start and stop are zero-based indexes, where 0 is the first element of the list (the head), 1 the next element and so on.
  5978. For example: LTRIM foobar 0 2 will modify the list stored at foobar so that only the first three elements of the list will remain.
  5979. start and end can also be negative numbers indicating offsets from the end of the list, where -1 is the last element of the list, -2 the penultimate element and so on.
  5980. </summary>
  5981. <param name="key">The key of the list.</param>
  5982. <param name="start">The start index of the list to trim to.</param>
  5983. <param name="stop">The end index of the list to trim to.</param>
  5984. <param name="flags">The flags to use for this operation.</param>
  5985. <remarks>https://redis.io/commands/ltrim</remarks>
  5986. </member>
  5987. <member name="M:StackExchange.Redis.IDatabaseAsync.LockExtendAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.TimeSpan,StackExchange.Redis.CommandFlags)">
  5988. <summary>
  5989. Extends a lock, if the token value is correct.
  5990. </summary>
  5991. <param name="key">The key of the lock.</param>
  5992. <param name="value">The value to set at the key.</param>
  5993. <param name="expiry">The expiration of the lock key.</param>
  5994. <param name="flags">The flags to use for this operation.</param>
  5995. <returns>True if the lock was successfully extended.</returns>
  5996. </member>
  5997. <member name="M:StackExchange.Redis.IDatabaseAsync.LockQueryAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  5998. <summary>
  5999. Queries the token held against a lock.
  6000. </summary>
  6001. <param name="key">The key of the lock.</param>
  6002. <param name="flags">The flags to use for this operation.</param>
  6003. <returns>The current value of the lock, if any.</returns>
  6004. </member>
  6005. <member name="M:StackExchange.Redis.IDatabaseAsync.LockReleaseAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6006. <summary>
  6007. Releases a lock, if the token value is correct.
  6008. </summary>
  6009. <param name="key">The key of the lock.</param>
  6010. <param name="value">The value at the key tht must match.</param>
  6011. <param name="flags">The flags to use for this operation.</param>
  6012. <returns>True if the lock was successfully released, false otherwise.</returns>
  6013. </member>
  6014. <member name="M:StackExchange.Redis.IDatabaseAsync.LockTakeAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.TimeSpan,StackExchange.Redis.CommandFlags)">
  6015. <summary>
  6016. Takes a lock (specifying a token value) if it is not already taken.
  6017. </summary>
  6018. <param name="key">The key of the lock.</param>
  6019. <param name="value">The value to set at the key.</param>
  6020. <param name="expiry">The expiration of the lock key.</param>
  6021. <param name="flags">The flags to use for this operation.</param>
  6022. <returns>True if the lock was successfully taken, false otherwise.</returns>
  6023. </member>
  6024. <member name="M:StackExchange.Redis.IDatabaseAsync.PublishAsync(StackExchange.Redis.RedisChannel,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6025. <summary>
  6026. Posts a message to the given channel.
  6027. </summary>
  6028. <param name="channel">The channel to publish to.</param>
  6029. <param name="message">The message to send.</param>
  6030. <param name="flags">The flags to use for this operation.</param>
  6031. <returns>The number of clients that received the message.</returns>
  6032. <remarks>https://redis.io/commands/publish</remarks>
  6033. </member>
  6034. <member name="M:StackExchange.Redis.IDatabaseAsync.ExecuteAsync(System.String,System.Object[])">
  6035. <summary>
  6036. Execute an arbitrary command against the server; this is primarily intended for
  6037. executing modules, but may also be used to provide access to new features that lack
  6038. a direct API.
  6039. </summary>
  6040. <param name="command">The command to run.</param>
  6041. <param name="args">The arguments to pass for the command.</param>
  6042. <remarks>This API should be considered an advanced feature; inappropriate use can be harmful</remarks>
  6043. <returns>A dynamic representation of the command's result</returns>
  6044. </member>
  6045. <member name="M:StackExchange.Redis.IDatabaseAsync.ExecuteAsync(System.String,System.Collections.Generic.ICollection{System.Object},StackExchange.Redis.CommandFlags)">
  6046. <summary>
  6047. Execute an arbitrary command against the server; this is primarily intended for
  6048. executing modules, but may also be used to provide access to new features that lack
  6049. a direct API.
  6050. </summary>
  6051. <param name="command">The command to run.</param>
  6052. <param name="args">The arguments to pass for the command.</param>
  6053. <param name="flags">The flags to use for this operation.</param>
  6054. <remarks>This API should be considered an advanced feature; inappropriate use can be harmful</remarks>
  6055. <returns>A dynamic representation of the command's result</returns>
  6056. </member>
  6057. <member name="M:StackExchange.Redis.IDatabaseAsync.ScriptEvaluateAsync(System.String,StackExchange.Redis.RedisKey[],StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  6058. <summary>
  6059. Execute a Lua script against the server.
  6060. </summary>
  6061. <param name="script">The script to execute.</param>
  6062. <param name="keys">The keys to execute against.</param>
  6063. <param name="values">The values to execute against.</param>
  6064. <param name="flags">The flags to use for this operation.</param>
  6065. <returns>A dynamic representation of the script's result</returns>
  6066. <remarks>https://redis.io/commands/eval</remarks>
  6067. <remarks>https://redis.io/commands/evalsha</remarks>
  6068. </member>
  6069. <member name="M:StackExchange.Redis.IDatabaseAsync.ScriptEvaluateAsync(System.Byte[],StackExchange.Redis.RedisKey[],StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  6070. <summary>
  6071. Execute a Lua script against the server using just the SHA1 hash
  6072. </summary>
  6073. <param name="hash">The hash of the script to execute.</param>
  6074. <param name="keys">The keys to execute against.</param>
  6075. <param name="values">The values to execute against.</param>
  6076. <param name="flags">The flags to use for this operation.</param>
  6077. <returns>A dynamic representation of the script's result</returns>
  6078. <remarks>https://redis.io/commands/evalsha</remarks>
  6079. </member>
  6080. <member name="M:StackExchange.Redis.IDatabaseAsync.ScriptEvaluateAsync(StackExchange.Redis.LuaScript,System.Object,StackExchange.Redis.CommandFlags)">
  6081. <summary>
  6082. Execute a lua script against the server, using previously prepared script.
  6083. Named parameters, if any, are provided by the `parameters` object.
  6084. </summary>
  6085. <param name="script">The script to execute.</param>
  6086. <param name="parameters">The parameters to pass to the script.</param>
  6087. <param name="flags">The flags to use for this operation.</param>
  6088. <returns>A dynamic representation of the script's result</returns>
  6089. <remarks>https://redis.io/commands/eval</remarks>
  6090. </member>
  6091. <member name="M:StackExchange.Redis.IDatabaseAsync.ScriptEvaluateAsync(StackExchange.Redis.LoadedLuaScript,System.Object,StackExchange.Redis.CommandFlags)">
  6092. <summary>
  6093. Execute a lua script against the server, using previously prepared and loaded script.
  6094. This method sends only the SHA1 hash of the lua script to Redis.
  6095. Named parameters, if any, are provided by the `parameters` object.
  6096. </summary>
  6097. <param name="script">The already-loaded script to execute.</param>
  6098. <param name="parameters">The parameters to pass to the script.</param>
  6099. <param name="flags">The flags to use for this operation.</param>
  6100. <returns>A dynamic representation of the script's result</returns>
  6101. <remarks>https://redis.io/commands/eval</remarks>
  6102. </member>
  6103. <member name="M:StackExchange.Redis.IDatabaseAsync.SetAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6104. <summary>
  6105. Add the specified member to the set stored at key.
  6106. Specified members that are already a member of this set are ignored.
  6107. If key does not exist, a new set is created before adding the specified members.
  6108. </summary>
  6109. <param name="key">The key of the set.</param>
  6110. <param name="value">The value to add to the set.</param>
  6111. <param name="flags">The flags to use for this operation.</param>
  6112. <returns>True if the specified member was not already present in the set, else False</returns>
  6113. <remarks>https://redis.io/commands/sadd</remarks>
  6114. </member>
  6115. <member name="M:StackExchange.Redis.IDatabaseAsync.SetAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  6116. <summary>
  6117. Add the specified members to the set stored at key.
  6118. Specified members that are already a member of this set are ignored.
  6119. If key does not exist, a new set is created before adding the specified members.
  6120. </summary>
  6121. <param name="key">The key of the set.</param>
  6122. <param name="values">The values to add to the set.</param>
  6123. <param name="flags">The flags to use for this operation.</param>
  6124. <returns>The number of elements that were added to the set, not including all the elements already present into the set.</returns>
  6125. <remarks>https://redis.io/commands/sadd</remarks>
  6126. </member>
  6127. <member name="M:StackExchange.Redis.IDatabaseAsync.SetCombineAsync(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  6128. <summary>
  6129. Returns the members of the set resulting from the specified operation against the given sets.
  6130. </summary>
  6131. <param name="operation">The operation to perform.</param>
  6132. <param name="first">The key of the first set.</param>
  6133. <param name="second">The key of the second set.</param>
  6134. <param name="flags">The flags to use for this operation.</param>
  6135. <returns>List with members of the resulting set.</returns>
  6136. <remarks>https://redis.io/commands/sunion</remarks>
  6137. <remarks>https://redis.io/commands/sinter</remarks>
  6138. <remarks>https://redis.io/commands/sdiff</remarks>
  6139. </member>
  6140. <member name="M:StackExchange.Redis.IDatabaseAsync.SetCombineAsync(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  6141. <summary>
  6142. Returns the members of the set resulting from the specified operation against the given sets.
  6143. </summary>
  6144. <param name="operation">The operation to perform.</param>
  6145. <param name="keys">The keys of the sets to operate on.</param>
  6146. <param name="flags">The flags to use for this operation.</param>
  6147. <returns>List with members of the resulting set.</returns>
  6148. <remarks>https://redis.io/commands/sunion</remarks>
  6149. <remarks>https://redis.io/commands/sinter</remarks>
  6150. <remarks>https://redis.io/commands/sdiff</remarks>
  6151. </member>
  6152. <member name="M:StackExchange.Redis.IDatabaseAsync.SetCombineAndStoreAsync(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  6153. <summary>
  6154. This command is equal to SetCombine, but instead of returning the resulting set, it is stored in destination. If destination already exists, it is overwritten.
  6155. </summary>
  6156. <param name="operation">The operation to perform.</param>
  6157. <param name="destination">The key of the destination set.</param>
  6158. <param name="first">The key of the first set.</param>
  6159. <param name="second">The key of the second set.</param>
  6160. <param name="flags">The flags to use for this operation.</param>
  6161. <returns>The number of elements in the resulting set.</returns>
  6162. <remarks>https://redis.io/commands/sunionstore</remarks>
  6163. <remarks>https://redis.io/commands/sinterstore</remarks>
  6164. <remarks>https://redis.io/commands/sdiffstore</remarks>
  6165. </member>
  6166. <member name="M:StackExchange.Redis.IDatabaseAsync.SetCombineAndStoreAsync(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  6167. <summary>
  6168. This command is equal to SetCombine, but instead of returning the resulting set, it is stored in destination. If destination already exists, it is overwritten.
  6169. </summary>
  6170. <param name="operation">The operation to perform.</param>
  6171. <param name="destination">The key of the destination set.</param>
  6172. <param name="keys">The keys of the sets to operate on.</param>
  6173. <param name="flags">The flags to use for this operation.</param>
  6174. <returns>The number of elements in the resulting set.</returns>
  6175. <remarks>https://redis.io/commands/sunionstore</remarks>
  6176. <remarks>https://redis.io/commands/sinterstore</remarks>
  6177. <remarks>https://redis.io/commands/sdiffstore</remarks>
  6178. </member>
  6179. <member name="M:StackExchange.Redis.IDatabaseAsync.SetContainsAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6180. <summary>
  6181. Returns if member is a member of the set stored at key.
  6182. </summary>
  6183. <param name="key">The key of the set.</param>
  6184. <param name="value">The value to check for .</param>
  6185. <param name="flags">The flags to use for this operation.</param>
  6186. <returns>1 if the element is a member of the set. 0 if the element is not a member of the set, or if key does not exist.</returns>
  6187. <remarks>https://redis.io/commands/sismember</remarks>
  6188. </member>
  6189. <member name="M:StackExchange.Redis.IDatabaseAsync.SetLengthAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  6190. <summary>
  6191. Returns the set cardinality (number of elements) of the set stored at key.
  6192. </summary>
  6193. <param name="key">The key of the set.</param>
  6194. <param name="flags">The flags to use for this operation.</param>
  6195. <returns>The cardinality (number of elements) of the set, or 0 if key does not exist.</returns>
  6196. <remarks>https://redis.io/commands/scard</remarks>
  6197. </member>
  6198. <member name="M:StackExchange.Redis.IDatabaseAsync.SetMembersAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  6199. <summary>
  6200. Returns all the members of the set value stored at key.
  6201. </summary>
  6202. <param name="key">The key of the set.</param>
  6203. <param name="flags">The flags to use for this operation.</param>
  6204. <returns>All elements of the set.</returns>
  6205. <remarks>https://redis.io/commands/smembers</remarks>
  6206. </member>
  6207. <member name="M:StackExchange.Redis.IDatabaseAsync.SetMoveAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6208. <summary>
  6209. Move member from the set at source to the set at destination. This operation is atomic. In every given moment the element will appear to be a member of source or destination for other clients.
  6210. When the specified element already exists in the destination set, it is only removed from the source set.
  6211. </summary>
  6212. <param name="source">The key of the source set.</param>
  6213. <param name="destination">The key of the destination set.</param>
  6214. <param name="value">The value to move.</param>
  6215. <param name="flags">The flags to use for this operation.</param>
  6216. <returns>1 if the element is moved. 0 if the element is not a member of source and no operation was performed.</returns>
  6217. <remarks>https://redis.io/commands/smove</remarks>
  6218. </member>
  6219. <member name="M:StackExchange.Redis.IDatabaseAsync.SetPopAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  6220. <summary>
  6221. Removes and returns a random element from the set value stored at key.
  6222. </summary>
  6223. <param name="key">The key of the set.</param>
  6224. <param name="flags">The flags to use for this operation.</param>
  6225. <returns>The removed element, or nil when key does not exist.</returns>
  6226. <remarks>https://redis.io/commands/spop</remarks>
  6227. </member>
  6228. <member name="M:StackExchange.Redis.IDatabaseAsync.SetPopAsync(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  6229. <summary>
  6230. Removes and returns the specified number of random elements from the set value stored at key.
  6231. </summary>
  6232. <param name="key">The key of the set.</param>
  6233. <param name="count">The number of elements to return.</param>
  6234. <param name="flags">The flags to use for this operation.</param>
  6235. <returns>An array of elements, or an empty array when key does not exist.</returns>
  6236. <remarks>https://redis.io/commands/spop</remarks>
  6237. </member>
  6238. <member name="M:StackExchange.Redis.IDatabaseAsync.SetRandomMemberAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  6239. <summary>
  6240. Return a random element from the set value stored at key.
  6241. </summary>
  6242. <param name="key">The key of the set.</param>
  6243. <param name="flags">The flags to use for this operation.</param>
  6244. <returns>The randomly selected element, or nil when key does not exist</returns>
  6245. <remarks>https://redis.io/commands/srandmember</remarks>
  6246. </member>
  6247. <member name="M:StackExchange.Redis.IDatabaseAsync.SetRandomMembersAsync(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  6248. <summary>
  6249. Return an array of count distinct elements if count is positive. If called with a negative count the behavior changes and the command is allowed to return the same element multiple times.
  6250. In this case the numer of returned elements is the absolute value of the specified count.
  6251. </summary>
  6252. <param name="key">The key of the set.</param>
  6253. <param name="count">The count of members to get.</param>
  6254. <param name="flags">The flags to use for this operation.</param>
  6255. <returns>An array of elements, or an empty array when key does not exist</returns>
  6256. <remarks>https://redis.io/commands/srandmember</remarks>
  6257. </member>
  6258. <member name="M:StackExchange.Redis.IDatabaseAsync.SetRemoveAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6259. <summary>
  6260. Remove the specified member from the set stored at key. Specified members that are not a member of this set are ignored.
  6261. </summary>
  6262. <param name="key">The key of the set.</param>
  6263. <param name="value">The value to remove.</param>
  6264. <param name="flags">The flags to use for this operation.</param>
  6265. <returns>True if the specified member was already present in the set, else False</returns>
  6266. <remarks>https://redis.io/commands/srem</remarks>
  6267. </member>
  6268. <member name="M:StackExchange.Redis.IDatabaseAsync.SetRemoveAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  6269. <summary>
  6270. Remove the specified members from the set stored at key. Specified members that are not a member of this set are ignored.
  6271. </summary>
  6272. <param name="key">The key of the set.</param>
  6273. <param name="values">The values to remove.</param>
  6274. <param name="flags">The flags to use for this operation.</param>
  6275. <returns>The number of members that were removed from the set, not including non existing members.</returns>
  6276. <remarks>https://redis.io/commands/srem</remarks>
  6277. </member>
  6278. <member name="M:StackExchange.Redis.IDatabaseAsync.SortAsync(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.Order,StackExchange.Redis.SortType,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  6279. <summary>
  6280. Sorts a list, set or sorted set (numerically or alphabetically, ascending by default); By default, the elements themselves are compared, but the values can also be
  6281. used to perform external key-lookups using the <c>by</c> parameter. By default, the elements themselves are returned, but external key-lookups (one or many) can
  6282. be performed instead by specifying the <c>get</c> parameter (note that <c>#</c> specifies the element itself, when used in <c>get</c>).
  6283. Referring to the <a href="https://redis.io/commands/sort">redis SORT documentation </a> for examples is recommended. When used in hashes, <c>by</c> and <c>get</c>
  6284. can be used to specify fields using <c>-&gt;</c> notation (again, refer to redis documentation).
  6285. </summary>
  6286. <param name="key">The key of the list, set, or sorted set.</param>
  6287. <param name="skip">How many entries to skip on the return.</param>
  6288. <param name="take">How many entries to take on the return.</param>
  6289. <param name="order">The ascending or descending order (defaults to ascending).</param>
  6290. <param name="sortType">The sorting method (defaults to numeric).</param>
  6291. <param name="by">The key pattern to sort by, if any. e.g. ExternalKey_* would sort by ExternalKey_{listvalue} as a lookup.</param>
  6292. <param name="get">The key pattern to sort by, if any e.g. ExternalKey_* would return the value of ExternalKey_{listvalue} for each entry.</param>
  6293. <param name="flags">The flags to use for this operation.</param>
  6294. <returns>The sorted elements, or the external values if <c>get</c> is specified.</returns>
  6295. <remarks>https://redis.io/commands/sort</remarks>
  6296. </member>
  6297. <member name="M:StackExchange.Redis.IDatabaseAsync.SortAndStoreAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.Order,StackExchange.Redis.SortType,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  6298. <summary>
  6299. Sorts a list, set or sorted set (numerically or alphabetically, ascending by default); By default, the elements themselves are compared, but the values can also be
  6300. used to perform external key-lookups using the <c>by</c> parameter. By default, the elements themselves are returned, but external key-lookups (one or many) can
  6301. be performed instead by specifying the <c>get</c> parameter (note that <c>#</c> specifies the element itself, when used in <c>get</c>).
  6302. Referring to the <a href="https://redis.io/commands/sort">redis SORT documentation </a> for examples is recommended. When used in hashes, <c>by</c> and <c>get</c>
  6303. can be used to specify fields using <c>-&gt;</c> notation (again, refer to redis documentation).
  6304. </summary>
  6305. <param name="destination">The destination key to store results in.</param>
  6306. <param name="key">The key of the list, set, or sorted set.</param>
  6307. <param name="skip">How many entries to skip on the return.</param>
  6308. <param name="take">How many entries to take on the return.</param>
  6309. <param name="order">The ascending or descending order (defaults to ascending).</param>
  6310. <param name="sortType">The sorting method (defaults to numeric).</param>
  6311. <param name="by">The key pattern to sort by, if any. e.g. ExternalKey_* would sort by ExternalKey_{listvalue} as a lookup.</param>
  6312. <param name="get">The key pattern to sort by, if any e.g. ExternalKey_* would return the value of ExternalKey_{listvalue} for each entry.</param>
  6313. <param name="flags">The flags to use for this operation.</param>
  6314. <returns>The number of elements stored in the new list.</returns>
  6315. <remarks>https://redis.io/commands/sort</remarks>
  6316. </member>
  6317. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.CommandFlags)">
  6318. <summary>
  6319. Adds the specified member with the specified score to the sorted set stored at key. If the specified member is already a member of the sorted set, the score is updated and the element reinserted at the right position to ensure the correct ordering.
  6320. </summary>
  6321. <param name="key">The key of the sorted set.</param>
  6322. <param name="member">The member to add to the sorted set.</param>
  6323. <param name="score">The score for the member to add to the sorted set.</param>
  6324. <param name="flags">The flags to use for this operation.</param>
  6325. <returns>True if the value was added, False if it already existed (the score is still updated)</returns>
  6326. <remarks>https://redis.io/commands/zadd</remarks>
  6327. </member>
  6328. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  6329. <summary>
  6330. Adds the specified member with the specified score to the sorted set stored at key. If the specified member is already a member of the sorted set, the score is updated and the element reinserted at the right position to ensure the correct ordering.
  6331. </summary>
  6332. <param name="key">The key of the sorted set.</param>
  6333. <param name="member">The member to add to the sorted set.</param>
  6334. <param name="score">The score for the member to add to the sorted set.</param>
  6335. <param name="when">What conditions to add the element under (defaults to always).</param>
  6336. <param name="flags">The flags to use for this operation.</param>
  6337. <returns>True if the value was added, False if it already existed (the score is still updated)</returns>
  6338. <remarks>https://redis.io/commands/zadd</remarks>
  6339. </member>
  6340. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.SortedSetEntry[],StackExchange.Redis.CommandFlags)">
  6341. <summary>
  6342. Adds all the specified members with the specified scores to the sorted set stored at key. If a specified member is already a member of the sorted set, the score is updated and the element reinserted at the right position to ensure the correct ordering.
  6343. </summary>
  6344. <param name="key">The key of the sorted set.</param>
  6345. <param name="values">The members and values to add to the sorted set.</param>
  6346. <param name="flags">The flags to use for this operation.</param>
  6347. <returns>The number of elements added to the sorted sets, not including elements already existing for which the score was updated.</returns>
  6348. <remarks>https://redis.io/commands/zadd</remarks>
  6349. </member>
  6350. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.SortedSetEntry[],StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  6351. <summary>
  6352. Adds all the specified members with the specified scores to the sorted set stored at key. If a specified member is already a member of the sorted set, the score is updated and the element reinserted at the right position to ensure the correct ordering.
  6353. </summary>
  6354. <param name="key">The key of the sorted set.</param>
  6355. <param name="values">The members and values to add to the sorted set.</param>
  6356. <param name="when">What conditions to add the element under (defaults to always).</param>
  6357. <param name="flags">The flags to use for this operation.</param>
  6358. <returns>The number of elements added to the sorted sets, not including elements already existing for which the score was updated.</returns>
  6359. <remarks>https://redis.io/commands/zadd</remarks>
  6360. </member>
  6361. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetCombineAndStoreAsync(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.Aggregate,StackExchange.Redis.CommandFlags)">
  6362. <summary>
  6363. Computes a set operation over two sorted sets, and stores the result in destination, optionally performing
  6364. a specific aggregation (defaults to sum).
  6365. </summary>
  6366. <param name="operation">The operation to perform.</param>
  6367. <param name="destination">The key to store the results in.</param>
  6368. <param name="first">The key of the first sorted set.</param>
  6369. <param name="second">The key of the second sorted set.</param>
  6370. <param name="aggregate">The aggregation method (defaults to sum).</param>
  6371. <param name="flags">The flags to use for this operation.</param>
  6372. <remarks>https://redis.io/commands/zunionstore</remarks>
  6373. <remarks>https://redis.io/commands/zinterstore</remarks>
  6374. <returns>the number of elements in the resulting sorted set at destination</returns>
  6375. </member>
  6376. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetCombineAndStoreAsync(StackExchange.Redis.SetOperation,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey[],System.Double[],StackExchange.Redis.Aggregate,StackExchange.Redis.CommandFlags)">
  6377. <summary>
  6378. Computes a set operation over multiple sorted sets (optionally using per-set weights), and stores the result in destination, optionally performing
  6379. a specific aggregation (defaults to sum).
  6380. </summary>
  6381. <param name="operation">The operation to perform.</param>
  6382. <param name="destination">The key to store the results in.</param>
  6383. <param name="keys">The keys of the sorted sets.</param>
  6384. <param name="weights">The optional weights per set that correspond to <paramref name="keys"/>.</param>
  6385. <param name="aggregate">The aggregation method (defaults to sum).</param>
  6386. <param name="flags">The flags to use for this operation.</param>
  6387. <remarks>https://redis.io/commands/zunionstore</remarks>
  6388. <remarks>https://redis.io/commands/zinterstore</remarks>
  6389. <returns>the number of elements in the resulting sorted set at destination</returns>
  6390. </member>
  6391. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetDecrementAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.CommandFlags)">
  6392. <summary>
  6393. Decrements the score of member in the sorted set stored at key by decrement. If member does not exist in the sorted set, it is added with -decrement as its score (as if its previous score was 0.0).
  6394. </summary>
  6395. <param name="key">The key of the sorted set.</param>
  6396. <param name="member">The member to decrement.</param>
  6397. <param name="value">The amount to decrement by.</param>
  6398. <param name="flags">The flags to use for this operation.</param>
  6399. <returns>The new score of member.</returns>
  6400. <remarks>https://redis.io/commands/zincrby</remarks>
  6401. </member>
  6402. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetIncrementAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Double,StackExchange.Redis.CommandFlags)">
  6403. <summary>
  6404. Increments the score of member in the sorted set stored at key by increment. If member does not exist in the sorted set, it is added with increment as its score (as if its previous score was 0.0).
  6405. </summary>
  6406. <param name="key">The key of the sorted set.</param>
  6407. <param name="member">The member to increment.</param>
  6408. <param name="value">The amount to increment by.</param>
  6409. <param name="flags">The flags to use for this operation.</param>
  6410. <returns>The new score of member.</returns>
  6411. <remarks>https://redis.io/commands/zincrby</remarks>
  6412. </member>
  6413. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetLengthAsync(StackExchange.Redis.RedisKey,System.Double,System.Double,StackExchange.Redis.Exclude,StackExchange.Redis.CommandFlags)">
  6414. <summary>
  6415. Returns the sorted set cardinality (number of elements) of the sorted set stored at key.
  6416. </summary>
  6417. <param name="key">The key of the sorted set.</param>
  6418. <param name="min">The min score to filter by (defaults to negative infinity).</param>
  6419. <param name="max">The max score to filter by (defaults to positive infinity).</param>
  6420. <param name="exclude">Whether to exclude <paramref name="min"/> and <paramref name="max"/> from the range check (defaults to both inclusive).</param>
  6421. <param name="flags">The flags to use for this operation.</param>
  6422. <returns>The cardinality (number of elements) of the sorted set, or 0 if key does not exist.</returns>
  6423. <remarks>https://redis.io/commands/zcard</remarks>
  6424. </member>
  6425. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetLengthByValueAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.Exclude,StackExchange.Redis.CommandFlags)">
  6426. <summary>
  6427. When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command returns the number of elements in the sorted set at key with a value between min and max.
  6428. </summary>
  6429. <param name="key">The key of the sorted set.</param>
  6430. <param name="min">The min value to filter by.</param>
  6431. <param name="max">The max value to filter by.</param>
  6432. <param name="exclude">Whether to exclude <paramref name="min"/> and <paramref name="max"/> from the range check (defaults to both inclusive).</param>
  6433. <param name="flags">The flags to use for this operation.</param>
  6434. <returns>The number of elements in the specified score range.</returns>
  6435. <remarks>https://redis.io/commands/zlexcount</remarks>
  6436. </member>
  6437. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRangeByRankAsync(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  6438. <summary>
  6439. Returns the specified range of elements in the sorted set stored at key. By default the elements are considered to be ordered from the lowest to the highest score. Lexicographical order is used for elements with equal score.
  6440. Both start and stop are zero-based indexes, where 0 is the first element, 1 is the next element and so on. They can also be negative numbers indicating offsets from the end of the sorted set, with -1 being the last element of the sorted set, -2 the penultimate element and so on.
  6441. </summary>
  6442. <param name="key">The key of the sorted set.</param>
  6443. <param name="start">The start index to get.</param>
  6444. <param name="stop">The stop index to get.</param>
  6445. <param name="order">The order to sort by (defaults to ascending).</param>
  6446. <param name="flags">The flags to use for this operation.</param>
  6447. <returns>List of elements in the specified range.</returns>
  6448. <remarks>https://redis.io/commands/zrange</remarks>
  6449. <remarks>https://redis.io/commands/zrevrange</remarks>
  6450. </member>
  6451. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRangeByRankWithScoresAsync(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  6452. <summary>
  6453. Returns the specified range of elements in the sorted set stored at key. By default the elements are considered to be ordered from the lowest to the highest score. Lexicographical order is used for elements with equal score.
  6454. Both start and stop are zero-based indexes, where 0 is the first element, 1 is the next element and so on. They can also be negative numbers indicating offsets from the end of the sorted set, with -1 being the last element of the sorted set, -2 the penultimate element and so on.
  6455. </summary>
  6456. <param name="key">The key of the sorted set.</param>
  6457. <param name="start">The start index to get.</param>
  6458. <param name="stop">The stop index to get.</param>
  6459. <param name="order">The order to sort by (defaults to ascending).</param>
  6460. <param name="flags">The flags to use for this operation.</param>
  6461. <returns>List of elements in the specified range.</returns>
  6462. <remarks>https://redis.io/commands/zrange</remarks>
  6463. <remarks>https://redis.io/commands/zrevrange</remarks>
  6464. </member>
  6465. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRangeByScoreAsync(StackExchange.Redis.RedisKey,System.Double,System.Double,StackExchange.Redis.Exclude,StackExchange.Redis.Order,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  6466. <summary>
  6467. Returns the specified range of elements in the sorted set stored at key. By default the elements are considered to be ordered from the lowest to the highest score. Lexicographical order is used for elements with equal score.
  6468. Start and stop are used to specify the min and max range for score values. Similar to other range methods the values are inclusive.
  6469. </summary>
  6470. <param name="key">The key of the sorted set.</param>
  6471. <param name="start">The minimum score to filter by.</param>
  6472. <param name="stop">The maximum score to filter by.</param>
  6473. <param name="exclude">Which of <paramref name="start"/> and <paramref name="stop"/> to exclude (defaults to both inclusive).</param>
  6474. <param name="order">The order to sort by (defaults to ascending).</param>
  6475. <param name="skip">How many items to skip.</param>
  6476. <param name="take">How many items to take.</param>
  6477. <param name="flags">The flags to use for this operation.</param>
  6478. <returns>List of elements in the specified score range.</returns>
  6479. <remarks>https://redis.io/commands/zrangebyscore</remarks>
  6480. <remarks>https://redis.io/commands/zrevrangebyscore</remarks>
  6481. </member>
  6482. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRangeByScoreWithScoresAsync(StackExchange.Redis.RedisKey,System.Double,System.Double,StackExchange.Redis.Exclude,StackExchange.Redis.Order,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  6483. <summary>
  6484. Returns the specified range of elements in the sorted set stored at key. By default the elements are considered to be ordered from the lowest to the highest score. Lexicographical order is used for elements with equal score.
  6485. Start and stop are used to specify the min and max range for score values. Similar to other range methods the values are inclusive.
  6486. </summary>
  6487. <param name="key">The key of the sorted set.</param>
  6488. <param name="start">The minimum score to filter by.</param>
  6489. <param name="stop">The maximum score to filter by.</param>
  6490. <param name="exclude">Which of <paramref name="start"/> and <paramref name="stop"/> to exclude (defaults to both inclusive).</param>
  6491. <param name="order">The order to sort by (defaults to ascending).</param>
  6492. <param name="skip">How many items to skip.</param>
  6493. <param name="take">How many items to take.</param>
  6494. <param name="flags">The flags to use for this operation.</param>
  6495. <returns>List of elements in the specified score range.</returns>
  6496. <remarks>https://redis.io/commands/zrangebyscore</remarks>
  6497. <remarks>https://redis.io/commands/zrevrangebyscore</remarks>
  6498. </member>
  6499. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRangeByValueAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.Exclude,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  6500. <summary>
  6501. When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command returns all the elements in the sorted set at key with a value between min and max.
  6502. </summary>
  6503. <param name="key">The key of the sorted set.</param>
  6504. <param name="min">The min value to filter by.</param>
  6505. <param name="max">The max value to filter by.</param>
  6506. <param name="exclude">Which of <paramref name="min"/> and <paramref name="max"/> to exclude (defaults to both inclusive).</param>
  6507. <param name="skip">How many items to skip.</param>
  6508. <param name="take">How many items to take.</param>
  6509. <param name="flags">The flags to use for this operation.</param>
  6510. <remarks>https://redis.io/commands/zrangebylex</remarks>
  6511. <returns>list of elements in the specified score range.</returns>
  6512. </member>
  6513. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRangeByValueAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.Exclude,StackExchange.Redis.Order,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  6514. <summary>
  6515. When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command returns all the elements in the sorted set at key with a value between min and max.
  6516. </summary>
  6517. <param name="key">The key of the sorted set.</param>
  6518. <param name="min">The min value to filter by.</param>
  6519. <param name="max">The max value to filter by.</param>
  6520. <param name="exclude">Which of <paramref name="min"/> and <paramref name="max"/> to exclude (defaults to both inclusive).</param>
  6521. <param name="order">Whether to order the data ascending or descending</param>
  6522. <param name="skip">How many items to skip.</param>
  6523. <param name="take">How many items to take.</param>
  6524. <param name="flags">The flags to use for this operation.</param>
  6525. <remarks>https://redis.io/commands/zrangebylex</remarks>
  6526. <remarks>https://redis.io/commands/zrevrangebylex</remarks>
  6527. <returns>list of elements in the specified score range.</returns>
  6528. </member>
  6529. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRankAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  6530. <summary>
  6531. Returns the rank of member in the sorted set stored at key, by default with the scores ordered from low to high. The rank (or index) is 0-based, which means that the member with the lowest score has rank 0.
  6532. </summary>
  6533. <param name="key">The key of the sorted set.</param>
  6534. <param name="member">The member to get the rank of.</param>
  6535. <param name="order">The order to sort by (defaults to ascending).</param>
  6536. <param name="flags">The flags to use for this operation.</param>
  6537. <returns>If member exists in the sorted set, the rank of member; If member does not exist in the sorted set or key does not exist, null</returns>
  6538. <remarks>https://redis.io/commands/zrank</remarks>
  6539. <remarks>https://redis.io/commands/zrevrank</remarks>
  6540. </member>
  6541. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRemoveAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6542. <summary>
  6543. Removes the specified member from the sorted set stored at key. Non existing members are ignored.
  6544. </summary>
  6545. <param name="key">The key of the sorted set.</param>
  6546. <param name="member">The member to remove.</param>
  6547. <param name="flags">The flags to use for this operation.</param>
  6548. <returns>True if the member existed in the sorted set and was removed; False otherwise.</returns>
  6549. <remarks>https://redis.io/commands/zrem</remarks>
  6550. </member>
  6551. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRemoveAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  6552. <summary>
  6553. Removes the specified members from the sorted set stored at key. Non existing members are ignored.
  6554. </summary>
  6555. <param name="key">The key of the sorted set.</param>
  6556. <param name="members">The members to remove.</param>
  6557. <param name="flags">The flags to use for this operation.</param>
  6558. <returns>The number of members removed from the sorted set, not including non existing members.</returns>
  6559. <remarks>https://redis.io/commands/zrem</remarks>
  6560. </member>
  6561. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRemoveRangeByRankAsync(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  6562. <summary>
  6563. Removes all elements in the sorted set stored at key with rank between start and stop. Both start and stop are 0 -based indexes with 0 being the element with the lowest score. These indexes can be negative numbers, where they indicate offsets starting at the element with the highest score. For example: -1 is the element with the highest score, -2 the element with the second highest score and so forth.
  6564. </summary>
  6565. <param name="key">The key of the sorted set.</param>
  6566. <param name="start">The minimum rank to remove.</param>
  6567. <param name="stop">The maximum rank to remove.</param>
  6568. <param name="flags">The flags to use for this operation.</param>
  6569. <returns>The number of elements removed.</returns>
  6570. <remarks>https://redis.io/commands/zremrangebyrank</remarks>
  6571. </member>
  6572. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRemoveRangeByScoreAsync(StackExchange.Redis.RedisKey,System.Double,System.Double,StackExchange.Redis.Exclude,StackExchange.Redis.CommandFlags)">
  6573. <summary>
  6574. Removes all elements in the sorted set stored at key with a score between min and max (inclusive by default).
  6575. </summary>
  6576. <param name="key">The key of the sorted set.</param>
  6577. <param name="start">The minimum score to remove.</param>
  6578. <param name="stop">The maximum score to remove.</param>
  6579. <param name="exclude">Which of <paramref name="start"/> and <paramref name="stop"/> to exclude (defaults to both inclusive).</param>
  6580. <param name="flags">The flags to use for this operation.</param>
  6581. <returns>The number of elements removed.</returns>
  6582. <remarks>https://redis.io/commands/zremrangebyscore</remarks>
  6583. </member>
  6584. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetRemoveRangeByValueAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.Exclude,StackExchange.Redis.CommandFlags)">
  6585. <summary>
  6586. When all the elements in a sorted set are inserted with the same score, in order to force lexicographical ordering, this command removes all elements in the sorted set stored at key between the lexicographical range specified by min and max.
  6587. </summary>
  6588. <param name="key">The key of the sorted set.</param>
  6589. <param name="min">The minimum value to remove.</param>
  6590. <param name="max">The maximum value to remove.</param>
  6591. <param name="exclude">Which of <paramref name="min"/> and <paramref name="max"/> to exclude (defaults to both inclusive).</param>
  6592. <param name="flags">The flags to use for this operation.</param>
  6593. <returns>the number of elements removed.</returns>
  6594. <remarks>https://redis.io/commands/zremrangebylex</remarks>
  6595. </member>
  6596. <member name="M:StackExchange.Redis.IDatabaseAsync.SetScanAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int32,System.Int64,System.Int32,StackExchange.Redis.CommandFlags)">
  6597. <summary>
  6598. The SSCAN command is used to incrementally iterate over set; note: to resume an iteration via <i>cursor</i>, cast the original enumerable or enumerator to <i>IScanningCursor</i>.
  6599. </summary>
  6600. <param name="key">The key of the set.</param>
  6601. <param name="pattern">The pattern to match.</param>
  6602. <param name="pageSize">The page size to iterate by.</param>
  6603. <param name="cursor">The cursor position to start at.</param>
  6604. <param name="pageOffset">The page offset to start at.</param>
  6605. <param name="flags">The flags to use for this operation.</param>
  6606. <returns>Yields all matching elements of the set.</returns>
  6607. <remarks>https://redis.io/commands/sscan</remarks>
  6608. </member>
  6609. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetScanAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int32,System.Int64,System.Int32,StackExchange.Redis.CommandFlags)">
  6610. <summary>
  6611. The ZSCAN command is used to incrementally iterate over a sorted set
  6612. </summary>
  6613. <param name="key">The key of the sorted set.</param>
  6614. <param name="pattern">The pattern to match.</param>
  6615. <param name="pageSize">The page size to iterate by.</param>
  6616. <param name="flags">The flags to use for this operation.</param>
  6617. <param name="cursor">The cursor position to start at.</param>
  6618. <param name="pageOffset">The page offset to start at.</param>
  6619. <returns>Yields all matching elements of the sorted set.</returns>
  6620. <remarks>https://redis.io/commands/zscan</remarks>
  6621. </member>
  6622. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetScoreAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6623. <summary>
  6624. Returns the score of member in the sorted set at key; If member does not exist in the sorted set, or key does not exist, nil is returned.
  6625. </summary>
  6626. <param name="key">The key of the sorted set.</param>
  6627. <param name="member">The member to get a score for.</param>
  6628. <param name="flags">The flags to use for this operation.</param>
  6629. <returns>The score of the member.</returns>
  6630. <remarks>https://redis.io/commands/zscore</remarks>
  6631. </member>
  6632. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetPopAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  6633. <summary>
  6634. Removes and returns the first element from the sorted set stored at key, by default with the scores ordered from low to high.
  6635. </summary>
  6636. <param name="key">The key of the sorted set.</param>
  6637. <param name="order">The order to sort by (defaults to ascending).</param>
  6638. <param name="flags">The flags to use for this operation.</param>
  6639. <returns>The removed element, or nil when key does not exist.</returns>
  6640. <remarks>https://redis.io/commands/zpopmin</remarks>
  6641. <remarks>https://redis.io/commands/zpopmax</remarks>
  6642. </member>
  6643. <member name="M:StackExchange.Redis.IDatabaseAsync.SortedSetPopAsync(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  6644. <summary>
  6645. Removes and returns the specified number of first elements from the sorted set stored at key, by default with the scores ordered from low to high.
  6646. </summary>
  6647. <param name="key">The key of the sorted set.</param>
  6648. <param name="count">The number of elements to return.</param>
  6649. <param name="order">The order to sort by (defaults to ascending).</param>
  6650. <param name="flags">The flags to use for this operation.</param>
  6651. <returns>An array of elements, or an empty array when key does not exist.</returns>
  6652. <remarks>https://redis.io/commands/zpopmin</remarks>
  6653. <remarks>https://redis.io/commands/zpopmax</remarks>
  6654. </member>
  6655. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamAcknowledgeAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6656. <summary>
  6657. Allow the consumer to mark a pending message as correctly processed. Returns the number of messages acknowledged.
  6658. </summary>
  6659. <param name="key">The key of the stream.</param>
  6660. <param name="groupName">The name of the consumer group that received the message.</param>
  6661. <param name="messageId">The ID of the message to acknowledge.</param>
  6662. <param name="flags">The flags to use for this operation.</param>
  6663. <returns>The number of messages acknowledged.</returns>
  6664. <remarks>https://redis.io/topics/streams-intro</remarks>
  6665. </member>
  6666. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamAcknowledgeAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  6667. <summary>
  6668. Allow the consumer to mark a pending message as correctly processed. Returns the number of messages acknowledged.
  6669. </summary>
  6670. <param name="key">The key of the stream.</param>
  6671. <param name="groupName">The name of the consumer group that received the message.</param>
  6672. <param name="messageIds">The IDs of the messages to acknowledge.</param>
  6673. <param name="flags">The flags to use for this operation.</param>
  6674. <returns>The number of messages acknowledged.</returns>
  6675. <remarks>https://redis.io/topics/streams-intro</remarks>
  6676. </member>
  6677. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{System.Int32},System.Boolean,StackExchange.Redis.CommandFlags)">
  6678. <summary>
  6679. Adds an entry using the specified values to the given stream key. If key does not exist, a new key holding a stream is created. The command returns the ID of the newly created stream entry.
  6680. </summary>
  6681. <param name="key">The key of the stream.</param>
  6682. <param name="streamField">The field name for the stream entry.</param>
  6683. <param name="streamValue">The value to set in the stream entry.</param>
  6684. <param name="messageId">The ID to assign to the stream entry, defaults to an auto-generated ID ("*").</param>
  6685. <param name="maxLength">The maximum length of the stream.</param>
  6686. <param name="useApproximateMaxLength">If true, the "~" argument is used to allow the stream to exceed max length by a small number. This improves performance when removing messages.</param>
  6687. <param name="flags">The flags to use for this operation.</param>
  6688. <returns>The ID of the newly created message.</returns>
  6689. <remarks>https://redis.io/commands/xadd</remarks>
  6690. </member>
  6691. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamAddAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.NameValueEntry[],System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{System.Int32},System.Boolean,StackExchange.Redis.CommandFlags)">
  6692. <summary>
  6693. Adds an entry using the specified values to the given stream key. If key does not exist, a new key holding a stream is created. The command returns the ID of the newly created stream entry.
  6694. </summary>
  6695. <param name="key">The key of the stream.</param>
  6696. <param name="streamPairs">The fields and their associated values to set in the stream entry.</param>
  6697. <param name="messageId">The ID to assign to the stream entry, defaults to an auto-generated ID ("*").</param>
  6698. <param name="maxLength">The maximum length of the stream.</param>
  6699. <param name="useApproximateMaxLength">If true, the "~" argument is used to allow the stream to exceed max length by a small number. This improves performance when removing messages.</param>
  6700. <param name="flags">The flags to use for this operation.</param>
  6701. <returns>The ID of the newly created message.</returns>
  6702. <remarks>https://redis.io/commands/xadd</remarks>
  6703. </member>
  6704. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamClaimAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Int64,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  6705. <summary>
  6706. Change ownership of messages consumed, but not yet acknowledged, by a different consumer. This method returns the complete message for the claimed message(s).
  6707. </summary>
  6708. <param name="key">The key of the stream.</param>
  6709. <param name="consumerGroup">The consumer group.</param>
  6710. <param name="claimingConsumer">The consumer claiming the given messages.</param>
  6711. <param name="minIdleTimeInMs">The minimum message idle time to allow the reassignment of the message(s).</param>
  6712. <param name="messageIds">The IDs of the messages to claim for the given consumer.</param>
  6713. <param name="flags">The flags to use for this operation.</param>
  6714. <returns>The messages successfully claimed by the given consumer.</returns>
  6715. <remarks>https://redis.io/topics/streams-intro</remarks>
  6716. </member>
  6717. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamClaimIdsOnlyAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Int64,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  6718. <summary>
  6719. Change ownership of messages consumed, but not yet acknowledged, by a different consumer. This method returns the IDs for the claimed message(s).
  6720. </summary>
  6721. <param name="key">The key of the stream.</param>
  6722. <param name="consumerGroup">The consumer group.</param>
  6723. <param name="claimingConsumer">The consumer claiming the given message(s).</param>
  6724. <param name="minIdleTimeInMs">The minimum message idle time to allow the reassignment of the message(s).</param>
  6725. <param name="messageIds">The IDs of the messages to claim for the given consumer.</param>
  6726. <param name="flags">The flags to use for this operation.</param>
  6727. <returns>The message IDs for the messages successfully claimed by the given consumer.</returns>
  6728. <remarks>https://redis.io/topics/streams-intro</remarks>
  6729. </member>
  6730. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamConsumerGroupSetPositionAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6731. <summary>
  6732. Set the position from which to read a stream for a consumer group.
  6733. </summary>
  6734. <param name="key">The key of the stream.</param>
  6735. <param name="groupName">The name of the consumer group.</param>
  6736. <param name="position">The position from which to read for the consumer group.</param>
  6737. <param name="flags">The flags to use for this operation.</param>
  6738. <returns>True if successful, otherwise false.</returns>
  6739. </member>
  6740. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamConsumerInfoAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6741. <summary>
  6742. Retrieve information about the consumers for the given consumer group. This is the equivalent of calling "XINFO GROUPS key group".
  6743. </summary>
  6744. <param name="key">The key of the stream.</param>
  6745. <param name="groupName">The consumer group name.</param>
  6746. <param name="flags">The flags to use for this operation.</param>
  6747. <returns>An instance of <see cref="T:StackExchange.Redis.StreamConsumerInfo"/> for each of the consumer group's consumers.</returns>
  6748. <remarks>https://redis.io/topics/streams-intro</remarks>
  6749. </member>
  6750. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamCreateConsumerGroupAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},StackExchange.Redis.CommandFlags)">
  6751. <summary>
  6752. Create a consumer group for the given stream.
  6753. </summary>
  6754. <param name="key">The key of the stream.</param>
  6755. <param name="groupName">The name of the group to create.</param>
  6756. <param name="position">The position to begin reading the stream. Defaults to <see cref="P:StackExchange.Redis.StreamPosition.NewMessages"/>.</param>
  6757. <param name="flags">The flags to use for this operation.</param>
  6758. <returns>True if the group was created.</returns>
  6759. <remarks>https://redis.io/topics/streams-intro</remarks>
  6760. </member>
  6761. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamCreateConsumerGroupAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},System.Boolean,StackExchange.Redis.CommandFlags)">
  6762. <summary>
  6763. Create a consumer group for the given stream.
  6764. </summary>
  6765. <param name="key">The key of the stream.</param>
  6766. <param name="groupName">The name of the group to create.</param>
  6767. <param name="position">The position to begin reading the stream. Defaults to <see cref="P:StackExchange.Redis.StreamPosition.NewMessages"/>.</param>
  6768. <param name="createStream">Create the stream if it does not already exist.</param>
  6769. <param name="flags">The flags to use for this operation.</param>
  6770. <returns>True if the group was created.</returns>
  6771. <remarks>https://redis.io/topics/streams-intro</remarks>
  6772. </member>
  6773. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamDeleteAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue[],StackExchange.Redis.CommandFlags)">
  6774. <summary>
  6775. Delete messages in the stream. This method does not delete the stream.
  6776. </summary>
  6777. <param name="key">The key of the stream.</param>
  6778. <param name="messageIds">The IDs of the messages to delete.</param>
  6779. <param name="flags">The flags to use for this operation.</param>
  6780. <returns>Returns the number of messages successfully deleted from the stream.</returns>
  6781. <remarks>https://redis.io/topics/streams-intro</remarks>
  6782. </member>
  6783. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamDeleteConsumerAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6784. <summary>
  6785. Delete a consumer from a consumer group.
  6786. </summary>
  6787. <param name="key">The key of the stream.</param>
  6788. <param name="groupName">The name of the consumer group.</param>
  6789. <param name="consumerName">The name of the consumer.</param>
  6790. <param name="flags">The flags to use for this operation.</param>
  6791. <returns>The number of messages that were pending for the deleted consumer.</returns>
  6792. </member>
  6793. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamDeleteConsumerGroupAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6794. <summary>
  6795. Delete a consumer group.
  6796. </summary>
  6797. <param name="key">The key of the stream.</param>
  6798. <param name="groupName">The name of the consumer group.</param>
  6799. <param name="flags">The flags to use for this operation.</param>
  6800. <returns>True if deleted, otherwise false.</returns>
  6801. </member>
  6802. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamGroupInfoAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  6803. <summary>
  6804. Retrieve information about the groups created for the given stream. This is the equivalent of calling "XINFO GROUPS key".
  6805. </summary>
  6806. <param name="key">The key of the stream.</param>
  6807. <param name="flags">The flags to use for this operation.</param>
  6808. <returns>An instance of <see cref="T:StackExchange.Redis.StreamGroupInfo"/> for each of the stream's groups.</returns>
  6809. <remarks>https://redis.io/topics/streams-intro</remarks>
  6810. </member>
  6811. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamInfoAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  6812. <summary>
  6813. Retrieve information about the given stream. This is the equivalent of calling "XINFO STREAM key".
  6814. </summary>
  6815. <param name="key">The key of the stream.</param>
  6816. <param name="flags">The flags to use for this operation.</param>
  6817. <returns>A <see cref="T:StackExchange.Redis.StreamInfo"/> instance with information about the stream.</returns>
  6818. <remarks>https://redis.io/topics/streams-intro</remarks>
  6819. </member>
  6820. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamLengthAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  6821. <summary>
  6822. Return the number of entries in a stream.
  6823. </summary>
  6824. <param name="key">The key of the stream.</param>
  6825. <param name="flags">The flags to use for this operation.</param>
  6826. <returns>The number of entries inside the given stream.</returns>
  6827. <remarks>https://redis.io/commands/xlen</remarks>
  6828. </member>
  6829. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamPendingAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6830. <summary>
  6831. View information about pending messages for a stream. A pending message is a message read using StreamReadGroup (XREADGROUP) but not yet acknowledged.
  6832. </summary>
  6833. <param name="key">The key of the stream.</param>
  6834. <param name="groupName">The name of the consumer group</param>
  6835. <param name="flags">The flags to use for this operation.</param>
  6836. <returns>An instance of <see cref="T:StackExchange.Redis.StreamPendingInfo"/>. <see cref="T:StackExchange.Redis.StreamPendingInfo"/> contains the number of pending messages, the highest and lowest ID of the pending messages, and the consumers with their pending message count.</returns>
  6837. <remarks>The equivalent of calling XPENDING key group.</remarks>
  6838. <remarks>https://redis.io/commands/xpending</remarks>
  6839. </member>
  6840. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamPendingMessagesAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Int32,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{StackExchange.Redis.RedisValue},StackExchange.Redis.CommandFlags)">
  6841. <summary>
  6842. View information about each pending message.
  6843. </summary>
  6844. <param name="key">The key of the stream.</param>
  6845. <param name="groupName">The name of the consumer group.</param>
  6846. <param name="count">The maximum number of pending messages to return.</param>
  6847. <param name="consumerName">The consumer name for the pending messages. Pass RedisValue.Null to include pending messages for all consumers.</param>
  6848. <param name="minId">The minimum ID from which to read the stream of pending messages. The method will default to reading from the beginning of the stream.</param>
  6849. <param name="maxId">The maximum ID to read to within the stream of pending messages. The method will default to reading to the end of the stream.</param>
  6850. <param name="flags">The flags to use for this operation.</param>
  6851. <returns>An instance of <see cref="T:StackExchange.Redis.StreamPendingMessageInfo"/> for each pending message.</returns>
  6852. <remarks>Equivalent of calling XPENDING key group start-id end-id count consumer-name.</remarks>
  6853. <remarks>https://redis.io/commands/xpending</remarks>
  6854. </member>
  6855. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamRangeAsync(StackExchange.Redis.RedisKey,System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{System.Int32},StackExchange.Redis.Order,StackExchange.Redis.CommandFlags)">
  6856. <summary>
  6857. Read a stream using the given range of IDs.
  6858. </summary>
  6859. <param name="key">The key of the stream.</param>
  6860. <param name="minId">The minimum ID from which to read the stream. The method will default to reading from the beginning of the stream.</param>
  6861. <param name="maxId">The maximum ID to read to within the stream. The method will default to reading to the end of the stream.</param>
  6862. <param name="count">The maximum number of messages to return.</param>
  6863. <param name="messageOrder">The order of the messages. <see cref="F:StackExchange.Redis.Order.Ascending"/> will execute XRANGE and <see cref="F:StackExchange.Redis.Order.Descending"/> wil execute XREVRANGE.</param>
  6864. <param name="flags">The flags to use for this operation.</param>
  6865. <returns>Returns an instance of <see cref="T:StackExchange.Redis.StreamEntry"/> for each message returned.</returns>
  6866. <remarks>https://redis.io/commands/xrange</remarks>
  6867. </member>
  6868. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamReadAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Nullable{System.Int32},StackExchange.Redis.CommandFlags)">
  6869. <summary>
  6870. Read from a single stream.
  6871. </summary>
  6872. <param name="key">The key of the stream.</param>
  6873. <param name="position">The position from which to read the stream.</param>
  6874. <param name="count">The maximum number of messages to return.</param>
  6875. <param name="flags">The flags to use for this operation.</param>
  6876. <returns>Returns an instance of <see cref="T:StackExchange.Redis.StreamEntry"/> for each message returned.</returns>
  6877. <remarks>Equivalent of calling XREAD COUNT num STREAMS key id.</remarks>
  6878. <remarks>https://redis.io/commands/xread</remarks>
  6879. </member>
  6880. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamReadAsync(StackExchange.Redis.StreamPosition[],System.Nullable{System.Int32},StackExchange.Redis.CommandFlags)">
  6881. <summary>
  6882. Read from multiple streams.
  6883. </summary>
  6884. <param name="streamPositions">Array of streams and the positions from which to begin reading for each stream.</param>
  6885. <param name="countPerStream">The maximum number of messages to return from each stream.</param>
  6886. <param name="flags">The flags to use for this operation.</param>
  6887. <returns>A value of <see cref="T:StackExchange.Redis.RedisStream"/> for each stream.</returns>
  6888. <remarks>Equivalent of calling XREAD COUNT num STREAMS key1 key2 id1 id2.</remarks>
  6889. <remarks>https://redis.io/commands/xread</remarks>
  6890. </member>
  6891. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamReadGroupAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{System.Int32},StackExchange.Redis.CommandFlags)">
  6892. <summary>
  6893. Read messages from a stream into an associated consumer group.
  6894. </summary>
  6895. <param name="key">The key of the stream.</param>
  6896. <param name="groupName">The name of the consumer group.</param>
  6897. <param name="consumerName">The consumer name.</param>
  6898. <param name="position">The position from which to read the stream. Defaults to <see cref="P:StackExchange.Redis.StreamPosition.NewMessages"/> when null.</param>
  6899. <param name="count">The maximum number of messages to return.</param>
  6900. <param name="flags">The flags to use for this operation.</param>
  6901. <returns>Returns a value of <see cref="T:StackExchange.Redis.StreamEntry"/> for each message returned.</returns>
  6902. <remarks>https://redis.io/commands/xreadgroup</remarks>
  6903. </member>
  6904. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamReadGroupAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.RedisValue},System.Nullable{System.Int32},System.Boolean,StackExchange.Redis.CommandFlags)">
  6905. <summary>
  6906. Read messages from a stream into an associated consumer group.
  6907. </summary>
  6908. <param name="key">The key of the stream.</param>
  6909. <param name="groupName">The name of the consumer group.</param>
  6910. <param name="consumerName">The consumer name.</param>
  6911. <param name="position">The position from which to read the stream. Defaults to <see cref="P:StackExchange.Redis.StreamPosition.NewMessages"/> when null.</param>
  6912. <param name="count">The maximum number of messages to return.</param>
  6913. <param name="noAck">When true, the message will not be added to the pending message list.</param>
  6914. <param name="flags">The flags to use for this operation.</param>
  6915. <returns>Returns a value of <see cref="T:StackExchange.Redis.StreamEntry"/> for each message returned.</returns>
  6916. <remarks>https://redis.io/commands/xreadgroup</remarks>
  6917. </member>
  6918. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamReadGroupAsync(StackExchange.Redis.StreamPosition[],StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Nullable{System.Int32},StackExchange.Redis.CommandFlags)">
  6919. <summary>
  6920. Read from multiple streams into the given consumer group. The consumer group with the given <paramref name="groupName"/>
  6921. will need to have been created for each stream prior to calling this method.
  6922. </summary>
  6923. <param name="streamPositions">Array of streams and the positions from which to begin reading for each stream.</param>
  6924. <param name="groupName">The name of the consumer group.</param>
  6925. <param name="consumerName"></param>
  6926. <param name="countPerStream">The maximum number of messages to return from each stream.</param>
  6927. <param name="flags">The flags to use for this operation.</param>
  6928. <returns>A value of <see cref="T:StackExchange.Redis.RedisStream"/> for each stream.</returns>
  6929. <remarks>Equivalent of calling XREADGROUP GROUP groupName consumerName COUNT countPerStream STREAMS stream1 stream2 id1 id2</remarks>
  6930. <remarks>https://redis.io/commands/xreadgroup</remarks>
  6931. </member>
  6932. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamReadGroupAsync(StackExchange.Redis.StreamPosition[],StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,System.Nullable{System.Int32},System.Boolean,StackExchange.Redis.CommandFlags)">
  6933. <summary>
  6934. Read from multiple streams into the given consumer group. The consumer group with the given <paramref name="groupName"/>
  6935. will need to have been created for each stream prior to calling this method.
  6936. </summary>
  6937. <param name="streamPositions">Array of streams and the positions from which to begin reading for each stream.</param>
  6938. <param name="groupName">The name of the consumer group.</param>
  6939. <param name="consumerName"></param>
  6940. <param name="countPerStream">The maximum number of messages to return from each stream.</param>
  6941. <param name="noAck">When true, the message will not be added to the pending message list.</param>
  6942. <param name="flags">The flags to use for this operation.</param>
  6943. <returns>A value of <see cref="T:StackExchange.Redis.RedisStream"/> for each stream.</returns>
  6944. <remarks>Equivalent of calling XREADGROUP GROUP groupName consumerName COUNT countPerStream STREAMS stream1 stream2 id1 id2</remarks>
  6945. <remarks>https://redis.io/commands/xreadgroup</remarks>
  6946. </member>
  6947. <member name="M:StackExchange.Redis.IDatabaseAsync.StreamTrimAsync(StackExchange.Redis.RedisKey,System.Int32,System.Boolean,StackExchange.Redis.CommandFlags)">
  6948. <summary>
  6949. Trim the stream to a specified maximum length.
  6950. </summary>
  6951. <param name="key">The key of the stream.</param>
  6952. <param name="maxLength">The maximum length of the stream.</param>
  6953. <param name="useApproximateMaxLength">If true, the "~" argument is used to allow the stream to exceed max length by a small number. This improves performance when removing messages.</param>
  6954. <param name="flags">The flags to use for this operation.</param>
  6955. <returns>The number of messages removed from the stream.</returns>
  6956. <remarks>https://redis.io/topics/streams-intro</remarks>
  6957. </member>
  6958. <member name="M:StackExchange.Redis.IDatabaseAsync.StringAppendAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  6959. <summary>
  6960. If key already exists and is a string, this command appends the value at the end of the string. If key does not exist it is created and set as an empty string,
  6961. so APPEND will be similar to SET in this special case.
  6962. </summary>
  6963. <param name="key">The key of the string.</param>
  6964. <param name="value">The value to append to the string.</param>
  6965. <param name="flags">The flags to use for this operation.</param>
  6966. <returns>The length of the string after the append operation.</returns>
  6967. <remarks>https://redis.io/commands/append</remarks>
  6968. </member>
  6969. <member name="M:StackExchange.Redis.IDatabaseAsync.StringBitCountAsync(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  6970. <summary>
  6971. Count the number of set bits (population counting) in a string.
  6972. By default all the bytes contained in the string are examined. It is possible to specify the counting operation only in an interval passing the additional arguments start and end.
  6973. Like for the GETRANGE command start and end can contain negative values in order to index bytes starting from the end of the string, where -1 is the last byte, -2 is the penultimate, and so forth.
  6974. </summary>
  6975. <param name="key">The key of the string.</param>
  6976. <param name="start">The start byte to count at.</param>
  6977. <param name="end">The end byte to count at.</param>
  6978. <param name="flags">The flags to use for this operation.</param>
  6979. <returns>The number of bits set to 1.</returns>
  6980. <remarks>https://redis.io/commands/bitcount</remarks>
  6981. </member>
  6982. <member name="M:StackExchange.Redis.IDatabaseAsync.StringBitOperationAsync(StackExchange.Redis.Bitwise,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  6983. <summary>
  6984. Perform a bitwise operation between multiple keys (containing string values) and store the result in the destination key.
  6985. The BITOP command supports four bitwise operations; note that NOT is a unary operator: the second key should be omitted in this case
  6986. and only the first key will be considered.
  6987. The result of the operation is always stored at destkey.
  6988. </summary>
  6989. <param name="operation">The operation to perform.</param>
  6990. <param name="destination">The destination key to store the result in.</param>
  6991. <param name="first">The first key to get the bit value from.</param>
  6992. <param name="second">The second key to get the bit value from.</param>
  6993. <param name="flags">The flags to use for this operation.</param>
  6994. <returns>The size of the string stored in the destination key, that is equal to the size of the longest input string.</returns>
  6995. <remarks>https://redis.io/commands/bitop</remarks>
  6996. </member>
  6997. <member name="M:StackExchange.Redis.IDatabaseAsync.StringBitOperationAsync(StackExchange.Redis.Bitwise,StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  6998. <summary>
  6999. Perform a bitwise operation between multiple keys (containing string values) and store the result in the destination key.
  7000. The BITOP command supports four bitwise operations; note that NOT is a unary operator.
  7001. The result of the operation is always stored at destkey.
  7002. </summary>
  7003. <param name="operation">The operation to perform.</param>
  7004. <param name="destination">The destination key to store the result in.</param>
  7005. <param name="keys">The keys to get the bit values from.</param>
  7006. <param name="flags">The flags to use for this operation.</param>
  7007. <returns>The size of the string stored in the destination key, that is equal to the size of the longest input string.</returns>
  7008. <remarks>https://redis.io/commands/bitop</remarks>
  7009. </member>
  7010. <member name="M:StackExchange.Redis.IDatabaseAsync.StringBitPositionAsync(StackExchange.Redis.RedisKey,System.Boolean,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  7011. <summary>
  7012. Return the position of the first bit set to 1 or 0 in a string.
  7013. The position is returned thinking at the string as an array of bits from left to right where the first byte most significant bit is at position 0, the second byte most significant bit is at position 8 and so forth.
  7014. An start and end may be specified; these are in bytes, not bits; start and end can contain negative values in order to index bytes starting from the end of the string, where -1 is the last byte, -2 is the penultimate, and so forth.
  7015. </summary>
  7016. <param name="key">The key of the string.</param>
  7017. <param name="bit">True to check for the first 1 bit, false to check for the first 0 bit.</param>
  7018. <param name="start">The position to start looking (defaults to 0).</param>
  7019. <param name="end">The position to stop looking (defaults to -1, unlimited).</param>
  7020. <param name="flags">The flags to use for this operation.</param>
  7021. <returns>The command returns the position of the first bit set to 1 or 0 according to the request.
  7022. If we look for set bits(the bit argument is 1) and the string is empty or composed of just zero bytes, -1 is returned.</returns>
  7023. <remarks>https://redis.io/commands/bitpos</remarks>
  7024. </member>
  7025. <member name="M:StackExchange.Redis.IDatabaseAsync.StringDecrementAsync(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  7026. <summary>
  7027. Decrements the number stored at key by decrement. If the key does not exist, it is set to 0 before performing the operation.
  7028. An error is returned if the key contains a value of the wrong type or contains a string that is not representable as integer. This operation is limited to 64 bit signed integers.
  7029. </summary>
  7030. <param name="key">The key of the string.</param>
  7031. <param name="value">The amount to decrement by (defaults to 1).</param>
  7032. <param name="flags">The flags to use for this operation.</param>
  7033. <returns>The value of key after the decrement.</returns>
  7034. <remarks>https://redis.io/commands/decrby</remarks>
  7035. <remarks>https://redis.io/commands/decr</remarks>
  7036. </member>
  7037. <member name="M:StackExchange.Redis.IDatabaseAsync.StringDecrementAsync(StackExchange.Redis.RedisKey,System.Double,StackExchange.Redis.CommandFlags)">
  7038. <summary>
  7039. Decrements the string representing a floating point number stored at key by the specified decrement. If the key does not exist, it is set to 0 before performing the operation. The precision of the output is fixed at 17 digits after the decimal point regardless of the actual internal precision of the computation.
  7040. </summary>
  7041. <param name="key">The key of the string.</param>
  7042. <param name="value">The amount to decrement by (defaults to 1).</param>
  7043. <param name="flags">The flags to use for this operation.</param>
  7044. <returns>The value of key after the decrement.</returns>
  7045. <remarks>https://redis.io/commands/incrbyfloat</remarks>
  7046. </member>
  7047. <member name="M:StackExchange.Redis.IDatabaseAsync.StringGetAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  7048. <summary>
  7049. Get the value of key. If the key does not exist the special value nil is returned. An error is returned if the value stored at key is not a string, because GET only handles string values.
  7050. </summary>
  7051. <param name="key">The key of the string.</param>
  7052. <param name="flags">The flags to use for this operation.</param>
  7053. <returns>The value of key, or nil when key does not exist.</returns>
  7054. <remarks>https://redis.io/commands/get</remarks>
  7055. </member>
  7056. <member name="M:StackExchange.Redis.IDatabaseAsync.StringGetAsync(StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  7057. <summary>
  7058. Returns the values of all specified keys. For every key that does not hold a string value or does not exist, the special value nil is returned.
  7059. </summary>
  7060. <param name="keys">The keys of the strings.</param>
  7061. <param name="flags">The flags to use for this operation.</param>
  7062. <returns>The values of the strings with nil for keys do not exist.</returns>
  7063. <remarks>https://redis.io/commands/mget</remarks>
  7064. </member>
  7065. <member name="M:StackExchange.Redis.IDatabaseAsync.StringGetLeaseAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  7066. <summary>
  7067. Get the value of key. If the key does not exist the special value nil is returned. An error is returned if the value stored at key is not a string, because GET only handles string values.
  7068. </summary>
  7069. <param name="key">The key of the string.</param>
  7070. <param name="flags">The flags to use for this operation.</param>
  7071. <returns>The value of key, or nil when key does not exist.</returns>
  7072. <remarks>https://redis.io/commands/get</remarks>
  7073. </member>
  7074. <member name="M:StackExchange.Redis.IDatabaseAsync.StringGetBitAsync(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  7075. <summary>
  7076. Returns the bit value at offset in the string value stored at key.
  7077. When offset is beyond the string length, the string is assumed to be a contiguous space with 0 bits.
  7078. </summary>
  7079. <param name="key">The key of the string.</param>
  7080. <param name="offset">The offset in the string to get a bit at.</param>
  7081. <param name="flags">The flags to use for this operation.</param>
  7082. <returns>The bit value stored at offset.</returns>
  7083. <remarks>https://redis.io/commands/getbit</remarks>
  7084. </member>
  7085. <member name="M:StackExchange.Redis.IDatabaseAsync.StringGetRangeAsync(StackExchange.Redis.RedisKey,System.Int64,System.Int64,StackExchange.Redis.CommandFlags)">
  7086. <summary>
  7087. Returns the substring of the string value stored at key, determined by the offsets start and end (both are inclusive). Negative offsets can be used in order to provide an offset starting from the end of the string. So -1 means the last character, -2 the penultimate and so forth.
  7088. </summary>
  7089. <param name="key">The key of the string.</param>
  7090. <param name="start">The start index of the substring to get.</param>
  7091. <param name="end">The end index of the substring to get.</param>
  7092. <param name="flags">The flags to use for this operation.</param>
  7093. <returns>The substring of the string value stored at key.</returns>
  7094. <remarks>https://redis.io/commands/getrange</remarks>
  7095. </member>
  7096. <member name="M:StackExchange.Redis.IDatabaseAsync.StringGetSetAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7097. <summary>
  7098. Atomically sets key to value and returns the old value stored at key.
  7099. </summary>
  7100. <param name="key">The key of the string.</param>
  7101. <param name="value">The value to replace the existing value with.</param>
  7102. <param name="flags">The flags to use for this operation.</param>
  7103. <returns>The old value stored at key, or nil when key did not exist.</returns>
  7104. <remarks>https://redis.io/commands/getset</remarks>
  7105. </member>
  7106. <member name="M:StackExchange.Redis.IDatabaseAsync.StringGetWithExpiryAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  7107. <summary>
  7108. Get the value of key. If the key does not exist the special value nil is returned. An error is returned if the value stored at key is not a string, because GET only handles string values.
  7109. </summary>
  7110. <param name="key">The key of the string.</param>
  7111. <param name="flags">The flags to use for this operation.</param>
  7112. <returns>The value of key and its expiry, or nil when key does not exist.</returns>
  7113. <remarks>https://redis.io/commands/get</remarks>
  7114. </member>
  7115. <member name="M:StackExchange.Redis.IDatabaseAsync.StringIncrementAsync(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.CommandFlags)">
  7116. <summary>
  7117. Increments the number stored at key by increment. If the key does not exist, it is set to 0 before performing the operation. An error is returned if the key contains a value of the wrong type or contains a string that is not representable as integer. This operation is limited to 64 bit signed integers.
  7118. </summary>
  7119. <param name="key">The key of the string.</param>
  7120. <param name="value">The amount to increment by (defaults to 1).</param>
  7121. <param name="flags">The flags to use for this operation.</param>
  7122. <returns>The value of key after the increment.</returns>
  7123. <remarks>https://redis.io/commands/incrby</remarks>
  7124. <remarks>https://redis.io/commands/incr</remarks>
  7125. </member>
  7126. <member name="M:StackExchange.Redis.IDatabaseAsync.StringIncrementAsync(StackExchange.Redis.RedisKey,System.Double,StackExchange.Redis.CommandFlags)">
  7127. <summary>
  7128. Increments the string representing a floating point number stored at key by the specified increment. If the key does not exist, it is set to 0 before performing the operation. The precision of the output is fixed at 17 digits after the decimal point regardless of the actual internal precision of the computation.
  7129. </summary>
  7130. <param name="key">The key of the string.</param>
  7131. <param name="value">The amount to increment by (defaults to 1).</param>
  7132. <param name="flags">The flags to use for this operation.</param>
  7133. <returns>The value of key after the increment.</returns>
  7134. <remarks>https://redis.io/commands/incrbyfloat</remarks>
  7135. </member>
  7136. <member name="M:StackExchange.Redis.IDatabaseAsync.StringLengthAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  7137. <summary>
  7138. Returns the length of the string value stored at key.
  7139. </summary>
  7140. <param name="key">The key of the string.</param>
  7141. <param name="flags">The flags to use for this operation.</param>
  7142. <returns>the length of the string at key, or 0 when key does not exist.</returns>
  7143. <remarks>https://redis.io/commands/strlen</remarks>
  7144. </member>
  7145. <member name="M:StackExchange.Redis.IDatabaseAsync.StringSetAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,System.Nullable{System.TimeSpan},StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  7146. <summary>
  7147. Set key to hold the string value. If key already holds a value, it is overwritten, regardless of its type.
  7148. </summary>
  7149. <param name="key">The key of the string.</param>
  7150. <param name="value">The value to set.</param>
  7151. <param name="expiry">The expiry to set.</param>
  7152. <param name="when">Which condition to set the value under (detaults to always).</param>
  7153. <param name="flags">The flags to use for this operation.</param>
  7154. <returns>True if the string was set, false otherwise.</returns>
  7155. <remarks>https://redis.io/commands/set</remarks>
  7156. </member>
  7157. <member name="M:StackExchange.Redis.IDatabaseAsync.StringSetAsync(System.Collections.Generic.KeyValuePair{StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue}[],StackExchange.Redis.When,StackExchange.Redis.CommandFlags)">
  7158. <summary>
  7159. Sets the given keys to their respective values. If "not exists" is specified, this will not perform any operation at all even if just a single key already exists.
  7160. </summary>
  7161. <param name="values">The keys and values to set.</param>
  7162. <param name="when">Which condition to set the value under (detaults to always).</param>
  7163. <param name="flags">The flags to use for this operation.</param>
  7164. <returns>True if the keys were set, else False</returns>
  7165. <remarks>https://redis.io/commands/mset</remarks>
  7166. <remarks>https://redis.io/commands/msetnx</remarks>
  7167. </member>
  7168. <member name="M:StackExchange.Redis.IDatabaseAsync.StringSetBitAsync(StackExchange.Redis.RedisKey,System.Int64,System.Boolean,StackExchange.Redis.CommandFlags)">
  7169. <summary>
  7170. Sets or clears the bit at offset in the string value stored at key.
  7171. The bit is either set or cleared depending on value, which can be either 0 or 1. When key does not exist, a new string value is created.The string is grown to make sure it can hold a bit at offset.
  7172. </summary>
  7173. <param name="key">The key of the string.</param>
  7174. <param name="offset">The offset in the string to set <paramref name="bit"/>.</param>
  7175. <param name="bit">The bit value to set, true for 1, false for 0.</param>
  7176. <param name="flags">The flags to use for this operation.</param>
  7177. <returns>The original bit value stored at offset.</returns>
  7178. <remarks>https://redis.io/commands/setbit</remarks>
  7179. </member>
  7180. <member name="M:StackExchange.Redis.IDatabaseAsync.StringSetRangeAsync(StackExchange.Redis.RedisKey,System.Int64,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7181. <summary>
  7182. Overwrites part of the string stored at key, starting at the specified offset, for the entire length of value. If the offset is larger than the current length of the string at key, the string is padded with zero-bytes to make offset fit. Non-existing keys are considered as empty strings, so this command will make sure it holds a string large enough to be able to set value at offset.
  7183. </summary>
  7184. <param name="key">The key of the string.</param>
  7185. <param name="offset">The offset in the string to overwrite.</param>
  7186. <param name="value">The value to overwrite with.</param>
  7187. <param name="flags">The flags to use for this operation.</param>
  7188. <returns>The length of the string after it was modified by the command.</returns>
  7189. <remarks>https://redis.io/commands/setrange</remarks>
  7190. </member>
  7191. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyTouchAsync(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)">
  7192. <summary>
  7193. Touch the specified key.
  7194. </summary>
  7195. <param name="key">The key to touch.</param>
  7196. <param name="flags">The flags to use for this operation.</param>
  7197. <returns>True if the key was touched.</returns>
  7198. <remarks>https://redis.io/commands/touch</remarks>
  7199. </member>
  7200. <member name="M:StackExchange.Redis.IDatabaseAsync.KeyTouchAsync(StackExchange.Redis.RedisKey[],StackExchange.Redis.CommandFlags)">
  7201. <summary>
  7202. Youch the specified keys. A key is ignored if it does not exist.
  7203. </summary>
  7204. <param name="keys">The keys to touch.</param>
  7205. <param name="flags">The flags to use for this operation.</param>
  7206. <returns>The number of keys that were touched.</returns>
  7207. <remarks>https://redis.io/commands/touch</remarks>
  7208. </member>
  7209. <member name="T:StackExchange.Redis.IReconnectRetryPolicy">
  7210. <summary>
  7211. Describes retry policy functionality that can be provided to the multiplexer to be used for connection reconnects
  7212. </summary>
  7213. </member>
  7214. <member name="M:StackExchange.Redis.IReconnectRetryPolicy.ShouldRetry(System.Int64,System.Int32)">
  7215. <summary>
  7216. This method is called by the multiplexer to determine if a reconnect operation can be retried now.
  7217. </summary>
  7218. <param name="currentRetryCount">The number of times reconnect retries have already been made by the multiplexer while it was in connecting state</param>
  7219. <param name="timeElapsedMillisecondsSinceLastRetry">Total time elapsed in milliseconds since the last reconnect retry was made</param>
  7220. </member>
  7221. <member name="T:StackExchange.Redis.IRedis">
  7222. <summary>
  7223. Common operations available to all redis connections
  7224. </summary>
  7225. </member>
  7226. <member name="M:StackExchange.Redis.IRedis.Ping(StackExchange.Redis.CommandFlags)">
  7227. <summary>
  7228. This command is often used to test if a connection is still alive, or to measure latency.
  7229. </summary>
  7230. <param name="flags">The command flags to use when pinging.</param>
  7231. <returns>The observed latency.</returns>
  7232. <remarks>https://redis.io/commands/ping</remarks>
  7233. </member>
  7234. <member name="T:StackExchange.Redis.IRedisAsync">
  7235. <summary>
  7236. Common operations available to all redis connections
  7237. </summary>
  7238. </member>
  7239. <member name="P:StackExchange.Redis.IRedisAsync.Multiplexer">
  7240. <summary>
  7241. Gets the multiplexer that created this instance
  7242. </summary>
  7243. </member>
  7244. <member name="M:StackExchange.Redis.IRedisAsync.PingAsync(StackExchange.Redis.CommandFlags)">
  7245. <summary>
  7246. This command is often used to test if a connection is still alive, or to measure latency.
  7247. </summary>
  7248. <param name="flags">The command flags to use.</param>
  7249. <returns>The observed latency.</returns>
  7250. <remarks>https://redis.io/commands/ping</remarks>
  7251. </member>
  7252. <member name="M:StackExchange.Redis.IRedisAsync.TryWait(System.Threading.Tasks.Task)">
  7253. <summary>
  7254. Wait for a given asynchronous operation to complete (or timeout), reporting which
  7255. </summary>
  7256. <param name="task">The task to wait on.</param>
  7257. </member>
  7258. <member name="M:StackExchange.Redis.IRedisAsync.Wait(System.Threading.Tasks.Task)">
  7259. <summary>
  7260. Wait for a given asynchronous operation to complete (or timeout)
  7261. </summary>
  7262. <param name="task">The task to wait on.</param>
  7263. </member>
  7264. <member name="M:StackExchange.Redis.IRedisAsync.Wait``1(System.Threading.Tasks.Task{``0})">
  7265. <summary>
  7266. Wait for a given asynchronous operation to complete (or timeout)
  7267. </summary>
  7268. <typeparam name="T">The type of task to wait on.</typeparam>
  7269. <param name="task">The task to wait on.</param>
  7270. </member>
  7271. <member name="M:StackExchange.Redis.IRedisAsync.WaitAll(System.Threading.Tasks.Task[])">
  7272. <summary>
  7273. Wait for the given asynchronous operations to complete (or timeout)
  7274. </summary>
  7275. <param name="tasks">The tasks to wait on.</param>
  7276. </member>
  7277. <member name="T:StackExchange.Redis.IScanningCursor">
  7278. <summary>
  7279. Represents a resumable, cursor-based scanning operation
  7280. </summary>
  7281. </member>
  7282. <member name="P:StackExchange.Redis.IScanningCursor.Cursor">
  7283. <summary>
  7284. Returns the cursor that represents the *active* page of results (not the pending/next page of results as returned by SCAN/HSCAN/ZSCAN/SSCAN)
  7285. </summary>
  7286. </member>
  7287. <member name="P:StackExchange.Redis.IScanningCursor.PageSize">
  7288. <summary>
  7289. The page size of the current operation
  7290. </summary>
  7291. </member>
  7292. <member name="P:StackExchange.Redis.IScanningCursor.PageOffset">
  7293. <summary>
  7294. The offset into the current page
  7295. </summary>
  7296. </member>
  7297. <member name="T:StackExchange.Redis.IServer">
  7298. <summary>
  7299. Provides configuration controls of a redis server
  7300. </summary>
  7301. </member>
  7302. <member name="P:StackExchange.Redis.IServer.ClusterConfiguration">
  7303. <summary>
  7304. Gets the cluster configuration associated with this server, if known
  7305. </summary>
  7306. </member>
  7307. <member name="P:StackExchange.Redis.IServer.EndPoint">
  7308. <summary>
  7309. Gets the address of the connected server
  7310. </summary>
  7311. </member>
  7312. <member name="P:StackExchange.Redis.IServer.Features">
  7313. <summary>
  7314. Gets the features available to the connected server
  7315. </summary>
  7316. </member>
  7317. <member name="P:StackExchange.Redis.IServer.IsConnected">
  7318. <summary>
  7319. Gets whether the connection to the server is active and usable
  7320. </summary>
  7321. </member>
  7322. <member name="P:StackExchange.Redis.IServer.IsSlave">
  7323. <summary>
  7324. Gets whether the connected server is a replica
  7325. </summary>
  7326. </member>
  7327. <member name="P:StackExchange.Redis.IServer.IsReplica">
  7328. <summary>
  7329. Gets whether the connected server is a replica
  7330. </summary>
  7331. </member>
  7332. <member name="P:StackExchange.Redis.IServer.AllowSlaveWrites">
  7333. <summary>
  7334. Explicitly opt in for replica writes on writable replica
  7335. </summary>
  7336. </member>
  7337. <member name="P:StackExchange.Redis.IServer.AllowReplicaWrites">
  7338. <summary>
  7339. Explicitly opt in for replica writes on writable replica
  7340. </summary>
  7341. </member>
  7342. <member name="P:StackExchange.Redis.IServer.ServerType">
  7343. <summary>
  7344. Gets the operating mode of the connected server
  7345. </summary>
  7346. </member>
  7347. <member name="P:StackExchange.Redis.IServer.Version">
  7348. <summary>
  7349. Gets the version of the connected server
  7350. </summary>
  7351. </member>
  7352. <member name="P:StackExchange.Redis.IServer.DatabaseCount">
  7353. <summary>
  7354. The number of databases supported on this server
  7355. </summary>
  7356. </member>
  7357. <member name="M:StackExchange.Redis.IServer.ClientKill(System.Net.EndPoint,StackExchange.Redis.CommandFlags)">
  7358. <summary>
  7359. The CLIENT KILL command closes a given client connection identified by ip:port.
  7360. The ip:port should match a line returned by the CLIENT LIST command.
  7361. Due to the single-treaded nature of Redis, it is not possible to kill a client connection while it is executing a command.From the client point of view, the connection can never be closed in the middle of the execution of a command.However, the client will notice the connection has been closed only when the next command is sent (and results in network error).
  7362. </summary>
  7363. <param name="endpoint">The endpoint of the client to kill.</param>
  7364. <param name="flags">The command flags to use.</param>
  7365. <remarks>https://redis.io/commands/client-kill</remarks>
  7366. </member>
  7367. <member name="M:StackExchange.Redis.IServer.ClientKillAsync(System.Net.EndPoint,StackExchange.Redis.CommandFlags)">
  7368. <summary>
  7369. The CLIENT KILL command closes a given client connection identified by ip:port.
  7370. The ip:port should match a line returned by the CLIENT LIST command.
  7371. Due to the single-treaded nature of Redis, it is not possible to kill a client connection while it is executing a command.From the client point of view, the connection can never be closed in the middle of the execution of a command.However, the client will notice the connection has been closed only when the next command is sent (and results in network error).
  7372. </summary>
  7373. <param name="endpoint">The endpoint of the client to kill.</param>
  7374. <param name="flags">The command flags to use.</param>
  7375. <remarks>https://redis.io/commands/client-kill</remarks>
  7376. </member>
  7377. <member name="M:StackExchange.Redis.IServer.ClientKill(System.Nullable{System.Int64},System.Nullable{StackExchange.Redis.ClientType},System.Net.EndPoint,System.Boolean,StackExchange.Redis.CommandFlags)">
  7378. <summary>
  7379. The CLIENT KILL command closes multiple connections that match the specified filters
  7380. </summary>
  7381. <param name="id">The ID of the client to kill.</param>
  7382. <param name="clientType">The type of client.</param>
  7383. <param name="endpoint">The endpoint to kill.</param>
  7384. <param name="skipMe">Whether to kskip the current connection.</param>
  7385. <param name="flags">The command flags to use.</param>
  7386. <returns>the number of clients killed.</returns>
  7387. <remarks>https://redis.io/commands/client-kill</remarks>
  7388. </member>
  7389. <member name="M:StackExchange.Redis.IServer.ClientKillAsync(System.Nullable{System.Int64},System.Nullable{StackExchange.Redis.ClientType},System.Net.EndPoint,System.Boolean,StackExchange.Redis.CommandFlags)">
  7390. <summary>
  7391. The CLIENT KILL command closes multiple connections that match the specified filters
  7392. </summary>
  7393. <param name="id">The ID of the client to kill.</param>
  7394. <param name="clientType">The type of client.</param>
  7395. <param name="endpoint">The endpoint to kill.</param>
  7396. <param name="skipMe">Whether to kskip the current connection.</param>
  7397. <param name="flags">The command flags to use.</param>
  7398. <returns>the number of clients killed.</returns>
  7399. <remarks>https://redis.io/commands/client-kill</remarks>
  7400. </member>
  7401. <member name="M:StackExchange.Redis.IServer.ClientList(StackExchange.Redis.CommandFlags)">
  7402. <summary>
  7403. The CLIENT LIST command returns information and statistics about the client connections server in a mostly human readable format.
  7404. </summary>
  7405. <param name="flags">The command flags to use.</param>
  7406. <remarks>https://redis.io/commands/client-list</remarks>
  7407. </member>
  7408. <member name="M:StackExchange.Redis.IServer.ClientListAsync(StackExchange.Redis.CommandFlags)">
  7409. <summary>
  7410. The CLIENT LIST command returns information and statistics about the client connections server in a mostly human readable format.
  7411. </summary>
  7412. <param name="flags">The command flags to use.</param>
  7413. <remarks>https://redis.io/commands/client-list</remarks>
  7414. </member>
  7415. <member name="M:StackExchange.Redis.IServer.ClusterNodes(StackExchange.Redis.CommandFlags)">
  7416. <summary>
  7417. Obtains the current CLUSTER NODES output from a cluster server
  7418. </summary>
  7419. <param name="flags">The command flags to use.</param>
  7420. </member>
  7421. <member name="M:StackExchange.Redis.IServer.ClusterNodesAsync(StackExchange.Redis.CommandFlags)">
  7422. <summary>
  7423. Obtains the current CLUSTER NODES output from a cluster server
  7424. </summary>
  7425. <param name="flags">The command flags to use.</param>
  7426. </member>
  7427. <member name="M:StackExchange.Redis.IServer.ClusterNodesRaw(StackExchange.Redis.CommandFlags)">
  7428. <summary>
  7429. Obtains the current raw CLUSTER NODES output from a cluster server
  7430. </summary>
  7431. <param name="flags">The command flags to use.</param>
  7432. </member>
  7433. <member name="M:StackExchange.Redis.IServer.ClusterNodesRawAsync(StackExchange.Redis.CommandFlags)">
  7434. <summary>
  7435. Obtains the current raw CLUSTER NODES output from a cluster server
  7436. </summary>
  7437. <param name="flags">The command flags to use.</param>
  7438. </member>
  7439. <member name="M:StackExchange.Redis.IServer.ConfigGet(StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7440. <summary>
  7441. Get all configuration parameters matching the specified pattern.
  7442. </summary>
  7443. <param name="pattern">The pattern of config values to get.</param>
  7444. <param name="flags">The command flags to use.</param>
  7445. <returns>All matching configuration parameters.</returns>
  7446. <remarks>https://redis.io/commands/config-get</remarks>
  7447. </member>
  7448. <member name="M:StackExchange.Redis.IServer.ConfigGetAsync(StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7449. <summary>
  7450. Get all configuration parameters matching the specified pattern.
  7451. </summary>
  7452. <param name="pattern">The pattern of config values to get.</param>
  7453. <param name="flags">The command flags to use.</param>
  7454. <returns>All matching configuration parameters.</returns>
  7455. <remarks>https://redis.io/commands/config-get</remarks>
  7456. </member>
  7457. <member name="M:StackExchange.Redis.IServer.ConfigResetStatistics(StackExchange.Redis.CommandFlags)">
  7458. <summary>
  7459. Resets the statistics reported by Redis using the INFO command.
  7460. </summary>
  7461. <param name="flags">The command flags to use.</param>
  7462. <remarks>https://redis.io/commands/config-resetstat</remarks>
  7463. </member>
  7464. <member name="M:StackExchange.Redis.IServer.ConfigResetStatisticsAsync(StackExchange.Redis.CommandFlags)">
  7465. <summary>
  7466. Resets the statistics reported by Redis using the INFO command.
  7467. </summary>
  7468. <param name="flags">The command flags to use.</param>
  7469. <remarks>https://redis.io/commands/config-resetstat</remarks>
  7470. </member>
  7471. <member name="M:StackExchange.Redis.IServer.ConfigRewrite(StackExchange.Redis.CommandFlags)">
  7472. <summary>
  7473. The CONFIG REWRITE command rewrites the redis.conf file the server was started with, applying the minimal changes needed to make it reflecting the configuration currently used by the server, that may be different compared to the original one because of the use of the CONFIG SET command.
  7474. </summary>
  7475. <param name="flags">The command flags to use.</param>
  7476. <remarks>https://redis.io/commands/config-rewrite</remarks>
  7477. </member>
  7478. <member name="M:StackExchange.Redis.IServer.ConfigRewriteAsync(StackExchange.Redis.CommandFlags)">
  7479. <summary>
  7480. The CONFIG REWRITE command rewrites the redis.conf file the server was started with, applying the minimal changes needed to make it reflecting the configuration currently used by the server, that may be different compared to the original one because of the use of the CONFIG SET command.
  7481. </summary>
  7482. <param name="flags">The command flags to use.</param>
  7483. <remarks>https://redis.io/commands/config-rewrite</remarks>
  7484. </member>
  7485. <member name="M:StackExchange.Redis.IServer.ConfigSet(StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7486. <summary>
  7487. The CONFIG SET command is used in order to reconfigure the server at runtime without the need to restart Redis. You can change both trivial parameters or switch from one to another persistence option using this command.
  7488. </summary>
  7489. <param name="setting">The setting name.</param>
  7490. <param name="value">The new setting value.</param>
  7491. <param name="flags">The command flags to use.</param>
  7492. <remarks>https://redis.io/commands/config-set</remarks>
  7493. </member>
  7494. <member name="M:StackExchange.Redis.IServer.ConfigSetAsync(StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7495. <summary>
  7496. The CONFIG SET command is used in order to reconfigure the server at runtime without the need to restart Redis. You can change both trivial parameters or switch from one to another persistence option using this command.
  7497. </summary>
  7498. <param name="setting">The setting name.</param>
  7499. <param name="value">The new setting value.</param>
  7500. <param name="flags">The command flags to use.</param>
  7501. <remarks>https://redis.io/commands/config-set</remarks>
  7502. </member>
  7503. <member name="M:StackExchange.Redis.IServer.DatabaseSize(System.Int32,StackExchange.Redis.CommandFlags)">
  7504. <summary>
  7505. Return the number of keys in the database.
  7506. </summary>
  7507. <param name="database">The database ID.</param>
  7508. <param name="flags">The command flags to use.</param>
  7509. <remarks>https://redis.io/commands/dbsize</remarks>
  7510. </member>
  7511. <member name="M:StackExchange.Redis.IServer.DatabaseSizeAsync(System.Int32,StackExchange.Redis.CommandFlags)">
  7512. <summary>
  7513. Return the number of keys in the database.
  7514. </summary>
  7515. <param name="database">The database ID.</param>
  7516. <param name="flags">The command flags to use.</param>
  7517. <remarks>https://redis.io/commands/dbsize</remarks>
  7518. </member>
  7519. <member name="M:StackExchange.Redis.IServer.Echo(StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7520. <summary>
  7521. Return the same message passed in.
  7522. </summary>
  7523. <param name="message">The message to echo.</param>
  7524. <param name="flags">The command flags to use.</param>
  7525. <remarks>https://redis.io/commands/echo</remarks>
  7526. </member>
  7527. <member name="M:StackExchange.Redis.IServer.EchoAsync(StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7528. <summary>
  7529. Return the same message passed in.
  7530. </summary>
  7531. <param name="message">The message to echo.</param>
  7532. <param name="flags">The command flags to use.</param>
  7533. <remarks>https://redis.io/commands/echo</remarks>
  7534. </member>
  7535. <member name="M:StackExchange.Redis.IServer.Execute(System.String,System.Object[])">
  7536. <summary>
  7537. Execute an arbitrary command against the server; this is primarily intended for
  7538. executing modules, but may also be used to provide access to new features that lack
  7539. a direct API.
  7540. </summary>
  7541. <param name="command">The command to run.</param>
  7542. <param name="args">The arguments to pass for the command.</param>
  7543. <remarks>This API should be considered an advanced feature; inappropriate use can be harmful</remarks>
  7544. <returns>A dynamic representation of the command's result</returns>
  7545. </member>
  7546. <member name="M:StackExchange.Redis.IServer.Execute(System.String,System.Collections.Generic.ICollection{System.Object},StackExchange.Redis.CommandFlags)">
  7547. <summary>
  7548. Execute an arbitrary command against the server; this is primarily intended for
  7549. executing modules, but may also be used to provide access to new features that lack
  7550. a direct API.
  7551. </summary>
  7552. <param name="command">The command to run.</param>
  7553. <param name="args">The arguments to pass for the command.</param>
  7554. <param name="flags">The flags to use for this operation.</param>
  7555. <remarks>This API should be considered an advanced feature; inappropriate use can be harmful</remarks>
  7556. <returns>A dynamic representation of the command's result</returns>
  7557. </member>
  7558. <member name="M:StackExchange.Redis.IServer.ExecuteAsync(System.String,System.Object[])">
  7559. <summary>
  7560. Execute an arbitrary command against the server; this is primarily intended for
  7561. executing modules, but may also be used to provide access to new features that lack
  7562. a direct API.
  7563. </summary>
  7564. <param name="command">The command to run.</param>
  7565. <param name="args">The arguments to pass for the command.</param>
  7566. <remarks>This API should be considered an advanced feature; inappropriate use can be harmful</remarks>
  7567. <returns>A dynamic representation of the command's result</returns>
  7568. </member>
  7569. <member name="M:StackExchange.Redis.IServer.ExecuteAsync(System.String,System.Collections.Generic.ICollection{System.Object},StackExchange.Redis.CommandFlags)">
  7570. <summary>
  7571. Execute an arbitrary command against the server; this is primarily intended for
  7572. executing modules, but may also be used to provide access to new features that lack
  7573. a direct API.
  7574. </summary>
  7575. <param name="command">The command to run.</param>
  7576. <param name="args">The arguments to pass for the command.</param>
  7577. <param name="flags">The flags to use for this operation.</param>
  7578. <remarks>This API should be considered an advanced feature; inappropriate use can be harmful</remarks>
  7579. <returns>A dynamic representation of the command's result</returns>
  7580. </member>
  7581. <member name="M:StackExchange.Redis.IServer.FlushAllDatabases(StackExchange.Redis.CommandFlags)">
  7582. <summary>
  7583. Delete all the keys of all databases on the server.
  7584. </summary>
  7585. <param name="flags">The command flags to use.</param>
  7586. <remarks>https://redis.io/commands/flushall</remarks>
  7587. </member>
  7588. <member name="M:StackExchange.Redis.IServer.FlushAllDatabasesAsync(StackExchange.Redis.CommandFlags)">
  7589. <summary>
  7590. Delete all the keys of all databases on the server.
  7591. </summary>
  7592. <param name="flags">The command flags to use.</param>
  7593. <remarks>https://redis.io/commands/flushall</remarks>
  7594. </member>
  7595. <member name="M:StackExchange.Redis.IServer.FlushDatabase(System.Int32,StackExchange.Redis.CommandFlags)">
  7596. <summary>
  7597. Delete all the keys of the database.
  7598. </summary>
  7599. <param name="database">The database ID.</param>
  7600. <param name="flags">The command flags to use.</param>
  7601. <remarks>https://redis.io/commands/flushdb</remarks>
  7602. </member>
  7603. <member name="M:StackExchange.Redis.IServer.FlushDatabaseAsync(System.Int32,StackExchange.Redis.CommandFlags)">
  7604. <summary>
  7605. Delete all the keys of the database.
  7606. </summary>
  7607. <param name="database">The database ID.</param>
  7608. <param name="flags">The command flags to use.</param>
  7609. <remarks>https://redis.io/commands/flushdb</remarks>
  7610. </member>
  7611. <member name="M:StackExchange.Redis.IServer.GetCounters">
  7612. <summary>
  7613. Get summary statistics associates with this server
  7614. </summary>
  7615. </member>
  7616. <member name="M:StackExchange.Redis.IServer.Info(StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7617. <summary>
  7618. The INFO command returns information and statistics about the server in a format that is simple to parse by computers and easy to read by humans.
  7619. </summary>
  7620. <param name="section">The info section to get, if getting a specific one.</param>
  7621. <param name="flags">The command flags to use.</param>
  7622. <remarks>https://redis.io/commands/info</remarks>
  7623. </member>
  7624. <member name="M:StackExchange.Redis.IServer.InfoAsync(StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7625. <summary>
  7626. The INFO command returns information and statistics about the server in a format that is simple to parse by computers and easy to read by humans.
  7627. </summary>
  7628. <param name="section">The info section to get, if getting a specific one.</param>
  7629. <param name="flags">The command flags to use.</param>
  7630. <remarks>https://redis.io/commands/info</remarks>
  7631. </member>
  7632. <member name="M:StackExchange.Redis.IServer.InfoRaw(StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7633. <summary>
  7634. The INFO command returns information and statistics about the server in a format that is simple to parse by computers and easy to read by humans.
  7635. </summary>
  7636. <param name="section">The info section to get, if getting a specific one.</param>
  7637. <param name="flags">The command flags to use.</param>
  7638. <remarks>https://redis.io/commands/info</remarks>
  7639. </member>
  7640. <member name="M:StackExchange.Redis.IServer.InfoRawAsync(StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  7641. <summary>
  7642. The INFO command returns information and statistics about the server in a format that is simple to parse by computers and easy to read by humans.
  7643. </summary>
  7644. <param name="section">The info section to get, if getting a specific one.</param>
  7645. <param name="flags">The command flags to use.</param>
  7646. <remarks>https://redis.io/commands/info</remarks>
  7647. </member>
  7648. <member name="M:StackExchange.Redis.IServer.Keys(System.Int32,StackExchange.Redis.RedisValue,System.Int32,StackExchange.Redis.CommandFlags)">
  7649. <summary>
  7650. Returns all keys matching pattern; the KEYS or SCAN commands will be used based on the server capabilities.
  7651. </summary>
  7652. <param name="database">The database ID.</param>
  7653. <param name="pattern">The pattern to use.</param>
  7654. <param name="pageSize">The page size to iterate by.</param>
  7655. <param name="flags">The command flags to use.</param>
  7656. <remarks>Warning: consider KEYS as a command that should only be used in production environments with extreme care.</remarks>
  7657. <remarks>https://redis.io/commands/keys</remarks>
  7658. <remarks>https://redis.io/commands/scan</remarks>
  7659. </member>
  7660. <member name="M:StackExchange.Redis.IServer.Keys(System.Int32,StackExchange.Redis.RedisValue,System.Int32,System.Int64,System.Int32,StackExchange.Redis.CommandFlags)">
  7661. <summary>
  7662. Returns all keys matching pattern; the KEYS or SCAN commands will be used based on the server capabilities; note: to resume an iteration via <i>cursor</i>, cast the original enumerable or enumerator to <i>IScanningCursor</i>.
  7663. </summary>
  7664. <param name="database">The database ID.</param>
  7665. <param name="pattern">The pattern to use.</param>
  7666. <param name="pageSize">The page size to iterate by.</param>
  7667. <param name="cursor">The cursor position to resume at.</param>
  7668. <param name="pageOffset">The page offset to start at.</param>
  7669. <param name="flags">The command flags to use.</param>
  7670. <remarks>Warning: consider KEYS as a command that should only be used in production environments with extreme care.</remarks>
  7671. <remarks>https://redis.io/commands/keys</remarks>
  7672. <remarks>https://redis.io/commands/scan</remarks>
  7673. </member>
  7674. <member name="M:StackExchange.Redis.IServer.KeysAsync(System.Int32,StackExchange.Redis.RedisValue,System.Int32,System.Int64,System.Int32,StackExchange.Redis.CommandFlags)">
  7675. <summary>
  7676. Returns all keys matching pattern; the KEYS or SCAN commands will be used based on the server capabilities; note: to resume an iteration via <i>cursor</i>, cast the original enumerable or enumerator to <i>IScanningCursor</i>.
  7677. </summary>
  7678. <param name="database">The database ID.</param>
  7679. <param name="pattern">The pattern to use.</param>
  7680. <param name="pageSize">The page size to iterate by.</param>
  7681. <param name="cursor">The cursor position to resume at.</param>
  7682. <param name="pageOffset">The page offset to start at.</param>
  7683. <param name="flags">The command flags to use.</param>
  7684. <remarks>Warning: consider KEYS as a command that should only be used in production environments with extreme care.</remarks>
  7685. <remarks>https://redis.io/commands/keys</remarks>
  7686. <remarks>https://redis.io/commands/scan</remarks>
  7687. </member>
  7688. <member name="M:StackExchange.Redis.IServer.LastSave(StackExchange.Redis.CommandFlags)">
  7689. <summary>
  7690. Return the time of the last DB save executed with success. A client may check if a BGSAVE command succeeded reading the LASTSAVE value, then issuing a BGSAVE command and checking at regular intervals every N seconds if LASTSAVE changed.
  7691. </summary>
  7692. <param name="flags">The command flags to use.</param>
  7693. <remarks>https://redis.io/commands/lastsave</remarks>
  7694. </member>
  7695. <member name="M:StackExchange.Redis.IServer.LastSaveAsync(StackExchange.Redis.CommandFlags)">
  7696. <summary>
  7697. Return the time of the last DB save executed with success. A client may check if a BGSAVE command succeeded reading the LASTSAVE value, then issuing a BGSAVE command and checking at regular intervals every N seconds if LASTSAVE changed.
  7698. </summary>
  7699. <param name="flags">The command flags to use.</param>
  7700. <remarks>https://redis.io/commands/lastsave</remarks>
  7701. </member>
  7702. <member name="M:StackExchange.Redis.IServer.MakeMaster(StackExchange.Redis.ReplicationChangeOptions,System.IO.TextWriter)">
  7703. <summary>
  7704. Promote the selected node to be master
  7705. </summary>
  7706. <param name="options">The options to use for this topology change.</param>
  7707. <param name="log">The log to write output to.</param>
  7708. </member>
  7709. <member name="M:StackExchange.Redis.IServer.Save(StackExchange.Redis.SaveType,StackExchange.Redis.CommandFlags)">
  7710. <summary>
  7711. Explicitly request the database to persist the current state to disk
  7712. </summary>
  7713. <param name="type">The method of the save (e.g. background or foreground).</param>
  7714. <param name="flags">The command flags to use.</param>
  7715. <remarks>https://redis.io/commands/bgrewriteaof</remarks>
  7716. <remarks>https://redis.io/commands/bgsave</remarks>
  7717. <remarks>https://redis.io/commands/save</remarks>
  7718. <remarks>https://redis.io/topics/persistence</remarks>
  7719. </member>
  7720. <member name="M:StackExchange.Redis.IServer.SaveAsync(StackExchange.Redis.SaveType,StackExchange.Redis.CommandFlags)">
  7721. <summary>
  7722. Explicitly request the database to persist the current state to disk
  7723. </summary>
  7724. <param name="type">The method of the save (e.g. background or foreground).</param>
  7725. <param name="flags">The command flags to use.</param>
  7726. <remarks>https://redis.io/commands/bgrewriteaof</remarks>
  7727. <remarks>https://redis.io/commands/bgsave</remarks>
  7728. <remarks>https://redis.io/commands/save</remarks>
  7729. <remarks>https://redis.io/topics/persistence</remarks>
  7730. </member>
  7731. <member name="M:StackExchange.Redis.IServer.ScriptExists(System.String,StackExchange.Redis.CommandFlags)">
  7732. <summary>
  7733. Inidicates whether the specified script is defined on the server
  7734. </summary>
  7735. <param name="script">The text of the script to check for on the server.</param>
  7736. <param name="flags">The command flags to use.</param>
  7737. </member>
  7738. <member name="M:StackExchange.Redis.IServer.ScriptExists(System.Byte[],StackExchange.Redis.CommandFlags)">
  7739. <summary>
  7740. Inidicates whether the specified script hash is defined on the server
  7741. </summary>
  7742. <param name="sha1">The SHA1 of the script to check for on the server.</param>
  7743. <param name="flags">The command flags to use.</param>
  7744. </member>
  7745. <member name="M:StackExchange.Redis.IServer.ScriptExistsAsync(System.String,StackExchange.Redis.CommandFlags)">
  7746. <summary>
  7747. Inidicates whether the specified script is defined on the server
  7748. </summary>
  7749. <param name="script">The text of the script to check for on the server.</param>
  7750. <param name="flags">The command flags to use.</param>
  7751. </member>
  7752. <member name="M:StackExchange.Redis.IServer.ScriptExistsAsync(System.Byte[],StackExchange.Redis.CommandFlags)">
  7753. <summary>
  7754. Inidicates whether the specified script hash is defined on the server
  7755. </summary>
  7756. <param name="sha1">The SHA1 of the script to check for on the server.</param>
  7757. <param name="flags">The command flags to use.</param>
  7758. </member>
  7759. <member name="M:StackExchange.Redis.IServer.ScriptFlush(StackExchange.Redis.CommandFlags)">
  7760. <summary>
  7761. Removes all cached scripts on this server
  7762. </summary>
  7763. <param name="flags">The command flags to use.</param>
  7764. </member>
  7765. <member name="M:StackExchange.Redis.IServer.ScriptFlushAsync(StackExchange.Redis.CommandFlags)">
  7766. <summary>
  7767. Removes all cached scripts on this server
  7768. </summary>
  7769. <param name="flags">The command flags to use.</param>
  7770. </member>
  7771. <member name="M:StackExchange.Redis.IServer.ScriptLoad(System.String,StackExchange.Redis.CommandFlags)">
  7772. <summary>
  7773. Explicitly defines a script on the server
  7774. </summary>
  7775. <param name="script">The script to load.</param>
  7776. <param name="flags">The command flags to use.</param>
  7777. </member>
  7778. <member name="M:StackExchange.Redis.IServer.ScriptLoad(StackExchange.Redis.LuaScript,StackExchange.Redis.CommandFlags)">
  7779. <summary>
  7780. Explicitly defines a script on the server
  7781. </summary>
  7782. <param name="script">The script to load.</param>
  7783. <param name="flags">The command flags to use.</param>
  7784. </member>
  7785. <member name="M:StackExchange.Redis.IServer.ScriptLoadAsync(System.String,StackExchange.Redis.CommandFlags)">
  7786. <summary>
  7787. Explicitly defines a script on the server
  7788. </summary>
  7789. <param name="script">The script to load.</param>
  7790. <param name="flags">The command flags to use.</param>
  7791. </member>
  7792. <member name="M:StackExchange.Redis.IServer.ScriptLoadAsync(StackExchange.Redis.LuaScript,StackExchange.Redis.CommandFlags)">
  7793. <summary>
  7794. Explicitly defines a script on the server
  7795. </summary>
  7796. <param name="script">The script to load.</param>
  7797. <param name="flags">The command flags to use.</param>
  7798. </member>
  7799. <member name="M:StackExchange.Redis.IServer.Shutdown(StackExchange.Redis.ShutdownMode,StackExchange.Redis.CommandFlags)">
  7800. <summary>
  7801. Asks the redis server to shutdown, killing all connections. Please FULLY read the notes on the SHUTDOWN command.
  7802. </summary>
  7803. <param name="shutdownMode">The mode of the shutdown.</param>
  7804. <param name="flags">The command flags to use.</param>
  7805. <remarks>https://redis.io/commands/shutdown</remarks>
  7806. </member>
  7807. <member name="M:StackExchange.Redis.IServer.SlaveOf(System.Net.EndPoint,StackExchange.Redis.CommandFlags)">
  7808. <summary>
  7809. The REPLICAOF command can change the replication settings of a replica on the fly. If a Redis server is already acting as replica, specifying a null master will turn off the replication, turning the Redis server into a MASTER. Specifying a non-null master will make the server a replica of another server listening at the specified hostname and port.
  7810. </summary>
  7811. <param name="master">Endpoint of the new master to replicate from.</param>
  7812. <param name="flags">The command flags to use.</param>
  7813. <remarks>https://redis.io/commands/replicaof</remarks>
  7814. </member>
  7815. <member name="M:StackExchange.Redis.IServer.ReplicaOf(System.Net.EndPoint,StackExchange.Redis.CommandFlags)">
  7816. <summary>
  7817. The REPLICAOF command can change the replication settings of a replica on the fly. If a Redis server is already acting as replica, specifying a null master will turn off the replication, turning the Redis server into a MASTER. Specifying a non-null master will make the server a replica of another server listening at the specified hostname and port.
  7818. </summary>
  7819. <param name="master">Endpoint of the new master to replicate from.</param>
  7820. <param name="flags">The command flags to use.</param>
  7821. <remarks>https://redis.io/commands/replicaof</remarks>
  7822. </member>
  7823. <member name="M:StackExchange.Redis.IServer.SlaveOfAsync(System.Net.EndPoint,StackExchange.Redis.CommandFlags)">
  7824. <summary>
  7825. The REPLICAOF command can change the replication settings of a replica on the fly. If a Redis server is already acting as replica, specifying a null master will turn off the replication, turning the Redis server into a MASTER. Specifying a non-null master will make the server a replica of another server listening at the specified hostname and port.
  7826. </summary>
  7827. <param name="master">Endpoint of the new master to replicate from.</param>
  7828. <param name="flags">The command flags to use.</param>
  7829. <remarks>https://redis.io/commands/replicaof</remarks>
  7830. </member>
  7831. <member name="M:StackExchange.Redis.IServer.ReplicaOfAsync(System.Net.EndPoint,StackExchange.Redis.CommandFlags)">
  7832. <summary>
  7833. The REPLICAOF command can change the replication settings of a replica on the fly. If a Redis server is already acting as replica, specifying a null master will turn off the replication, turning the Redis server into a MASTER. Specifying a non-null master will make the server a replica of another server listening at the specified hostname and port.
  7834. </summary>
  7835. <param name="master">Endpoint of the new master to replicate from.</param>
  7836. <param name="flags">The command flags to use.</param>
  7837. <remarks>https://redis.io/commands/replicaof</remarks>
  7838. </member>
  7839. <member name="M:StackExchange.Redis.IServer.SlowlogGet(System.Int32,StackExchange.Redis.CommandFlags)">
  7840. <summary>
  7841. To read the slow log the SLOWLOG GET command is used, that returns every entry in the slow log. It is possible to return only the N most recent entries passing an additional argument to the command (for instance SLOWLOG GET 10).
  7842. </summary>
  7843. <param name="count">The count of items to get.</param>
  7844. <param name="flags">The command flags to use.</param>
  7845. <remarks>https://redis.io/commands/slowlog</remarks>
  7846. </member>
  7847. <member name="M:StackExchange.Redis.IServer.SlowlogGetAsync(System.Int32,StackExchange.Redis.CommandFlags)">
  7848. <summary>
  7849. To read the slow log the SLOWLOG GET command is used, that returns every entry in the slow log. It is possible to return only the N most recent entries passing an additional argument to the command (for instance SLOWLOG GET 10).
  7850. </summary>
  7851. <param name="count">The count of items to get.</param>
  7852. <param name="flags">The command flags to use.</param>
  7853. <remarks>https://redis.io/commands/slowlog</remarks>
  7854. </member>
  7855. <member name="M:StackExchange.Redis.IServer.SlowlogReset(StackExchange.Redis.CommandFlags)">
  7856. <summary>
  7857. You can reset the slow log using the SLOWLOG RESET command. Once deleted the information is lost forever.
  7858. </summary>
  7859. <param name="flags">The command flags to use.</param>
  7860. <remarks>https://redis.io/commands/slowlog</remarks>
  7861. </member>
  7862. <member name="M:StackExchange.Redis.IServer.SlowlogResetAsync(StackExchange.Redis.CommandFlags)">
  7863. <summary>
  7864. You can reset the slow log using the SLOWLOG RESET command. Once deleted the information is lost forever.
  7865. </summary>
  7866. <param name="flags">The command flags to use.</param>
  7867. <remarks>https://redis.io/commands/slowlog</remarks>
  7868. </member>
  7869. <member name="M:StackExchange.Redis.IServer.SubscriptionChannels(StackExchange.Redis.RedisChannel,StackExchange.Redis.CommandFlags)">
  7870. <summary>
  7871. Lists the currently active channels. An active channel is a Pub/Sub channel with one ore more subscribers (not including clients subscribed to patterns).
  7872. </summary>
  7873. <param name="pattern">The channel name pattern to get channels for.</param>
  7874. <param name="flags">The command flags to use.</param>
  7875. <returns> a list of active channels, optionally matching the specified pattern.</returns>
  7876. <remarks>https://redis.io/commands/pubsub</remarks>
  7877. </member>
  7878. <member name="M:StackExchange.Redis.IServer.SubscriptionChannelsAsync(StackExchange.Redis.RedisChannel,StackExchange.Redis.CommandFlags)">
  7879. <summary>
  7880. Lists the currently active channels. An active channel is a Pub/Sub channel with one ore more subscribers (not including clients subscribed to patterns).
  7881. </summary>
  7882. <param name="pattern">The channel name pattern to get channels for.</param>
  7883. <param name="flags">The command flags to use.</param>
  7884. <returns> a list of active channels, optionally matching the specified pattern.</returns>
  7885. <remarks>https://redis.io/commands/pubsub</remarks>
  7886. </member>
  7887. <member name="M:StackExchange.Redis.IServer.SubscriptionPatternCount(StackExchange.Redis.CommandFlags)">
  7888. <summary>
  7889. Returns the number of subscriptions to patterns (that are performed using the PSUBSCRIBE command). Note that this is not just the count of clients subscribed to patterns but the total number of patterns all the clients are subscribed to.
  7890. </summary>
  7891. <param name="flags">The command flags to use.</param>
  7892. <returns>the number of patterns all the clients are subscribed to.</returns>
  7893. <remarks>https://redis.io/commands/pubsub</remarks>
  7894. </member>
  7895. <member name="M:StackExchange.Redis.IServer.SubscriptionPatternCountAsync(StackExchange.Redis.CommandFlags)">
  7896. <summary>
  7897. Returns the number of subscriptions to patterns (that are performed using the PSUBSCRIBE command). Note that this is not just the count of clients subscribed to patterns but the total number of patterns all the clients are subscribed to.
  7898. </summary>
  7899. <param name="flags">The command flags to use.</param>
  7900. <returns>the number of patterns all the clients are subscribed to.</returns>
  7901. <remarks>https://redis.io/commands/pubsub</remarks>
  7902. </member>
  7903. <member name="M:StackExchange.Redis.IServer.SubscriptionSubscriberCount(StackExchange.Redis.RedisChannel,StackExchange.Redis.CommandFlags)">
  7904. <summary>
  7905. Returns the number of subscribers (not counting clients subscribed to patterns) for the specified channel.
  7906. </summary>
  7907. <param name="channel">The channel to get a subcriber count for.</param>
  7908. <param name="flags">The command flags to use.</param>
  7909. <remarks>https://redis.io/commands/pubsub</remarks>
  7910. </member>
  7911. <member name="M:StackExchange.Redis.IServer.SubscriptionSubscriberCountAsync(StackExchange.Redis.RedisChannel,StackExchange.Redis.CommandFlags)">
  7912. <summary>
  7913. Returns the number of subscribers (not counting clients subscribed to patterns) for the specified channel.
  7914. </summary>
  7915. <param name="channel">The channel to get a subcriber count for.</param>
  7916. <param name="flags">The command flags to use.</param>
  7917. <remarks>https://redis.io/commands/pubsub</remarks>
  7918. </member>
  7919. <member name="M:StackExchange.Redis.IServer.SwapDatabases(System.Int32,System.Int32,StackExchange.Redis.CommandFlags)">
  7920. <summary>
  7921. Swaps two Redis databases, so that immediately all the clients connected to a given database will see the data of the other database, and the other way around
  7922. </summary>
  7923. <param name="first">The ID of the first database.</param>
  7924. <param name="second">The ID of the second database.</param>
  7925. <param name="flags">The command flags to use.</param>
  7926. <remarks>https://redis.io/commands/swapdb</remarks>
  7927. </member>
  7928. <member name="M:StackExchange.Redis.IServer.SwapDatabasesAsync(System.Int32,System.Int32,StackExchange.Redis.CommandFlags)">
  7929. <summary>
  7930. Swaps two Redis databases, so that immediately all the clients connected to a given database will see the data of the other database, and the other way around
  7931. </summary>
  7932. <param name="first">The ID of the first database.</param>
  7933. <param name="second">The ID of the second database.</param>
  7934. <param name="flags">The command flags to use.</param>
  7935. <remarks>https://redis.io/commands/swapdb</remarks>
  7936. </member>
  7937. <member name="M:StackExchange.Redis.IServer.Time(StackExchange.Redis.CommandFlags)">
  7938. <summary>
  7939. The TIME command returns the current server time in UTC format.
  7940. Use the DateTime.ToLocalTime() method to get local time.
  7941. </summary>
  7942. <param name="flags">The command flags to use.</param>
  7943. <returns>The server's current time.</returns>
  7944. <remarks>https://redis.io/commands/time</remarks>
  7945. </member>
  7946. <member name="M:StackExchange.Redis.IServer.TimeAsync(StackExchange.Redis.CommandFlags)">
  7947. <summary>
  7948. The TIME command returns the current server time in UTC format.
  7949. Use the DateTime.ToLocalTime() method to get local time.
  7950. </summary>
  7951. <param name="flags">The command flags to use.</param>
  7952. <returns>The server's current time.</returns>
  7953. <remarks>https://redis.io/commands/time</remarks>
  7954. </member>
  7955. <member name="M:StackExchange.Redis.IServer.LatencyDoctorAsync(StackExchange.Redis.CommandFlags)">
  7956. <summary>
  7957. Gets a text-based latency diagnostic
  7958. </summary>
  7959. <remarks>https://redis.io/topics/latency-monitor</remarks>
  7960. </member>
  7961. <member name="M:StackExchange.Redis.IServer.LatencyDoctor(StackExchange.Redis.CommandFlags)">
  7962. <summary>
  7963. Gets a text-based latency diagnostic
  7964. </summary>
  7965. <remarks>https://redis.io/topics/latency-monitor</remarks>
  7966. </member>
  7967. <member name="M:StackExchange.Redis.IServer.LatencyResetAsync(System.String[],StackExchange.Redis.CommandFlags)">
  7968. <summary>
  7969. Resets the given events (or all if none are specified), discarding the currently logged latency spike events, and resetting the maximum event time register.
  7970. </summary>
  7971. <remarks>https://redis.io/topics/latency-monitor</remarks>
  7972. </member>
  7973. <member name="M:StackExchange.Redis.IServer.LatencyReset(System.String[],StackExchange.Redis.CommandFlags)">
  7974. <summary>
  7975. Resets the given events (or all if none are specified), discarding the currently logged latency spike events, and resetting the maximum event time register.
  7976. </summary>
  7977. <remarks>https://redis.io/topics/latency-monitor</remarks>
  7978. </member>
  7979. <member name="M:StackExchange.Redis.IServer.LatencyHistoryAsync(System.String,StackExchange.Redis.CommandFlags)">
  7980. <summary>
  7981. Fetch raw latency data from the event time series, as timestamp-latency pairs
  7982. </summary>
  7983. <remarks>https://redis.io/topics/latency-monitor</remarks>
  7984. </member>
  7985. <member name="M:StackExchange.Redis.IServer.LatencyHistory(System.String,StackExchange.Redis.CommandFlags)">
  7986. <summary>
  7987. Fetch raw latency data from the event time series, as timestamp-latency pairs
  7988. </summary>
  7989. <remarks>https://redis.io/topics/latency-monitor</remarks>
  7990. </member>
  7991. <member name="M:StackExchange.Redis.IServer.LatencyLatestAsync(StackExchange.Redis.CommandFlags)">
  7992. <summary>
  7993. Fetch raw latency data from the event time series, as timestamp-latency pairs
  7994. </summary>
  7995. <remarks>https://redis.io/topics/latency-monitor</remarks>
  7996. </member>
  7997. <member name="M:StackExchange.Redis.IServer.LatencyLatest(StackExchange.Redis.CommandFlags)">
  7998. <summary>
  7999. Fetch raw latency data from the event time series, as timestamp-latency pairs
  8000. </summary>
  8001. <remarks>https://redis.io/topics/latency-monitor</remarks>
  8002. </member>
  8003. <member name="M:StackExchange.Redis.IServer.MemoryDoctorAsync(StackExchange.Redis.CommandFlags)">
  8004. <summary>
  8005. Reports about different memory-related issues that the Redis server experiences, and advises about possible remedies.
  8006. </summary>
  8007. <remarks>https://redis.io/commands/memory-doctor</remarks>
  8008. </member>
  8009. <member name="M:StackExchange.Redis.IServer.MemoryDoctor(StackExchange.Redis.CommandFlags)">
  8010. <summary>
  8011. Reports about different memory-related issues that the Redis server experiences, and advises about possible remedies.
  8012. </summary>
  8013. <remarks>https://redis.io/commands/memory-doctor</remarks>
  8014. </member>
  8015. <member name="M:StackExchange.Redis.IServer.MemoryPurgeAsync(StackExchange.Redis.CommandFlags)">
  8016. <summary>
  8017. Attempts to purge dirty pages so these can be reclaimed by the allocator.
  8018. </summary>
  8019. <remarks>https://redis.io/commands/memory-purge</remarks>
  8020. </member>
  8021. <member name="M:StackExchange.Redis.IServer.MemoryPurge(StackExchange.Redis.CommandFlags)">
  8022. <summary>
  8023. Attempts to purge dirty pages so these can be reclaimed by the allocator.
  8024. </summary>
  8025. <remarks>https://redis.io/commands/memory-purge</remarks>
  8026. </member>
  8027. <member name="M:StackExchange.Redis.IServer.MemoryStatsAsync(StackExchange.Redis.CommandFlags)">
  8028. <summary>
  8029. Returns an array reply about the memory usage of the server.
  8030. </summary>
  8031. <remarks>https://redis.io/commands/memory-stats</remarks>
  8032. </member>
  8033. <member name="M:StackExchange.Redis.IServer.MemoryStats(StackExchange.Redis.CommandFlags)">
  8034. <summary>
  8035. Returns an array reply about the memory usage of the server.
  8036. </summary>
  8037. <remarks>https://redis.io/commands/memory-stats</remarks>
  8038. </member>
  8039. <member name="M:StackExchange.Redis.IServer.MemoryAllocatorStatsAsync(StackExchange.Redis.CommandFlags)">
  8040. <summary>
  8041. Provides an internal statistics report from the memory allocator.
  8042. </summary>
  8043. <remarks>https://redis.io/commands/memory-malloc-stats</remarks>
  8044. </member>
  8045. <member name="M:StackExchange.Redis.IServer.MemoryAllocatorStats(StackExchange.Redis.CommandFlags)">
  8046. <summary>
  8047. Provides an internal statistics report from the memory allocator.
  8048. </summary>
  8049. <remarks>https://redis.io/commands/memory-malloc-stats</remarks>
  8050. </member>
  8051. <member name="M:StackExchange.Redis.IServer.SentinelGetMasterAddressByName(System.String,StackExchange.Redis.CommandFlags)">
  8052. <summary>
  8053. Returns the ip and port number of the master with that name.
  8054. If a failover is in progress or terminated successfully for this master it returns the address and port of the promoted replica.
  8055. </summary>
  8056. <param name="serviceName">The sentinel service name.</param>
  8057. <param name="flags">The command flags to use.</param>
  8058. <returns>the master ip and port</returns>
  8059. <remarks>https://redis.io/topics/sentinel</remarks>
  8060. </member>
  8061. <member name="M:StackExchange.Redis.IServer.SentinelGetMasterAddressByNameAsync(System.String,StackExchange.Redis.CommandFlags)">
  8062. <summary>
  8063. Returns the ip and port number of the master with that name.
  8064. If a failover is in progress or terminated successfully for this master it returns the address and port of the promoted replica.
  8065. </summary>
  8066. <param name="serviceName">The sentinel service name.</param>
  8067. <param name="flags">The command flags to use.</param>
  8068. <returns>the master ip and port</returns>
  8069. <remarks>https://redis.io/topics/sentinel</remarks>
  8070. </member>
  8071. <member name="M:StackExchange.Redis.IServer.SentinelGetSentinelAddresses(System.String,StackExchange.Redis.CommandFlags)">
  8072. <summary>
  8073. Returns the ip and port numbers of all known Sentinels
  8074. for the given service name.
  8075. </summary>
  8076. <param name="serviceName">the sentinel service name</param>
  8077. <param name="flags">The command flags to use.</param>
  8078. <returns>a list of the sentinel ips and ports</returns>
  8079. </member>
  8080. <member name="M:StackExchange.Redis.IServer.SentinelGetSentinelAddressesAsync(System.String,StackExchange.Redis.CommandFlags)">
  8081. <summary>
  8082. Returns the ip and port numbers of all known Sentinels
  8083. for the given service name.
  8084. </summary>
  8085. <param name="serviceName">the sentinel service name</param>
  8086. <param name="flags">The command flags to use.</param>
  8087. <returns>a list of the sentinel ips and ports</returns>
  8088. </member>
  8089. <member name="M:StackExchange.Redis.IServer.SentinelGetReplicaAddresses(System.String,StackExchange.Redis.CommandFlags)">
  8090. <summary>
  8091. Returns the ip and port numbers of all known Sentinel replicas
  8092. for the given service name.
  8093. </summary>
  8094. <param name="serviceName">the sentinel service name</param>
  8095. <param name="flags">The command flags to use.</param>
  8096. <returns>a list of the replica ips and ports</returns>
  8097. </member>
  8098. <member name="M:StackExchange.Redis.IServer.SentinelGetReplicaAddressesAsync(System.String,StackExchange.Redis.CommandFlags)">
  8099. <summary>
  8100. Returns the ip and port numbers of all known Sentinel replicas
  8101. for the given service name.
  8102. </summary>
  8103. <param name="serviceName">the sentinel service name</param>
  8104. <param name="flags">The command flags to use.</param>
  8105. <returns>a list of the replica ips and ports</returns>
  8106. </member>
  8107. <member name="M:StackExchange.Redis.IServer.SentinelMaster(System.String,StackExchange.Redis.CommandFlags)">
  8108. <summary>
  8109. Show the state and info of the specified master.
  8110. </summary>
  8111. <param name="serviceName">The sentinel service name.</param>
  8112. <param name="flags">The command flags to use.</param>
  8113. <returns>the master state as KeyValuePairs</returns>
  8114. <remarks>https://redis.io/topics/sentinel</remarks>
  8115. </member>
  8116. <member name="M:StackExchange.Redis.IServer.SentinelMasterAsync(System.String,StackExchange.Redis.CommandFlags)">
  8117. <summary>
  8118. Show the state and info of the specified master.
  8119. </summary>
  8120. <param name="serviceName">The sentinel service name.</param>
  8121. <param name="flags">The command flags to use.</param>
  8122. <returns>the master state as KeyValuePairs</returns>
  8123. <remarks>https://redis.io/topics/sentinel</remarks>
  8124. </member>
  8125. <member name="M:StackExchange.Redis.IServer.SentinelMasters(StackExchange.Redis.CommandFlags)">
  8126. <summary>
  8127. Show a list of monitored masters and their state.
  8128. </summary>
  8129. <param name="flags">The command flags to use.</param>
  8130. <returns>an array of master state KeyValuePair arrays</returns>
  8131. <remarks>https://redis.io/topics/sentinel</remarks>
  8132. </member>
  8133. <member name="M:StackExchange.Redis.IServer.SentinelMastersAsync(StackExchange.Redis.CommandFlags)">
  8134. <summary>
  8135. Show a list of monitored masters and their state.
  8136. </summary>
  8137. <param name="flags">The command flags to use.</param>
  8138. <returns>an array of master state KeyValuePair arrays</returns>
  8139. <remarks>https://redis.io/topics/sentinel</remarks>
  8140. </member>
  8141. <member name="M:StackExchange.Redis.IServer.SentinelSlaves(System.String,StackExchange.Redis.CommandFlags)">
  8142. <summary>
  8143. Show a list of replicas for this master, and their state.
  8144. </summary>
  8145. <param name="serviceName">The sentinel service name.</param>
  8146. <param name="flags">The command flags to use.</param>
  8147. <returns>an array of replica state KeyValuePair arrays</returns>
  8148. <remarks>https://redis.io/topics/sentinel</remarks>
  8149. </member>
  8150. <member name="M:StackExchange.Redis.IServer.SentinelReplicas(System.String,StackExchange.Redis.CommandFlags)">
  8151. <summary>
  8152. Show a list of replicas for this master, and their state.
  8153. </summary>
  8154. <param name="serviceName">The sentinel service name.</param>
  8155. <param name="flags">The command flags to use.</param>
  8156. <returns>an array of replica state KeyValuePair arrays</returns>
  8157. <remarks>https://redis.io/topics/sentinel</remarks>
  8158. </member>
  8159. <member name="M:StackExchange.Redis.IServer.SentinelSlavesAsync(System.String,StackExchange.Redis.CommandFlags)">
  8160. <summary>
  8161. Show a list of replicas for this master, and their state.
  8162. </summary>
  8163. <param name="serviceName">The sentinel service name.</param>
  8164. <param name="flags">The command flags to use.</param>
  8165. <returns>an array of replica state KeyValuePair arrays</returns>
  8166. <remarks>https://redis.io/topics/sentinel</remarks>
  8167. </member>
  8168. <member name="M:StackExchange.Redis.IServer.SentinelReplicasAsync(System.String,StackExchange.Redis.CommandFlags)">
  8169. <summary>
  8170. Show a list of replicas for this master, and their state.
  8171. </summary>
  8172. <param name="serviceName">The sentinel service name.</param>
  8173. <param name="flags">The command flags to use.</param>
  8174. <returns>an array of replica state KeyValuePair arrays</returns>
  8175. <remarks>https://redis.io/topics/sentinel</remarks>
  8176. </member>
  8177. <member name="M:StackExchange.Redis.IServer.SentinelFailover(System.String,StackExchange.Redis.CommandFlags)">
  8178. <summary>
  8179. Force a failover as if the master was not reachable, and without asking for agreement to other Sentinels
  8180. (however a new version of the configuration will be published so that the other Sentinels will update their configurations).
  8181. </summary>
  8182. <param name="serviceName">The sentinel service name.</param>
  8183. <param name="flags">The command flags to use.</param>
  8184. <remarks>https://redis.io/topics/sentinel</remarks>
  8185. </member>
  8186. <member name="M:StackExchange.Redis.IServer.SentinelFailoverAsync(System.String,StackExchange.Redis.CommandFlags)">
  8187. <summary>
  8188. Force a failover as if the master was not reachable, and without asking for agreement to other Sentinels
  8189. (however a new version of the configuration will be published so that the other Sentinels will update their configurations).
  8190. </summary>
  8191. <param name="serviceName">The sentinel service name.</param>
  8192. <param name="flags">The command flags to use.</param>
  8193. <remarks>https://redis.io/topics/sentinel</remarks>
  8194. </member>
  8195. <member name="M:StackExchange.Redis.IServer.SentinelSentinels(System.String,StackExchange.Redis.CommandFlags)">
  8196. <summary>
  8197. Show a list of sentinels for a master, and their state.
  8198. </summary>
  8199. <param name="serviceName">The sentinel service name.</param>
  8200. <param name="flags">The command flags to use.</param>
  8201. <remarks>https://redis.io/topics/sentinel</remarks>
  8202. </member>
  8203. <member name="M:StackExchange.Redis.IServer.SentinelSentinelsAsync(System.String,StackExchange.Redis.CommandFlags)">
  8204. <summary>
  8205. Show a list of sentinels for a master, and their state.
  8206. </summary>
  8207. <param name="serviceName">The sentinel service name.</param>
  8208. <param name="flags">The command flags to use.</param>
  8209. <remarks>https://redis.io/topics/sentinel</remarks>
  8210. </member>
  8211. <member name="T:StackExchange.Redis.LatencyHistoryEntry">
  8212. <summary>
  8213. A latency entry as reported by the built-in LATENCY HISTORY command
  8214. </summary>
  8215. </member>
  8216. <member name="P:StackExchange.Redis.LatencyHistoryEntry.Timestamp">
  8217. <summary>
  8218. The time at which this entry was recorded
  8219. </summary>
  8220. </member>
  8221. <member name="P:StackExchange.Redis.LatencyHistoryEntry.DurationMilliseconds">
  8222. <summary>
  8223. The latency recorded for this event
  8224. </summary>
  8225. </member>
  8226. <member name="T:StackExchange.Redis.LatencyLatestEntry">
  8227. <summary>
  8228. A latency entry as reported by the built-in LATENCY LATEST command
  8229. </summary>
  8230. </member>
  8231. <member name="P:StackExchange.Redis.LatencyLatestEntry.EventName">
  8232. <summary>
  8233. The name of this event
  8234. </summary>
  8235. </member>
  8236. <member name="P:StackExchange.Redis.LatencyLatestEntry.Timestamp">
  8237. <summary>
  8238. The time at which this entry was recorded
  8239. </summary>
  8240. </member>
  8241. <member name="P:StackExchange.Redis.LatencyLatestEntry.DurationMilliseconds">
  8242. <summary>
  8243. The latency recorded for this event
  8244. </summary>
  8245. </member>
  8246. <member name="P:StackExchange.Redis.LatencyLatestEntry.MaxDurationMilliseconds">
  8247. <summary>
  8248. The max latency recorded for all events
  8249. </summary>
  8250. </member>
  8251. <member name="M:StackExchange.Redis.IServerExtensions.SimulateConnectionFailure(StackExchange.Redis.IServer)">
  8252. <summary>
  8253. For testing only: Break the connection without mercy or thought
  8254. </summary>
  8255. <param name="server">The server to simulate failure on.</param>
  8256. </member>
  8257. <member name="T:StackExchange.Redis.ISubscriber">
  8258. <summary>
  8259. A redis connection used as the subscriber in a pub/sub scenario
  8260. </summary>
  8261. </member>
  8262. <member name="M:StackExchange.Redis.ISubscriber.IdentifyEndpoint(StackExchange.Redis.RedisChannel,StackExchange.Redis.CommandFlags)">
  8263. <summary>
  8264. Indicate exactly which redis server we are talking to
  8265. </summary>
  8266. <param name="channel">The channel to identify the server endpoint by.</param>
  8267. <param name="flags">The command flags to use.</param>
  8268. </member>
  8269. <member name="M:StackExchange.Redis.ISubscriber.IdentifyEndpointAsync(StackExchange.Redis.RedisChannel,StackExchange.Redis.CommandFlags)">
  8270. <summary>
  8271. Indicate exactly which redis server we are talking to
  8272. </summary>
  8273. <param name="channel">The channel to identify the server endpoint by.</param>
  8274. <param name="flags">The command flags to use.</param>
  8275. </member>
  8276. <member name="M:StackExchange.Redis.ISubscriber.IsConnected(StackExchange.Redis.RedisChannel)">
  8277. <summary>
  8278. Indicates whether the instance can communicate with the server;
  8279. if a channel is specified, the existing subscription map is queried to
  8280. resolve the server responsible for that subscription - otherwise the
  8281. server is chosen aribtraily from the masters.
  8282. </summary>
  8283. <param name="channel">The channel to identify the server endpoint by.</param>
  8284. </member>
  8285. <member name="M:StackExchange.Redis.ISubscriber.Publish(StackExchange.Redis.RedisChannel,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  8286. <summary>
  8287. Posts a message to the given channel.
  8288. </summary>
  8289. <param name="channel">The channel to publish to.</param>
  8290. <param name="message">The message to publish.</param>
  8291. <param name="flags">The command flags to use.</param>
  8292. <returns>the number of clients that received the message.</returns>
  8293. <remarks>https://redis.io/commands/publish</remarks>
  8294. </member>
  8295. <member name="M:StackExchange.Redis.ISubscriber.PublishAsync(StackExchange.Redis.RedisChannel,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)">
  8296. <summary>
  8297. Posts a message to the given channel.
  8298. </summary>
  8299. <param name="channel">The channel to publish to.</param>
  8300. <param name="message">The message to publish.</param>
  8301. <param name="flags">The command flags to use.</param>
  8302. <returns>the number of clients that received the message.</returns>
  8303. <remarks>https://redis.io/commands/publish</remarks>
  8304. </member>
  8305. <member name="M:StackExchange.Redis.ISubscriber.Subscribe(StackExchange.Redis.RedisChannel,System.Action{StackExchange.Redis.RedisChannel,StackExchange.Redis.RedisValue},StackExchange.Redis.CommandFlags)">
  8306. <summary>
  8307. Subscribe to perform some operation when a message to the preferred/active node is broadcast, without any guarantee of ordered handling.
  8308. </summary>
  8309. <param name="channel">The channel to subscribe to.</param>
  8310. <param name="handler">The handler to invoke when a message is received on <paramref name="channel"/>.</param>
  8311. <param name="flags">The command flags to use.</param>
  8312. <remarks>https://redis.io/commands/subscribe</remarks>
  8313. <remarks>https://redis.io/commands/psubscribe</remarks>
  8314. </member>
  8315. <member name="M:StackExchange.Redis.ISubscriber.Subscribe(StackExchange.Redis.RedisChannel,StackExchange.Redis.CommandFlags)">
  8316. <summary>
  8317. Subscribe to perform some operation when a message to the preferred/active node is broadcast, as a queue that guarantees ordered handling.
  8318. </summary>
  8319. <param name="channel">The redis channel to subscribe to.</param>
  8320. <param name="flags">The command flags to use.</param>
  8321. <returns>A channel that represents this source</returns>
  8322. <remarks>https://redis.io/commands/subscribe</remarks>
  8323. <remarks>https://redis.io/commands/psubscribe</remarks>
  8324. </member>
  8325. <member name="M:StackExchange.Redis.ISubscriber.SubscribeAsync(StackExchange.Redis.RedisChannel,System.Action{StackExchange.Redis.RedisChannel,StackExchange.Redis.RedisValue},StackExchange.Redis.CommandFlags)">
  8326. <summary>
  8327. Subscribe to perform some operation when a change to the preferred/active node is broadcast.
  8328. </summary>
  8329. <param name="channel">The channel to subscribe to.</param>
  8330. <param name="handler">The handler to invoke when a message is received on <paramref name="channel"/>.</param>
  8331. <param name="flags">The command flags to use.</param>
  8332. <remarks>https://redis.io/commands/subscribe</remarks>
  8333. <remarks>https://redis.io/commands/psubscribe</remarks>
  8334. </member>
  8335. <member name="M:StackExchange.Redis.ISubscriber.SubscribeAsync(StackExchange.Redis.RedisChannel,StackExchange.Redis.CommandFlags)">
  8336. <summary>
  8337. Subscribe to perform some operation when a change to the preferred/active node is broadcast, as a channel.
  8338. </summary>
  8339. <param name="channel">The redis channel to subscribe to.</param>
  8340. <param name="flags">The command flags to use.</param>
  8341. <returns>A channel that represents this source</returns>
  8342. <remarks>https://redis.io/commands/subscribe</remarks>
  8343. <remarks>https://redis.io/commands/psubscribe</remarks>
  8344. </member>
  8345. <member name="M:StackExchange.Redis.ISubscriber.SubscribedEndpoint(StackExchange.Redis.RedisChannel)">
  8346. <summary>
  8347. Indicate to which redis server we are actively subscribed for a given channel; returns null if
  8348. the channel is not actively subscribed
  8349. </summary>
  8350. <param name="channel">The channel to check which server endpoint was subscribed on.</param>
  8351. </member>
  8352. <member name="M:StackExchange.Redis.ISubscriber.Unsubscribe(StackExchange.Redis.RedisChannel,System.Action{StackExchange.Redis.RedisChannel,StackExchange.Redis.RedisValue},StackExchange.Redis.CommandFlags)">
  8353. <summary>
  8354. Unsubscribe from a specified message channel; note; if no handler is specified, the subscription is cancelled regardless
  8355. of the subscribers; if a handler is specified, the subscription is only cancelled if this handler is the
  8356. last handler remaining against the channel
  8357. </summary>
  8358. <param name="channel">The channel that was subscribed to.</param>
  8359. <param name="handler">The handler to no longer invoke when a message is received on <paramref name="channel"/>.</param>
  8360. <param name="flags">The command flags to use.</param>
  8361. <remarks>https://redis.io/commands/unsubscribe</remarks>
  8362. <remarks>https://redis.io/commands/punsubscribe</remarks>
  8363. </member>
  8364. <member name="M:StackExchange.Redis.ISubscriber.UnsubscribeAll(StackExchange.Redis.CommandFlags)">
  8365. <summary>
  8366. Unsubscribe all subscriptions on this instance
  8367. </summary>
  8368. <param name="flags">The command flags to use.</param>
  8369. <remarks>https://redis.io/commands/unsubscribe</remarks>
  8370. <remarks>https://redis.io/commands/punsubscribe</remarks>
  8371. </member>
  8372. <member name="M:StackExchange.Redis.ISubscriber.UnsubscribeAllAsync(StackExchange.Redis.CommandFlags)">
  8373. <summary>
  8374. Unsubscribe all subscriptions on this instance
  8375. </summary>
  8376. <param name="flags">The command flags to use.</param>
  8377. <remarks>https://redis.io/commands/unsubscribe</remarks>
  8378. <remarks>https://redis.io/commands/punsubscribe</remarks>
  8379. </member>
  8380. <member name="M:StackExchange.Redis.ISubscriber.UnsubscribeAsync(StackExchange.Redis.RedisChannel,System.Action{StackExchange.Redis.RedisChannel,StackExchange.Redis.RedisValue},StackExchange.Redis.CommandFlags)">
  8381. <summary>
  8382. Unsubscribe from a specified message channel; note; if no handler is specified, the subscription is cancelled regardless
  8383. of the subscribers; if a handler is specified, the subscription is only cancelled if this handler is the
  8384. last handler remaining against the channel
  8385. </summary>
  8386. <param name="channel">The channel that was subscribed to.</param>
  8387. <param name="handler">The handler to no longer invoke when a message is received on <paramref name="channel"/>.</param>
  8388. <param name="flags">The command flags to use.</param>
  8389. <remarks>https://redis.io/commands/unsubscribe</remarks>
  8390. <remarks>https://redis.io/commands/punsubscribe</remarks>
  8391. </member>
  8392. <member name="T:StackExchange.Redis.ITransaction">
  8393. <summary>
  8394. Represents a group of operations that will be sent to the server as a single unit,
  8395. and processed on the server as a single unit. Transactions can also include constraints
  8396. (implemented via WATCH), but note that constraint checking involves will (very briefly)
  8397. block the connection, since the transaction cannot be correctly committed (EXEC),
  8398. aborted (DISCARD) or not applied in the first place (UNWATCH) until the responses from
  8399. the constraint checks have arrived.
  8400. </summary>
  8401. <remarks>https://redis.io/topics/transactions</remarks>
  8402. <remarks>Note that on a cluster, it may be required that all keys involved in the transaction
  8403. (including constraints) are in the same hash-slot</remarks>
  8404. </member>
  8405. <member name="M:StackExchange.Redis.ITransaction.AddCondition(StackExchange.Redis.Condition)">
  8406. <summary>
  8407. Adds a precondition for this transaction
  8408. </summary>
  8409. <param name="condition">The condition to add to the transaction.</param>
  8410. </member>
  8411. <member name="M:StackExchange.Redis.ITransaction.Execute(StackExchange.Redis.CommandFlags)">
  8412. <summary>
  8413. Execute the batch operation, sending all queued commands to the server.
  8414. </summary>
  8415. <param name="flags">The command flags to use.</param>
  8416. </member>
  8417. <member name="M:StackExchange.Redis.ITransaction.ExecuteAsync(StackExchange.Redis.CommandFlags)">
  8418. <summary>
  8419. Execute the batch operation, sending all queued commands to the server.
  8420. </summary>
  8421. <param name="flags">The command flags to use.</param>
  8422. </member>
  8423. <member name="T:StackExchange.Redis.InternalErrorEventArgs">
  8424. <summary>
  8425. Describes internal errors (mainly intended for debugging)
  8426. </summary>
  8427. </member>
  8428. <member name="M:StackExchange.Redis.InternalErrorEventArgs.#ctor(System.Object,System.Net.EndPoint,StackExchange.Redis.ConnectionType,System.Exception,System.String)">
  8429. <summary>
  8430. This constructor is only for testing purposes.
  8431. </summary>
  8432. <param name="sender">The source of the event.</param>
  8433. <param name="endpoint"></param>
  8434. <param name="connectionType">Redis connection type.</param>
  8435. <param name="exception">The exception occured.</param>
  8436. <param name="origin">Origin.</param>
  8437. </member>
  8438. <member name="P:StackExchange.Redis.InternalErrorEventArgs.ConnectionType">
  8439. <summary>
  8440. Gets the connection-type of the failing connection
  8441. </summary>
  8442. </member>
  8443. <member name="P:StackExchange.Redis.InternalErrorEventArgs.EndPoint">
  8444. <summary>
  8445. Gets the failing server-endpoint (this can be null)
  8446. </summary>
  8447. </member>
  8448. <member name="P:StackExchange.Redis.InternalErrorEventArgs.Exception">
  8449. <summary>
  8450. Gets the exception if available (this can be null)
  8451. </summary>
  8452. </member>
  8453. <member name="P:StackExchange.Redis.InternalErrorEventArgs.Origin">
  8454. <summary>
  8455. The underlying origin of the error
  8456. </summary>
  8457. </member>
  8458. <member name="T:StackExchange.Redis.KeyspaceIsolation.DatabaseExtensions">
  8459. <summary>
  8460. Provides the <see cref="M:StackExchange.Redis.KeyspaceIsolation.DatabaseExtensions.WithKeyPrefix(StackExchange.Redis.IDatabase,StackExchange.Redis.RedisKey)"/> extension method to <see cref="T:StackExchange.Redis.IDatabase"/>.
  8461. </summary>
  8462. </member>
  8463. <member name="M:StackExchange.Redis.KeyspaceIsolation.DatabaseExtensions.WithKeyPrefix(StackExchange.Redis.IDatabase,StackExchange.Redis.RedisKey)">
  8464. <summary>
  8465. Creates a new <see cref="T:StackExchange.Redis.IDatabase"/> instance that provides an isolated key space
  8466. of the specified underyling database instance.
  8467. </summary>
  8468. <param name="database">
  8469. The underlying database instance that the returned instance shall use.
  8470. </param>
  8471. <param name="keyPrefix">
  8472. The prefix that defines a key space isolation for the returned database instance.
  8473. </param>
  8474. <returns>
  8475. A new <see cref="T:StackExchange.Redis.IDatabase"/> instance that invokes the specified underlying
  8476. <paramref name="database"/> but prepends the specified <paramref name="keyPrefix"/>
  8477. to all key paramters and thus forms a logical key space isolation.
  8478. </returns>
  8479. <remarks>
  8480. <para>
  8481. The following methods are not supported in a key space isolated database and
  8482. will throw an <see cref="T:System.NotSupportedException"/> when invoked:
  8483. </para>
  8484. <list type="bullet">
  8485. <item><see cref="M:StackExchange.Redis.IDatabaseAsync.KeyRandomAsync(StackExchange.Redis.CommandFlags)"/></item>
  8486. <item><see cref="M:StackExchange.Redis.IDatabase.KeyRandom(StackExchange.Redis.CommandFlags)"/></item>
  8487. </list>
  8488. <para>
  8489. Please notice that keys passed to a script are prefixed (as normal) but care must
  8490. be taken when a script returns the name of a key as that will (currently) not be
  8491. "unprefixed".
  8492. </para>
  8493. </remarks>
  8494. </member>
  8495. <member name="T:StackExchange.Redis.Lease`1">
  8496. <summary>
  8497. A sized region of contiguous memory backed by a memory pool; disposing the lease returns the memory to the pool
  8498. </summary>
  8499. <typeparam name="T">The type of data being leased</typeparam>
  8500. </member>
  8501. <member name="P:StackExchange.Redis.Lease`1.Empty">
  8502. <summary>
  8503. A lease of length zero
  8504. </summary>
  8505. </member>
  8506. <member name="P:StackExchange.Redis.Lease`1.Length">
  8507. <summary>
  8508. The length of the lease
  8509. </summary>
  8510. </member>
  8511. <member name="M:StackExchange.Redis.Lease`1.Create(System.Int32,System.Boolean)">
  8512. <summary>
  8513. Create a new lease
  8514. </summary>
  8515. <param name="length">The size required</param>
  8516. <param name="clear">Whether to erase the memory</param>
  8517. </member>
  8518. <member name="M:StackExchange.Redis.Lease`1.Dispose">
  8519. <summary>
  8520. Release all resources owned by the lease
  8521. </summary>
  8522. </member>
  8523. <member name="P:StackExchange.Redis.Lease`1.Memory">
  8524. <summary>
  8525. The data as a Memory
  8526. </summary>
  8527. </member>
  8528. <member name="P:StackExchange.Redis.Lease`1.Span">
  8529. <summary>
  8530. The data as a Span
  8531. </summary>
  8532. </member>
  8533. <member name="P:StackExchange.Redis.Lease`1.ArraySegment">
  8534. <summary>
  8535. The data as an ArraySegment
  8536. </summary>
  8537. </member>
  8538. <member name="T:StackExchange.Redis.LinearRetry">
  8539. <summary>
  8540. Represents a retry policy that performs retries at a fixed interval. The retries are performed upto a maximum allowed time.
  8541. </summary>
  8542. </member>
  8543. <member name="M:StackExchange.Redis.LinearRetry.#ctor(System.Int32)">
  8544. <summary>
  8545. Initializes a new instance using the specified maximum retry elapsed time allowed.
  8546. </summary>
  8547. <param name="maxRetryElapsedTimeAllowedMilliseconds">maximum elapsed time in milliseconds to be allowed for it to perform retries</param>
  8548. </member>
  8549. <member name="M:StackExchange.Redis.LinearRetry.ShouldRetry(System.Int64,System.Int32)">
  8550. <summary>
  8551. This method is called by the ConnectionMultiplexer to determine if a reconnect operation can be retried now.
  8552. </summary>
  8553. <param name="currentRetryCount">The number of times reconnect retries have already been made by the ConnectionMultiplexer while it was in the connecting state</param>
  8554. <param name="timeElapsedMillisecondsSinceLastRetry">Total elapsed time in milliseconds since the last reconnect retry was made</param>
  8555. </member>
  8556. <member name="T:StackExchange.Redis.LuaScript">
  8557. <summary>
  8558. <para>Represents a Lua script that can be executed on Redis.</para>
  8559. <para>
  8560. Unlike normal Redis Lua scripts, LuaScript can have named parameters (prefixed by a @).
  8561. Public fields and properties of the passed in object are treated as parameters.
  8562. </para>
  8563. <para>
  8564. Parameters of type RedisKey are sent to Redis as KEY (https://redis.io/commands/eval) in addition to arguments,
  8565. so as to play nicely with Redis Cluster.
  8566. </para>
  8567. <para>All members of this class are thread safe.</para>
  8568. </summary>
  8569. </member>
  8570. <member name="P:StackExchange.Redis.LuaScript.OriginalScript">
  8571. <summary>
  8572. The original Lua script that was used to create this.
  8573. </summary>
  8574. </member>
  8575. <member name="P:StackExchange.Redis.LuaScript.ExecutableScript">
  8576. <summary>
  8577. <para>The Lua script that will actually be sent to Redis for execution.</para>
  8578. <para>All @-prefixed parameter names have been replaced at this point.</para>
  8579. </summary>
  8580. </member>
  8581. <member name="M:StackExchange.Redis.LuaScript.Finalize">
  8582. <summary>
  8583. Finalizer, used to prompt cleanups of the script cache when
  8584. a LuaScript reference goes out of scope.
  8585. </summary>
  8586. </member>
  8587. <member name="M:StackExchange.Redis.LuaScript.PurgeCache">
  8588. <summary>
  8589. Invalidates the internal cache of LuaScript objects.
  8590. Existing LuaScripts will continue to work, but future calls to LuaScript.Prepare
  8591. return a new LuaScript instance.
  8592. </summary>
  8593. </member>
  8594. <member name="M:StackExchange.Redis.LuaScript.GetCachedScriptCount">
  8595. <summary>
  8596. Returns the number of cached LuaScripts.
  8597. </summary>
  8598. </member>
  8599. <member name="M:StackExchange.Redis.LuaScript.Prepare(System.String)">
  8600. <summary>
  8601. Prepares a Lua script with named parameters to be run against any Redis instance.
  8602. </summary>
  8603. <param name="script">The script to prepare.</param>
  8604. </member>
  8605. <member name="M:StackExchange.Redis.LuaScript.Evaluate(StackExchange.Redis.IDatabase,System.Object,System.Nullable{StackExchange.Redis.RedisKey},StackExchange.Redis.CommandFlags)">
  8606. <summary>
  8607. Evaluates this LuaScript against the given database, extracting parameters from the passed in object if any.
  8608. </summary>
  8609. <param name="db">The redis database to evaluate against.</param>
  8610. <param name="ps">The parameter object to use.</param>
  8611. <param name="withKeyPrefix">The key prefix to use, if any.</param>
  8612. <param name="flags">The command flags to use.</param>
  8613. </member>
  8614. <member name="M:StackExchange.Redis.LuaScript.EvaluateAsync(StackExchange.Redis.IDatabaseAsync,System.Object,System.Nullable{StackExchange.Redis.RedisKey},StackExchange.Redis.CommandFlags)">
  8615. <summary>
  8616. Evaluates this LuaScript against the given database, extracting parameters from the passed in object if any.
  8617. </summary>
  8618. <param name="db">The redis database to evaluate against.</param>
  8619. <param name="ps">The parameter object to use.</param>
  8620. <param name="withKeyPrefix">The key prefix to use, if any.</param>
  8621. <param name="flags">The command flags to use.</param>
  8622. </member>
  8623. <member name="M:StackExchange.Redis.LuaScript.Load(StackExchange.Redis.IServer,StackExchange.Redis.CommandFlags)">
  8624. <summary>
  8625. <para>
  8626. Loads this LuaScript into the given IServer so it can be run with it's SHA1 hash, instead of
  8627. passing the full script on each Evaluate or EvaluateAsync call.
  8628. </para>
  8629. <para>Note: the FireAndForget command flag cannot be set</para>
  8630. </summary>
  8631. <param name="server">The server to load the script on.</param>
  8632. <param name="flags">The command flags to use.</param>
  8633. </member>
  8634. <member name="M:StackExchange.Redis.LuaScript.LoadAsync(StackExchange.Redis.IServer,StackExchange.Redis.CommandFlags)">
  8635. <summary>
  8636. <para>
  8637. Loads this LuaScript into the given IServer so it can be run with it's SHA1 hash, instead of
  8638. passing the full script on each Evaluate or EvaluateAsync call.
  8639. </para>
  8640. <para>Note: the FireAndForget command flag cannot be set</para>
  8641. </summary>
  8642. <param name="server">The server to load the script on.</param>
  8643. <param name="flags">The command flags to use.</param>
  8644. </member>
  8645. <member name="T:StackExchange.Redis.LoadedLuaScript">
  8646. <summary>
  8647. <para>Represents a Lua script that can be executed on Redis.</para>
  8648. <para>
  8649. Unlike LuaScript, LoadedLuaScript sends the hash of it's ExecutableScript to Redis rather than pass
  8650. the whole script on each call. This requires that the script be loaded into Redis before it is used.
  8651. </para>
  8652. <para>
  8653. To create a LoadedLuaScript first create a LuaScript via LuaScript.Prepare(string), then
  8654. call Load(IServer, CommandFlags) on the returned LuaScript.
  8655. </para>
  8656. <para>
  8657. Unlike normal Redis Lua scripts, LoadedLuaScript can have named parameters (prefixed by a @).
  8658. Public fields and properties of the passed in object are treated as parameters.
  8659. </para>
  8660. <para>
  8661. Parameters of type RedisKey are sent to Redis as KEY (https://redis.io/commands/eval) in addition to arguments,
  8662. so as to play nicely with Redis Cluster.
  8663. </para>
  8664. <para>All members of this class are thread safe.</para>
  8665. </summary>
  8666. </member>
  8667. <member name="P:StackExchange.Redis.LoadedLuaScript.OriginalScript">
  8668. <summary>
  8669. The original script that was used to create this LoadedLuaScript.
  8670. </summary>
  8671. </member>
  8672. <member name="P:StackExchange.Redis.LoadedLuaScript.ExecutableScript">
  8673. <summary>
  8674. The script that will actually be sent to Redis for execution.
  8675. </summary>
  8676. </member>
  8677. <member name="P:StackExchange.Redis.LoadedLuaScript.Hash">
  8678. <summary>
  8679. <para>The SHA1 hash of ExecutableScript.</para>
  8680. <para>This is sent to Redis instead of ExecutableScript during Evaluate and EvaluateAsync calls.</para>
  8681. </summary>
  8682. </member>
  8683. <member name="M:StackExchange.Redis.LoadedLuaScript.Evaluate(StackExchange.Redis.IDatabase,System.Object,System.Nullable{StackExchange.Redis.RedisKey},StackExchange.Redis.CommandFlags)">
  8684. <summary>
  8685. <para>Evaluates this LoadedLuaScript against the given database, extracting parameters for the passed in object if any.</para>
  8686. <para>
  8687. This method sends the SHA1 hash of the ExecutableScript instead of the script itself. If the script has not
  8688. been loaded into the passed Redis instance it will fail.
  8689. </para>
  8690. </summary>
  8691. <param name="db">The redis database to evaluate against.</param>
  8692. <param name="ps">The parameter object to use.</param>
  8693. <param name="withKeyPrefix">The key prefix to use, if any.</param>
  8694. <param name="flags">The command flags to use.</param>
  8695. </member>
  8696. <member name="M:StackExchange.Redis.LoadedLuaScript.EvaluateAsync(StackExchange.Redis.IDatabaseAsync,System.Object,System.Nullable{StackExchange.Redis.RedisKey},StackExchange.Redis.CommandFlags)">
  8697. <summary>
  8698. <para>Evaluates this LoadedLuaScript against the given database, extracting parameters for the passed in object if any.</para>
  8699. <para>
  8700. This method sends the SHA1 hash of the ExecutableScript instead of the script itself. If the script has not
  8701. been loaded into the passed Redis instance it will fail.
  8702. </para>
  8703. </summary>
  8704. <param name="db">The redis database to evaluate against.</param>
  8705. <param name="ps">The parameter object to use.</param>
  8706. <param name="withKeyPrefix">The key prefix to use, if any.</param>
  8707. <param name="flags">The command flags to use.</param>
  8708. </member>
  8709. <member name="P:StackExchange.Redis.Message.IsAdmin">
  8710. <summary>
  8711. Things with the potential to cause harm, or to reveal configuration information
  8712. </summary>
  8713. </member>
  8714. <member name="M:StackExchange.Redis.Message.SetInternalCall">
  8715. <summary>
  8716. This does a few important things:
  8717. 1: it suppresses error events for commands that the user isn't interested in
  8718. (i.e. "why does my standalone server keep saying ERR unknown command 'cluster' ?")
  8719. 2: it allows the initial PING and GET (during connect) to get queued rather
  8720. than be rejected as no-server-available (note that this doesn't apply to
  8721. handshake messages, as they bypass the queue completely)
  8722. 3: it disables non-pref logging, as it is usually server-targeted
  8723. </summary>
  8724. </member>
  8725. <member name="T:StackExchange.Redis.NameValueEntry">
  8726. <summary>
  8727. Describes a value contained in a stream (a name/value pair).
  8728. </summary>
  8729. </member>
  8730. <member name="M:StackExchange.Redis.NameValueEntry.#ctor(StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue)">
  8731. <summary>
  8732. Initializes a <see cref="T:StackExchange.Redis.NameValueEntry"/> value.
  8733. </summary>
  8734. <param name="name">The name for this entry.</param>
  8735. <param name="value">The value for this entry.</param>
  8736. </member>
  8737. <member name="P:StackExchange.Redis.NameValueEntry.Name">
  8738. <summary>
  8739. The name of the field.
  8740. </summary>
  8741. </member>
  8742. <member name="P:StackExchange.Redis.NameValueEntry.Value">
  8743. <summary>
  8744. The value of the field.
  8745. </summary>
  8746. </member>
  8747. <member name="M:StackExchange.Redis.NameValueEntry.op_Implicit(StackExchange.Redis.NameValueEntry)~System.Collections.Generic.KeyValuePair{StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue}">
  8748. <summary>
  8749. Converts to a key/value pair
  8750. </summary>
  8751. <param name="value">The <see cref="T:StackExchange.Redis.NameValueEntry"/> to create a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> from.</param>
  8752. </member>
  8753. <member name="M:StackExchange.Redis.NameValueEntry.op_Implicit(System.Collections.Generic.KeyValuePair{StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue})~StackExchange.Redis.NameValueEntry">
  8754. <summary>
  8755. Converts from a key/value pair
  8756. </summary>
  8757. <param name="value">The <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to get a <see cref="T:StackExchange.Redis.NameValueEntry"/> from.</param>
  8758. </member>
  8759. <member name="M:StackExchange.Redis.NameValueEntry.ToString">
  8760. <summary>
  8761. See Object.ToString()
  8762. </summary>
  8763. </member>
  8764. <member name="M:StackExchange.Redis.NameValueEntry.GetHashCode">
  8765. <summary>
  8766. See Object.GetHashCode()
  8767. </summary>
  8768. </member>
  8769. <member name="M:StackExchange.Redis.NameValueEntry.Equals(System.Object)">
  8770. <summary>
  8771. Compares two values for equality.
  8772. </summary>
  8773. <param name="obj">The <see cref="T:StackExchange.Redis.NameValueEntry"/> to compare to.</param>
  8774. </member>
  8775. <member name="M:StackExchange.Redis.NameValueEntry.Equals(StackExchange.Redis.NameValueEntry)">
  8776. <summary>
  8777. Compares two values for equality.
  8778. </summary>
  8779. <param name="other">The <see cref="T:StackExchange.Redis.NameValueEntry"/> to compare to.</param>
  8780. </member>
  8781. <member name="M:StackExchange.Redis.NameValueEntry.op_Equality(StackExchange.Redis.NameValueEntry,StackExchange.Redis.NameValueEntry)">
  8782. <summary>
  8783. Compares two values for equality
  8784. </summary>
  8785. <param name="x">The first <see cref="T:StackExchange.Redis.NameValueEntry"/> to compare.</param>
  8786. <param name="y">The second <see cref="T:StackExchange.Redis.NameValueEntry"/> to compare.</param>
  8787. </member>
  8788. <member name="M:StackExchange.Redis.NameValueEntry.op_Inequality(StackExchange.Redis.NameValueEntry,StackExchange.Redis.NameValueEntry)">
  8789. <summary>
  8790. Compares two values for non-equality
  8791. </summary>
  8792. <param name="x">The first <see cref="T:StackExchange.Redis.NameValueEntry"/> to compare.</param>
  8793. <param name="y">The second <see cref="T:StackExchange.Redis.NameValueEntry"/> to compare.</param>
  8794. </member>
  8795. <member name="M:StackExchange.Redis.PhysicalBridge.WriteMessageTakingWriteLockAsync(StackExchange.Redis.PhysicalConnection,StackExchange.Redis.Message)">
  8796. <summary>
  8797. This writes a message to the output stream
  8798. </summary>
  8799. <param name="physical">The phsyical connection to write to.</param>
  8800. <param name="message">The message to be written.</param>
  8801. </member>
  8802. <member name="M:StackExchange.Redis.PhysicalBridge.SimulateConnectionFailure">
  8803. <summary>
  8804. For testing only
  8805. </summary>
  8806. </member>
  8807. <member name="M:StackExchange.Redis.PhysicalConnection.ToString">
  8808. <summary>Returns a string that represents the current object.</summary>
  8809. <returns>A string that represents the current object.</returns>
  8810. </member>
  8811. <member name="T:StackExchange.Redis.Profiling.IProfiledCommand">
  8812. <summary>
  8813. <para>A profiled command against a redis instance.</para>
  8814. <para>
  8815. TimeSpans returned by this interface use a high precision timer if possible.
  8816. DateTimes returned by this interface are no more precise than DateTime.UtcNow.
  8817. </para>
  8818. </summary>
  8819. </member>
  8820. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.EndPoint">
  8821. <summary>
  8822. The endpoint this command was sent to.
  8823. </summary>
  8824. </member>
  8825. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.Db">
  8826. <summary>
  8827. The Db this command was sent to.
  8828. </summary>
  8829. </member>
  8830. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.Command">
  8831. <summary>
  8832. The name of this command.
  8833. </summary>
  8834. </member>
  8835. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.Flags">
  8836. <summary>
  8837. The CommandFlags the command was submitted with.
  8838. </summary>
  8839. </member>
  8840. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.CommandCreated">
  8841. <summary>
  8842. <para>
  8843. When this command was *created*, will be approximately
  8844. when the paired method of StackExchange.Redis was called but
  8845. before that method returned.
  8846. </para>
  8847. <para>Note that the resolution of the returned DateTime is limited by DateTime.UtcNow.</para>
  8848. </summary>
  8849. </member>
  8850. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.CreationToEnqueued">
  8851. <summary>
  8852. How long this command waited to be added to the queue of pending
  8853. redis commands. A large TimeSpan indicates serious contention for
  8854. the pending queue.
  8855. </summary>
  8856. </member>
  8857. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.EnqueuedToSending">
  8858. <summary>
  8859. How long this command spent in the pending queue before being sent to redis.
  8860. A large TimeSpan can indicate a large number of pending events, large pending events,
  8861. or network issues.
  8862. </summary>
  8863. </member>
  8864. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.SentToResponse">
  8865. <summary>
  8866. How long before Redis responded to this command and it's response could be handled after it was sent.
  8867. A large TimeSpan can indicate a large response body, an overtaxed redis instance, or network issues.
  8868. </summary>
  8869. </member>
  8870. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.ResponseToCompletion">
  8871. <summary>
  8872. How long between Redis responding to this command and awaiting consumers being notified.
  8873. </summary>
  8874. </member>
  8875. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.ElapsedTime">
  8876. <summary>
  8877. <para>How long it took this redis command to be processed, from creation to deserializing the final response.</para>
  8878. <para>Note that this TimeSpan *does not* include time spent awaiting a Task in consumer code.</para>
  8879. </summary>
  8880. </member>
  8881. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.RetransmissionOf">
  8882. <summary>
  8883. <para>
  8884. If a command has to be resent due to an ASK or MOVED response from redis (in a cluster configuration),
  8885. the second sending of the command will have this property set to the original IProfiledCommand.
  8886. </para>
  8887. <para>This can only be set if redis is configured as a cluster.</para>
  8888. </summary>
  8889. </member>
  8890. <member name="P:StackExchange.Redis.Profiling.IProfiledCommand.RetransmissionReason">
  8891. <summary>
  8892. If RetransmissionOf is not null, this property will be set to either Ask or Moved to indicate
  8893. what sort of response triggered the retransmission.
  8894. This can be useful for determining the root cause of extra commands.
  8895. </summary>
  8896. </member>
  8897. <member name="T:StackExchange.Redis.Profiling.ProfiledCommandEnumerable">
  8898. <summary>
  8899. <para>A collection of IProfiledCommands.</para>
  8900. <para>This is a very light weight data structure, only supporting enumeration.</para>
  8901. <para>
  8902. While it implements IEnumerable, it there are fewer allocations if one uses
  8903. it's explicit GetEnumerator() method. Using `foreach` does this automatically.
  8904. </para>
  8905. <para>This type is not threadsafe.</para>
  8906. </summary>
  8907. </member>
  8908. <member name="T:StackExchange.Redis.Profiling.ProfiledCommandEnumerable.Enumerator">
  8909. <summary>
  8910. <para>
  8911. Implements IEnumerator for ProfiledCommandEnumerable.
  8912. This implementation is comparable to List.Enumerator and Dictionary.Enumerator,
  8913. and is provided to reduce allocations in the common (ie. foreach) case.
  8914. </para>
  8915. <para>This type is not threadsafe.</para>
  8916. </summary>
  8917. </member>
  8918. <member name="P:StackExchange.Redis.Profiling.ProfiledCommandEnumerable.Enumerator.Current">
  8919. <summary>
  8920. The current element.
  8921. </summary>
  8922. </member>
  8923. <member name="M:StackExchange.Redis.Profiling.ProfiledCommandEnumerable.Enumerator.MoveNext">
  8924. <summary>
  8925. Advances the enumeration, returning true if there is a new element to consume and false
  8926. if enumeration is complete.
  8927. </summary>
  8928. </member>
  8929. <member name="M:StackExchange.Redis.Profiling.ProfiledCommandEnumerable.Enumerator.Reset">
  8930. <summary>
  8931. Resets the enumeration.
  8932. </summary>
  8933. </member>
  8934. <member name="M:StackExchange.Redis.Profiling.ProfiledCommandEnumerable.Enumerator.Dispose">
  8935. <summary>
  8936. Disposes the enumeration.
  8937. subsequent attempts to enumerate results in undefined behavior.
  8938. </summary>
  8939. </member>
  8940. <member name="M:StackExchange.Redis.Profiling.ProfiledCommandEnumerable.Count">
  8941. <summary>
  8942. Returns the number of commands captured in this snapshot
  8943. </summary>
  8944. </member>
  8945. <member name="M:StackExchange.Redis.Profiling.ProfiledCommandEnumerable.Count(System.Func{StackExchange.Redis.Profiling.IProfiledCommand,System.Boolean})">
  8946. <summary>
  8947. Returns the number of commands captured in this snapshot that match a condition
  8948. </summary>
  8949. <param name="predicate">The predicate to match.</param>
  8950. </member>
  8951. <member name="M:StackExchange.Redis.Profiling.ProfiledCommandEnumerable.ToArray">
  8952. <summary>
  8953. Returns the captured commands as an array
  8954. </summary>
  8955. </member>
  8956. <member name="M:StackExchange.Redis.Profiling.ProfiledCommandEnumerable.ToList">
  8957. <summary>
  8958. Returns the captured commands as a list
  8959. </summary>
  8960. </member>
  8961. <member name="M:StackExchange.Redis.Profiling.ProfiledCommandEnumerable.GetEnumerator">
  8962. <summary>
  8963. <para>
  8964. Returns an implementor of IEnumerator that, provided it isn't accessed
  8965. though an interface, avoids allocations.
  8966. </para>
  8967. <para>`foreach` will automatically use this method.</para>
  8968. </summary>
  8969. </member>
  8970. <member name="T:StackExchange.Redis.Profiling.ProfilingSession">
  8971. <summary>
  8972. Lightweight profiling session that can be optionally registered (via ConnectionMultiplexer.RegisterProfiler) to track messages.
  8973. </summary>
  8974. </member>
  8975. <member name="P:StackExchange.Redis.Profiling.ProfilingSession.UserToken">
  8976. <summary>
  8977. Caller-defined state object.
  8978. </summary>
  8979. </member>
  8980. <member name="M:StackExchange.Redis.Profiling.ProfilingSession.#ctor(System.Object)">
  8981. <summary>
  8982. Create a new profiling session, optionally including a caller-defined state object.
  8983. </summary>
  8984. <param name="userToken">The state object to use for this session.</param>
  8985. </member>
  8986. <member name="M:StackExchange.Redis.Profiling.ProfilingSession.FinishProfiling">
  8987. <summary>
  8988. Reset the session and yield the commands that were captured for enumeration; if additional commands
  8989. are added, they can be retrieved via additional calls to FinishProfiling.
  8990. </summary>
  8991. </member>
  8992. <member name="T:StackExchange.Redis.RedisChannel">
  8993. <summary>
  8994. Represents a pub/sub channel name
  8995. </summary>
  8996. </member>
  8997. <member name="P:StackExchange.Redis.RedisChannel.IsNullOrEmpty">
  8998. <summary>
  8999. Indicates whether the channel-name is either null or a zero-length value
  9000. </summary>
  9001. </member>
  9002. <member name="M:StackExchange.Redis.RedisChannel.#ctor(System.Byte[],StackExchange.Redis.RedisChannel.PatternMode)">
  9003. <summary>
  9004. Create a new redis channel from a buffer, explicitly controlling the pattern mode
  9005. </summary>
  9006. <param name="value">The name of the channel to create.</param>
  9007. <param name="mode">The mode for name matching.</param>
  9008. </member>
  9009. <member name="M:StackExchange.Redis.RedisChannel.#ctor(System.String,StackExchange.Redis.RedisChannel.PatternMode)">
  9010. <summary>
  9011. Create a new redis channel from a string, explicitly controlling the pattern mode
  9012. </summary>
  9013. <param name="value">The string name of the channel to create.</param>
  9014. <param name="mode">The mode for name matching.</param>
  9015. </member>
  9016. <member name="M:StackExchange.Redis.RedisChannel.op_Inequality(StackExchange.Redis.RedisChannel,StackExchange.Redis.RedisChannel)">
  9017. <summary>
  9018. Indicate whether two channel names are not equal
  9019. </summary>
  9020. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9021. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9022. </member>
  9023. <member name="M:StackExchange.Redis.RedisChannel.op_Inequality(System.String,StackExchange.Redis.RedisChannel)">
  9024. <summary>
  9025. Indicate whether two channel names are not equal
  9026. </summary>
  9027. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9028. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9029. </member>
  9030. <member name="M:StackExchange.Redis.RedisChannel.op_Inequality(System.Byte[],StackExchange.Redis.RedisChannel)">
  9031. <summary>
  9032. Indicate whether two channel names are not equal
  9033. </summary>
  9034. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9035. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9036. </member>
  9037. <member name="M:StackExchange.Redis.RedisChannel.op_Inequality(StackExchange.Redis.RedisChannel,System.String)">
  9038. <summary>
  9039. Indicate whether two channel names are not equal
  9040. </summary>
  9041. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9042. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9043. </member>
  9044. <member name="M:StackExchange.Redis.RedisChannel.op_Inequality(StackExchange.Redis.RedisChannel,System.Byte[])">
  9045. <summary>
  9046. Indicate whether two channel names are not equal
  9047. </summary>
  9048. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9049. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9050. </member>
  9051. <member name="M:StackExchange.Redis.RedisChannel.op_Equality(StackExchange.Redis.RedisChannel,StackExchange.Redis.RedisChannel)">
  9052. <summary>
  9053. Indicate whether two channel names are equal
  9054. </summary>
  9055. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9056. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9057. </member>
  9058. <member name="M:StackExchange.Redis.RedisChannel.op_Equality(System.String,StackExchange.Redis.RedisChannel)">
  9059. <summary>
  9060. Indicate whether two channel names are equal
  9061. </summary>
  9062. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9063. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9064. </member>
  9065. <member name="M:StackExchange.Redis.RedisChannel.op_Equality(System.Byte[],StackExchange.Redis.RedisChannel)">
  9066. <summary>
  9067. Indicate whether two channel names are equal
  9068. </summary>
  9069. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9070. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9071. </member>
  9072. <member name="M:StackExchange.Redis.RedisChannel.op_Equality(StackExchange.Redis.RedisChannel,System.String)">
  9073. <summary>
  9074. Indicate whether two channel names are equal
  9075. </summary>
  9076. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9077. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9078. </member>
  9079. <member name="M:StackExchange.Redis.RedisChannel.op_Equality(StackExchange.Redis.RedisChannel,System.Byte[])">
  9080. <summary>
  9081. Indicate whether two channel names are equal
  9082. </summary>
  9083. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9084. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9085. </member>
  9086. <member name="M:StackExchange.Redis.RedisChannel.Equals(System.Object)">
  9087. <summary>
  9088. See Object.Equals
  9089. </summary>
  9090. <param name="obj">The <see cref="T:StackExchange.Redis.RedisChannel"/> to compare to.</param>
  9091. </member>
  9092. <member name="M:StackExchange.Redis.RedisChannel.Equals(StackExchange.Redis.RedisChannel)">
  9093. <summary>
  9094. Indicate whether two channel names are equal
  9095. </summary>
  9096. <param name="other">The <see cref="T:StackExchange.Redis.RedisChannel"/> to compare to.</param>
  9097. </member>
  9098. <member name="M:StackExchange.Redis.RedisChannel.GetHashCode">
  9099. <summary>
  9100. See Object.GetHashCode
  9101. </summary>
  9102. </member>
  9103. <member name="M:StackExchange.Redis.RedisChannel.ToString">
  9104. <summary>
  9105. Obtains a string representation of the channel name
  9106. </summary>
  9107. </member>
  9108. <member name="T:StackExchange.Redis.RedisChannel.PatternMode">
  9109. <summary>
  9110. The matching pattern for this channel
  9111. </summary>
  9112. </member>
  9113. <member name="F:StackExchange.Redis.RedisChannel.PatternMode.Auto">
  9114. <summary>
  9115. Will be treated as a pattern if it includes *
  9116. </summary>
  9117. </member>
  9118. <member name="F:StackExchange.Redis.RedisChannel.PatternMode.Literal">
  9119. <summary>
  9120. Never a pattern
  9121. </summary>
  9122. </member>
  9123. <member name="F:StackExchange.Redis.RedisChannel.PatternMode.Pattern">
  9124. <summary>
  9125. Always a pattern
  9126. </summary>
  9127. </member>
  9128. <member name="M:StackExchange.Redis.RedisChannel.op_Implicit(System.String)~StackExchange.Redis.RedisChannel">
  9129. <summary>
  9130. Create a channel name from a <see cref="T:System.String"/>.
  9131. </summary>
  9132. <param name="key">The string to get a channel from.</param>
  9133. </member>
  9134. <member name="M:StackExchange.Redis.RedisChannel.op_Implicit(System.Byte[])~StackExchange.Redis.RedisChannel">
  9135. <summary>
  9136. Create a channel name from a <see cref="T:byte[]"/>.
  9137. </summary>
  9138. <param name="key">The byte array to get a channel from.</param>
  9139. </member>
  9140. <member name="M:StackExchange.Redis.RedisChannel.op_Implicit(StackExchange.Redis.RedisChannel)~System.Byte[]">
  9141. <summary>
  9142. Obtain the channel name as a <see cref="T:byte[]"/>.
  9143. </summary>
  9144. <param name="key">The channel to get a byte[] from.</param>
  9145. </member>
  9146. <member name="M:StackExchange.Redis.RedisChannel.op_Implicit(StackExchange.Redis.RedisChannel)~System.String">
  9147. <summary>
  9148. Obtain the channel name as a <see cref="T:System.String"/>.
  9149. </summary>
  9150. <param name="key">The channel to get a string from.</param>
  9151. </member>
  9152. <member name="T:StackExchange.Redis.RedisErrorEventArgs">
  9153. <summary>
  9154. Notification of errors from the redis server
  9155. </summary>
  9156. </member>
  9157. <member name="M:StackExchange.Redis.RedisErrorEventArgs.#ctor(System.Object,System.Net.EndPoint,System.String)">
  9158. <summary>
  9159. This constructor is only for testing purposes.
  9160. </summary>
  9161. <param name="sender">The source of the event.</param>
  9162. <param name="endpoint">Redis endpoint.</param>
  9163. <param name="message">Error message.</param>
  9164. </member>
  9165. <member name="P:StackExchange.Redis.RedisErrorEventArgs.EndPoint">
  9166. <summary>
  9167. The origin of the message
  9168. </summary>
  9169. </member>
  9170. <member name="P:StackExchange.Redis.RedisErrorEventArgs.Message">
  9171. <summary>
  9172. The message from the server
  9173. </summary>
  9174. </member>
  9175. <member name="T:StackExchange.Redis.RedisFeatures">
  9176. <summary>
  9177. Provides basic information about the features available on a particular version of Redis
  9178. </summary>
  9179. </member>
  9180. <member name="M:StackExchange.Redis.RedisFeatures.#ctor(System.Version)">
  9181. <summary>
  9182. Create a new RedisFeatures instance for the given version
  9183. </summary>
  9184. <param name="version">The version of redis to base the feature set on.</param>
  9185. </member>
  9186. <member name="P:StackExchange.Redis.RedisFeatures.BitwiseOperations">
  9187. <summary>
  9188. Does BITOP / BITCOUNT exist?
  9189. </summary>
  9190. </member>
  9191. <member name="P:StackExchange.Redis.RedisFeatures.ClientName">
  9192. <summary>
  9193. Is CLIENT SETNAME available?
  9194. </summary>
  9195. </member>
  9196. <member name="P:StackExchange.Redis.RedisFeatures.ExecAbort">
  9197. <summary>
  9198. Does EXEC support EXECABORT if there are errors?
  9199. </summary>
  9200. </member>
  9201. <member name="P:StackExchange.Redis.RedisFeatures.ExpireOverwrite">
  9202. <summary>
  9203. Can EXPIRE be used to set expiration on a key that is already volatile (i.e. has an expiration)?
  9204. </summary>
  9205. </member>
  9206. <member name="P:StackExchange.Redis.RedisFeatures.HashStringLength">
  9207. <summary>
  9208. Is HSTRLEN available?
  9209. </summary>
  9210. </member>
  9211. <member name="P:StackExchange.Redis.RedisFeatures.HashVaradicDelete">
  9212. <summary>
  9213. Does HDEL support varadic usage?
  9214. </summary>
  9215. </member>
  9216. <member name="P:StackExchange.Redis.RedisFeatures.IncrementFloat">
  9217. <summary>
  9218. Does INCRBYFLOAT / HINCRBYFLOAT exist?
  9219. </summary>
  9220. </member>
  9221. <member name="P:StackExchange.Redis.RedisFeatures.InfoSections">
  9222. <summary>
  9223. Does INFO support sections?
  9224. </summary>
  9225. </member>
  9226. <member name="P:StackExchange.Redis.RedisFeatures.ListInsert">
  9227. <summary>
  9228. Is LINSERT available?
  9229. </summary>
  9230. </member>
  9231. <member name="P:StackExchange.Redis.RedisFeatures.Memory">
  9232. <summary>
  9233. Is MEMORY available?
  9234. </summary>
  9235. </member>
  9236. <member name="P:StackExchange.Redis.RedisFeatures.MillisecondExpiry">
  9237. <summary>
  9238. Indicates whether PEXPIRE and PTTL are supported
  9239. </summary>
  9240. </member>
  9241. <member name="P:StackExchange.Redis.RedisFeatures.Module">
  9242. <summary>
  9243. Is MODULE available?
  9244. </summary>
  9245. </member>
  9246. <member name="P:StackExchange.Redis.RedisFeatures.MultipleRandom">
  9247. <summary>
  9248. Does SRANDMEMBER support "count"?
  9249. </summary>
  9250. </member>
  9251. <member name="P:StackExchange.Redis.RedisFeatures.Persist">
  9252. <summary>
  9253. Is the PERSIST operation supported?
  9254. </summary>
  9255. </member>
  9256. <member name="P:StackExchange.Redis.RedisFeatures.PushIfNotExists">
  9257. <summary>
  9258. Is RPUSHX and LPUSHX available?
  9259. </summary>
  9260. </member>
  9261. <member name="P:StackExchange.Redis.RedisFeatures.Scan">
  9262. <summary>
  9263. Are cursor-based scans available?
  9264. </summary>
  9265. </member>
  9266. <member name="P:StackExchange.Redis.RedisFeatures.Scripting">
  9267. <summary>
  9268. Does EVAL / EVALSHA / etc exist?
  9269. </summary>
  9270. </member>
  9271. <member name="P:StackExchange.Redis.RedisFeatures.SetConditional">
  9272. <summary>
  9273. Does SET have the EX|PX|NX|XX extensions?
  9274. </summary>
  9275. </member>
  9276. <member name="P:StackExchange.Redis.RedisFeatures.SetVaradicAddRemove">
  9277. <summary>
  9278. Does SADD support varadic usage?
  9279. </summary>
  9280. </member>
  9281. <member name="P:StackExchange.Redis.RedisFeatures.SortedSetPop">
  9282. <summary>
  9283. Is ZPOPMAX and ZPOPMIN available?
  9284. </summary>
  9285. </member>
  9286. <member name="P:StackExchange.Redis.RedisFeatures.Streams">
  9287. <summary>
  9288. Are Redis Streams available?
  9289. </summary>
  9290. </member>
  9291. <member name="P:StackExchange.Redis.RedisFeatures.StringLength">
  9292. <summary>
  9293. Is STRLEN available?
  9294. </summary>
  9295. </member>
  9296. <member name="P:StackExchange.Redis.RedisFeatures.StringSetRange">
  9297. <summary>
  9298. Is SETRANGE available?
  9299. </summary>
  9300. </member>
  9301. <member name="P:StackExchange.Redis.RedisFeatures.SwapDB">
  9302. <summary>
  9303. Is SWAPDB available?
  9304. </summary>
  9305. </member>
  9306. <member name="P:StackExchange.Redis.RedisFeatures.Time">
  9307. <summary>
  9308. Does TIME exist?
  9309. </summary>
  9310. </member>
  9311. <member name="P:StackExchange.Redis.RedisFeatures.Unlink">
  9312. <summary>
  9313. Does UNLINK exist?
  9314. </summary>
  9315. </member>
  9316. <member name="P:StackExchange.Redis.RedisFeatures.ScriptingDatabaseSafe">
  9317. <summary>
  9318. Are Lua changes to the calling database transparent to the calling client?
  9319. </summary>
  9320. </member>
  9321. <member name="P:StackExchange.Redis.RedisFeatures.HyperLogLogCountSlaveSafe">
  9322. <summary>
  9323. Is PFCOUNT supported on replicas?
  9324. </summary>
  9325. </member>
  9326. <member name="P:StackExchange.Redis.RedisFeatures.HyperLogLogCountReplicaSafe">
  9327. <summary>
  9328. Is PFCOUNT supported on replicas?
  9329. </summary>
  9330. </member>
  9331. <member name="P:StackExchange.Redis.RedisFeatures.Geo">
  9332. <summary>
  9333. Are the GEO commands available?
  9334. </summary>
  9335. </member>
  9336. <member name="P:StackExchange.Redis.RedisFeatures.PingOnSubscriber">
  9337. <summary>
  9338. Can PING be used on a subscription connection?
  9339. </summary>
  9340. </member>
  9341. <member name="P:StackExchange.Redis.RedisFeatures.SetPopMultiple">
  9342. <summary>
  9343. Does SetPop support popping multiple items?
  9344. </summary>
  9345. </member>
  9346. <member name="P:StackExchange.Redis.RedisFeatures.Version">
  9347. <summary>
  9348. The Redis version of the server
  9349. </summary>
  9350. </member>
  9351. <member name="P:StackExchange.Redis.RedisFeatures.KeyTouch">
  9352. <summary>
  9353. Are the Touch command available?
  9354. </summary>
  9355. </member>
  9356. <member name="P:StackExchange.Redis.RedisFeatures.ReplicaCommands">
  9357. <summary>
  9358. Does the server prefer 'replica' terminology - 'REPLICAOF', etc?
  9359. </summary>
  9360. </member>
  9361. <member name="M:StackExchange.Redis.RedisFeatures.ToString">
  9362. <summary>
  9363. Create a string representation of the available features
  9364. </summary>
  9365. </member>
  9366. <member name="M:StackExchange.Redis.RedisFeatures.GetHashCode">
  9367. <summary>Returns the hash code for this instance.</summary>
  9368. <returns>A 32-bit signed integer that is the hash code for this instance.</returns>
  9369. </member>
  9370. <member name="M:StackExchange.Redis.RedisFeatures.Equals(System.Object)">
  9371. <summary>Indicates whether this instance and a specified object are equal.</summary>
  9372. <returns>true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false. </returns>
  9373. <param name="obj">The object to compare with the current instance. </param>
  9374. </member>
  9375. <member name="T:StackExchange.Redis.RedisKey">
  9376. <summary>
  9377. Represents a key that can be stored in redis
  9378. </summary>
  9379. </member>
  9380. <member name="M:StackExchange.Redis.RedisKey.#ctor(System.String)">
  9381. <summary>
  9382. Creates a <see cref="T:StackExchange.Redis.RedisKey"/> from a string.
  9383. </summary>
  9384. </member>
  9385. <member name="M:StackExchange.Redis.RedisKey.op_Inequality(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey)">
  9386. <summary>
  9387. Indicate whether two keys are not equal
  9388. </summary>
  9389. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9390. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9391. </member>
  9392. <member name="M:StackExchange.Redis.RedisKey.op_Inequality(System.String,StackExchange.Redis.RedisKey)">
  9393. <summary>
  9394. Indicate whether two keys are not equal
  9395. </summary>
  9396. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9397. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9398. </member>
  9399. <member name="M:StackExchange.Redis.RedisKey.op_Inequality(System.Byte[],StackExchange.Redis.RedisKey)">
  9400. <summary>
  9401. Indicate whether two keys are not equal
  9402. </summary>
  9403. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9404. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9405. </member>
  9406. <member name="M:StackExchange.Redis.RedisKey.op_Inequality(StackExchange.Redis.RedisKey,System.String)">
  9407. <summary>
  9408. Indicate whether two keys are not equal
  9409. </summary>
  9410. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9411. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9412. </member>
  9413. <member name="M:StackExchange.Redis.RedisKey.op_Inequality(StackExchange.Redis.RedisKey,System.Byte[])">
  9414. <summary>
  9415. Indicate whether two keys are not equal
  9416. </summary>
  9417. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9418. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9419. </member>
  9420. <member name="M:StackExchange.Redis.RedisKey.op_Equality(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey)">
  9421. <summary>
  9422. Indicate whether two keys are equal
  9423. </summary>
  9424. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9425. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9426. </member>
  9427. <member name="M:StackExchange.Redis.RedisKey.op_Equality(System.String,StackExchange.Redis.RedisKey)">
  9428. <summary>
  9429. Indicate whether two keys are equal
  9430. </summary>
  9431. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9432. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9433. </member>
  9434. <member name="M:StackExchange.Redis.RedisKey.op_Equality(System.Byte[],StackExchange.Redis.RedisKey)">
  9435. <summary>
  9436. Indicate whether two keys are equal
  9437. </summary>
  9438. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9439. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9440. </member>
  9441. <member name="M:StackExchange.Redis.RedisKey.op_Equality(StackExchange.Redis.RedisKey,System.String)">
  9442. <summary>
  9443. Indicate whether two keys are equal
  9444. </summary>
  9445. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9446. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9447. </member>
  9448. <member name="M:StackExchange.Redis.RedisKey.op_Equality(StackExchange.Redis.RedisKey,System.Byte[])">
  9449. <summary>
  9450. Indicate whether two keys are equal
  9451. </summary>
  9452. <param name="x">The first <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9453. <param name="y">The second <see cref="T:StackExchange.Redis.RedisChannel"/> to compare.</param>
  9454. </member>
  9455. <member name="M:StackExchange.Redis.RedisKey.Equals(System.Object)">
  9456. <summary>
  9457. See Object.Equals
  9458. </summary>
  9459. <param name="obj">The <see cref="T:StackExchange.Redis.RedisKey"/> to compare to.</param>
  9460. </member>
  9461. <member name="M:StackExchange.Redis.RedisKey.Equals(StackExchange.Redis.RedisKey)">
  9462. <summary>
  9463. Indicate whether two keys are equal
  9464. </summary>
  9465. <param name="other">The <see cref="T:StackExchange.Redis.RedisKey"/> to compare to.</param>
  9466. </member>
  9467. <member name="M:StackExchange.Redis.RedisKey.GetHashCode">
  9468. <summary>
  9469. See Object.GetHashCode
  9470. </summary>
  9471. </member>
  9472. <member name="M:StackExchange.Redis.RedisKey.ToString">
  9473. <summary>
  9474. Obtains a string representation of the key
  9475. </summary>
  9476. </member>
  9477. <member name="M:StackExchange.Redis.RedisKey.op_Implicit(System.String)~StackExchange.Redis.RedisKey">
  9478. <summary>
  9479. Create a <see cref="T:StackExchange.Redis.RedisKey"/> from a <see cref="T:System.String"/>.
  9480. </summary>
  9481. <param name="key">The string to get a key from.</param>
  9482. </member>
  9483. <member name="M:StackExchange.Redis.RedisKey.op_Implicit(System.Byte[])~StackExchange.Redis.RedisKey">
  9484. <summary>
  9485. Create a <see cref="T:StackExchange.Redis.RedisKey"/> from a <see cref="T:byte[]"/>.
  9486. </summary>
  9487. <param name="key">The byte array to get a key from.</param>
  9488. </member>
  9489. <member name="M:StackExchange.Redis.RedisKey.op_Implicit(StackExchange.Redis.RedisKey)~System.Byte[]">
  9490. <summary>
  9491. Obtain the <see cref="T:StackExchange.Redis.RedisKey"/> as a <see cref="T:byte[]"/>.
  9492. </summary>
  9493. <param name="key">The key to get a byte array for.</param>
  9494. </member>
  9495. <member name="M:StackExchange.Redis.RedisKey.op_Implicit(StackExchange.Redis.RedisKey)~System.String">
  9496. <summary>
  9497. Obtain the key as a <see cref="T:System.String"/>.
  9498. </summary>
  9499. <param name="key">The key to get a string for.</param>
  9500. </member>
  9501. <member name="M:StackExchange.Redis.RedisKey.op_Addition(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisKey)">
  9502. <summary>
  9503. Concatenate two keys
  9504. </summary>
  9505. <param name="x">The first <see cref="T:StackExchange.Redis.RedisKey"/> to add.</param>
  9506. <param name="y">The second <see cref="T:StackExchange.Redis.RedisKey"/> to add.</param>
  9507. </member>
  9508. <member name="M:StackExchange.Redis.RedisKey.Prepend(StackExchange.Redis.RedisKey)">
  9509. <summary>
  9510. <para>Prepends p to this RedisKey, returning a new RedisKey.</para>
  9511. <para>
  9512. Avoids some allocations if possible, repeated Prepend/Appends make
  9513. it less possible.
  9514. </para>
  9515. </summary>
  9516. <param name="prefix">The prefix to prepend.</param>
  9517. </member>
  9518. <member name="M:StackExchange.Redis.RedisKey.Append(StackExchange.Redis.RedisKey)">
  9519. <summary>
  9520. <para>Appends p to this RedisKey, returning a new RedisKey.</para>
  9521. <para>
  9522. Avoids some allocations if possible, repeated Prepend/Appends make
  9523. it less possible.
  9524. </para>
  9525. </summary>
  9526. <param name="suffix">The suffix to append.</param>
  9527. </member>
  9528. <member name="T:StackExchange.Redis.RedisResult">
  9529. <summary>
  9530. Represents a general-purpose result from redis, that may be cast into various anticipated types
  9531. </summary>
  9532. </member>
  9533. <member name="M:StackExchange.Redis.RedisResult.Create(StackExchange.Redis.RedisValue,System.Nullable{StackExchange.Redis.ResultType})">
  9534. <summary>
  9535. Create a new RedisResult representing a single value.
  9536. </summary>
  9537. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to create a result from.</param>
  9538. <param name="resultType">The type of result being represented</param>
  9539. <returns> new <see cref="T:StackExchange.Redis.RedisResult"/>.</returns>
  9540. </member>
  9541. <member name="M:StackExchange.Redis.RedisResult.Create(StackExchange.Redis.RedisValue[])">
  9542. <summary>
  9543. Create a new RedisResult representing an array of values.
  9544. </summary>
  9545. <param name="values">The <see cref="T:StackExchange.Redis.RedisValue"/>s to create a result from.</param>
  9546. <returns> new <see cref="T:StackExchange.Redis.RedisResult"/>.</returns>
  9547. </member>
  9548. <member name="M:StackExchange.Redis.RedisResult.Create(StackExchange.Redis.RedisResult[])">
  9549. <summary>
  9550. Create a new RedisResult representing an array of values.
  9551. </summary>
  9552. <param name="values">The <see cref="T:StackExchange.Redis.RedisResult"/>s to create a result from.</param>
  9553. <returns> new <see cref="T:StackExchange.Redis.RedisResult"/>.</returns>
  9554. </member>
  9555. <member name="P:StackExchange.Redis.RedisResult.EmptyArray">
  9556. <summary>
  9557. An empty array result
  9558. </summary>
  9559. </member>
  9560. <member name="P:StackExchange.Redis.RedisResult.NullArray">
  9561. <summary>
  9562. A null array result
  9563. </summary>
  9564. </member>
  9565. <member name="P:StackExchange.Redis.RedisResult.Type">
  9566. <summary>
  9567. Indicate the type of result that was received from redis
  9568. </summary>
  9569. </member>
  9570. <member name="P:StackExchange.Redis.RedisResult.IsNull">
  9571. <summary>
  9572. Indicates whether this result was a null result
  9573. </summary>
  9574. </member>
  9575. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.String">
  9576. <summary>
  9577. Interprets the result as a <see cref="T:System.String"/>.
  9578. </summary>
  9579. <param name="result">The result to convert to a <see cref="T:System.String"/>.</param>
  9580. </member>
  9581. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Byte[]">
  9582. <summary>
  9583. Interprets the result as a <see cref="T:byte[]"/>.
  9584. </summary>
  9585. <param name="result">The result to convert to a <see cref="T:byte[]"/>.</param>
  9586. </member>
  9587. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Double">
  9588. <summary>
  9589. Interprets the result as a <see cref="T:System.Double"/>.
  9590. </summary>
  9591. <param name="result">The result to convert to a <see cref="T:System.Double"/>.</param>
  9592. </member>
  9593. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Int64">
  9594. <summary>
  9595. Interprets the result as an <see cref="T:System.Int64"/>.
  9596. </summary>
  9597. <param name="result">The result to convert to a <see cref="T:System.Int64"/>.</param>
  9598. </member>
  9599. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.UInt64">
  9600. <summary>
  9601. Interprets the result as an <see cref="T:System.UInt64"/>.
  9602. </summary>
  9603. <param name="result">The result to convert to a <see cref="T:System.UInt64"/>.</param>
  9604. </member>
  9605. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Int32">
  9606. <summary>
  9607. Interprets the result as an <see cref="T:System.Int32"/>.
  9608. </summary>
  9609. <param name="result">The result to convert to a <see cref="T:System.Int32"/>.</param>
  9610. </member>
  9611. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Boolean">
  9612. <summary>
  9613. Interprets the result as a <see cref="T:System.Boolean"/>
  9614. </summary>
  9615. <param name="result">The result to convert to a <see cref="T:System.Boolean"/>.</param>
  9616. </member>
  9617. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~StackExchange.Redis.RedisValue">
  9618. <summary>
  9619. Interprets the result as a <see cref="T:StackExchange.Redis.RedisValue"/>.
  9620. </summary>
  9621. <param name="result">The result to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9622. </member>
  9623. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~StackExchange.Redis.RedisKey">
  9624. <summary>
  9625. Interprets the result as a <see cref="T:StackExchange.Redis.RedisKey"/>.
  9626. </summary>
  9627. <param name="result">The result to convert to a <see cref="T:StackExchange.Redis.RedisKey"/>.</param>
  9628. </member>
  9629. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Nullable{System.Double}">
  9630. <summary>
  9631. Interprets the result as a <see cref="T:Nullable{double}"/>.
  9632. </summary>
  9633. <param name="result">The result to convert to a <see cref="T:Nullable{double}"/>.</param>
  9634. </member>
  9635. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Nullable{System.Int64}">
  9636. <summary>
  9637. Interprets the result as a <see cref="T:Nullable{long}"/>.
  9638. </summary>
  9639. <param name="result">The result to convert to a <see cref="T:Nullable{long}"/>.</param>
  9640. </member>
  9641. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Nullable{System.UInt64}">
  9642. <summary>
  9643. Interprets the result as a <see cref="T:Nullable{ulong}"/>.
  9644. </summary>
  9645. <param name="result">The result to convert to a <see cref="T:Nullable{ulong}"/>.</param>
  9646. </member>
  9647. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Nullable{System.Int32}">
  9648. <summary>
  9649. Interprets the result as a <see cref="T:Nullable{int}"/>.
  9650. </summary>
  9651. <param name="result">The result to convert to a <see cref="T:Nullable{int}"/>.</param>
  9652. </member>
  9653. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Nullable{System.Boolean}">
  9654. <summary>
  9655. Interprets the result as a <see cref="T:Nullable{bool}"/>.
  9656. </summary>
  9657. <param name="result">The result to convert to a <see cref="T:Nullable{bool}"/>.</param>
  9658. </member>
  9659. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.String[]">
  9660. <summary>
  9661. Interprets the result as a <see cref="T:string[]"/>.
  9662. </summary>
  9663. <param name="result">The result to convert to a <see cref="T:string[]"/>.</param>
  9664. </member>
  9665. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Byte[][]">
  9666. <summary>
  9667. Interprets the result as a <see cref="T:byte[][]"/>.
  9668. </summary>
  9669. <param name="result">The result to convert to a <see cref="T:byte[][]"/>.</param>
  9670. </member>
  9671. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Double[]">
  9672. <summary>
  9673. Interprets the result as a <see cref="T:double[]"/>.
  9674. </summary>
  9675. <param name="result">The result to convert to a <see cref="T:double[]"/>.</param>
  9676. </member>
  9677. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Int64[]">
  9678. <summary>
  9679. Interprets the result as a <see cref="T:long[]"/>.
  9680. </summary>
  9681. <param name="result">The result to convert to a <see cref="T:long[]"/>.</param>
  9682. </member>
  9683. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.UInt64[]">
  9684. <summary>
  9685. Interprets the result as a <see cref="T:ulong[]"/>.
  9686. </summary>
  9687. <param name="result">The result to convert to a <see cref="T:ulong[]"/>.</param>
  9688. </member>
  9689. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Int32[]">
  9690. <summary>
  9691. Interprets the result as a <see cref="T:int[]"/>.
  9692. </summary>
  9693. <param name="result">The result to convert to a <see cref="T:int[]"/>.</param>
  9694. </member>
  9695. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~System.Boolean[]">
  9696. <summary>
  9697. Interprets the result as a <see cref="T:bool[]"/>.
  9698. </summary>
  9699. <param name="result">The result to convert to a <see cref="T:bool[]"/>.</param>
  9700. </member>
  9701. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~StackExchange.Redis.RedisValue[]">
  9702. <summary>
  9703. Interprets the result as a <see cref="T:RedisValue[]"/>.
  9704. </summary>
  9705. <param name="result">The result to convert to a <see cref="T:RedisValue[]"/>.</param>
  9706. </member>
  9707. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~StackExchange.Redis.RedisKey[]">
  9708. <summary>
  9709. Interprets the result as a <see cref="T:RedisKey[]"/>.
  9710. </summary>
  9711. <param name="result">The result to convert to a <see cref="T:RedisKey[]"/>.</param>
  9712. </member>
  9713. <member name="M:StackExchange.Redis.RedisResult.op_Explicit(StackExchange.Redis.RedisResult)~StackExchange.Redis.RedisResult[]">
  9714. <summary>
  9715. Interprets the result as a <see cref="T:RedisResult[]"/>.
  9716. </summary>
  9717. <param name="result">The result to convert to a <see cref="T:RedisResult[]"/>.</param>
  9718. </member>
  9719. <member name="M:StackExchange.Redis.RedisResult.ToDictionary(System.Collections.Generic.IEqualityComparer{System.String})">
  9720. <summary>
  9721. Interprets a multi-bulk result with successive key/name values as a dictionary keyed by name
  9722. </summary>
  9723. <param name="comparer">The key comparator to use, or <see cref="P:System.StringComparer.InvariantCultureIgnoreCase"/> by default</param>
  9724. </member>
  9725. <member name="M:StackExchange.Redis.RedisResult.Create(StackExchange.Redis.RedisKey)">
  9726. <summary>
  9727. Create a <see cref="T:StackExchange.Redis.RedisResult"/> from a key.
  9728. </summary>
  9729. <param name="key">The <see cref="T:StackExchange.Redis.RedisKey"/> to create a <see cref="T:StackExchange.Redis.RedisResult"/> from.</param>
  9730. </member>
  9731. <member name="M:StackExchange.Redis.RedisResult.Create(StackExchange.Redis.RedisChannel)">
  9732. <summary>
  9733. Create a <see cref="T:StackExchange.Redis.RedisResult"/> from a channel.
  9734. </summary>
  9735. <param name="channel">The <see cref="T:StackExchange.Redis.RedisChannel"/> to create a <see cref="T:StackExchange.Redis.RedisResult"/> from.</param>
  9736. </member>
  9737. <member name="M:StackExchange.Redis.RedisServer.SimulateConnectionFailure">
  9738. <summary>
  9739. For testing only
  9740. </summary>
  9741. </member>
  9742. <member name="T:StackExchange.Redis.RedisStream">
  9743. <summary>
  9744. Describes a Redis Stream with an associated array of entries.
  9745. </summary>
  9746. </member>
  9747. <member name="P:StackExchange.Redis.RedisStream.Key">
  9748. <summary>
  9749. The key for the stream.
  9750. </summary>
  9751. </member>
  9752. <member name="P:StackExchange.Redis.RedisStream.Entries">
  9753. <summary>
  9754. An arry of entries contained within the stream.
  9755. </summary>
  9756. </member>
  9757. <member name="T:StackExchange.Redis.RedisValue">
  9758. <summary>
  9759. Represents values that can be stored in redis
  9760. </summary>
  9761. </member>
  9762. <member name="M:StackExchange.Redis.RedisValue.#ctor(System.String)">
  9763. <summary>
  9764. Creates a <see cref="T:StackExchange.Redis.RedisValue"/> from a string.
  9765. </summary>
  9766. </member>
  9767. <member name="M:StackExchange.Redis.RedisValue.Box">
  9768. <summary>
  9769. Obtain this value as an object - to be used alongside Unbox
  9770. </summary>
  9771. </member>
  9772. <member name="M:StackExchange.Redis.RedisValue.Unbox(System.Object)">
  9773. <summary>
  9774. Parse this object as a value - to be used alongside Box.
  9775. </summary>
  9776. <param name="value">The value to unbox.</param>
  9777. </member>
  9778. <member name="P:StackExchange.Redis.RedisValue.EmptyString">
  9779. <summary>
  9780. Represents the string <c>""</c>
  9781. </summary>
  9782. </member>
  9783. <member name="P:StackExchange.Redis.RedisValue.Null">
  9784. <summary>
  9785. A null value
  9786. </summary>
  9787. </member>
  9788. <member name="P:StackExchange.Redis.RedisValue.IsInteger">
  9789. <summary>
  9790. Indicates whether the value is a primitive integer (signed or unsigned)
  9791. </summary>
  9792. </member>
  9793. <member name="P:StackExchange.Redis.RedisValue.IsNull">
  9794. <summary>
  9795. Indicates whether the value should be considered a null value
  9796. </summary>
  9797. </member>
  9798. <member name="P:StackExchange.Redis.RedisValue.IsNullOrEmpty">
  9799. <summary>
  9800. Indicates whether the value is either null or a zero-length value
  9801. </summary>
  9802. </member>
  9803. <member name="P:StackExchange.Redis.RedisValue.HasValue">
  9804. <summary>
  9805. Indicates whether the value is greater than zero-length or has an integer value
  9806. </summary>
  9807. </member>
  9808. <member name="M:StackExchange.Redis.RedisValue.op_Inequality(StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue)">
  9809. <summary>
  9810. Indicates whether two RedisValue values are equivalent
  9811. </summary>
  9812. <param name="x">The first <see cref="T:StackExchange.Redis.RedisValue"/> to compare.</param>
  9813. <param name="y">The second <see cref="T:StackExchange.Redis.RedisValue"/> to compare.</param>
  9814. </member>
  9815. <member name="M:StackExchange.Redis.RedisValue.op_Equality(StackExchange.Redis.RedisValue,StackExchange.Redis.RedisValue)">
  9816. <summary>
  9817. Indicates whether two RedisValue values are equivalent
  9818. </summary>
  9819. <param name="x">The first <see cref="T:StackExchange.Redis.RedisValue"/> to compare.</param>
  9820. <param name="y">The second <see cref="T:StackExchange.Redis.RedisValue"/> to compare.</param>
  9821. </member>
  9822. <member name="M:StackExchange.Redis.RedisValue.Equals(System.Object)">
  9823. <summary>
  9824. See Object.Equals()
  9825. </summary>
  9826. <param name="obj">The other <see cref="T:StackExchange.Redis.RedisValue"/> to compare.</param>
  9827. </member>
  9828. <member name="M:StackExchange.Redis.RedisValue.Equals(StackExchange.Redis.RedisValue)">
  9829. <summary>
  9830. Indicates whether two RedisValue values are equivalent
  9831. </summary>
  9832. <param name="other">The <see cref="T:StackExchange.Redis.RedisValue"/> to compare to.</param>
  9833. </member>
  9834. <member name="M:StackExchange.Redis.RedisValue.GetHashCode">
  9835. <summary>
  9836. See Object.GetHashCode()
  9837. </summary>
  9838. </member>
  9839. <member name="M:StackExchange.Redis.RedisValue.ToString">
  9840. <summary>
  9841. Returns a string representation of the value
  9842. </summary>
  9843. </member>
  9844. <member name="M:StackExchange.Redis.RedisValue.Length">
  9845. <summary>
  9846. Get the size of this value in bytes
  9847. </summary>
  9848. </member>
  9849. <member name="M:StackExchange.Redis.RedisValue.CompareTo(StackExchange.Redis.RedisValue)">
  9850. <summary>
  9851. Compare against a RedisValue for relative order
  9852. </summary>
  9853. <param name="other">The other <see cref="T:StackExchange.Redis.RedisValue"/> to compare.</param>
  9854. </member>
  9855. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Int32)~StackExchange.Redis.RedisValue">
  9856. <summary>
  9857. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:System.Int32"/>.
  9858. </summary>
  9859. <param name="value">The <see cref="T:System.Int32"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9860. </member>
  9861. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Nullable{System.Int32})~StackExchange.Redis.RedisValue">
  9862. <summary>
  9863. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:Nullable{int}"/>.
  9864. </summary>
  9865. <param name="value">The <see cref="T:Nullable{int}"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9866. </member>
  9867. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Int64)~StackExchange.Redis.RedisValue">
  9868. <summary>
  9869. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:System.Int64"/>.
  9870. </summary>
  9871. <param name="value">The <see cref="T:System.Int64"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9872. </member>
  9873. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Nullable{System.Int64})~StackExchange.Redis.RedisValue">
  9874. <summary>
  9875. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:Nullable{long}"/>.
  9876. </summary>
  9877. <param name="value">The <see cref="T:Nullable{long}"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9878. </member>
  9879. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.UInt64)~StackExchange.Redis.RedisValue">
  9880. <summary>
  9881. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:System.UInt64"/>.
  9882. </summary>
  9883. <param name="value">The <see cref="T:System.UInt64"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9884. </member>
  9885. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Nullable{System.UInt64})~StackExchange.Redis.RedisValue">
  9886. <summary>
  9887. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:Nullable{ulong}"/>.
  9888. </summary>
  9889. <param name="value">The <see cref="T:Nullable{ulong}"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9890. </member>
  9891. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.UInt32)~StackExchange.Redis.RedisValue">
  9892. <summary>
  9893. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:System.UInt32"/>.
  9894. </summary>
  9895. <param name="value">The <see cref="T:System.UInt32"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9896. </member>
  9897. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Nullable{System.UInt32})~StackExchange.Redis.RedisValue">
  9898. <summary>
  9899. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:Nullable{uint}"/>.
  9900. </summary>
  9901. <param name="value">The <see cref="T:Nullable{uint}"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9902. </member>
  9903. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Double)~StackExchange.Redis.RedisValue">
  9904. <summary>
  9905. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:System.Double"/>.
  9906. </summary>
  9907. <param name="value">The <see cref="T:System.Double"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9908. </member>
  9909. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Nullable{System.Double})~StackExchange.Redis.RedisValue">
  9910. <summary>
  9911. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:Nullable{double}"/>.
  9912. </summary>
  9913. <param name="value">The <see cref="T:Nullable{double}"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9914. </member>
  9915. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.ReadOnlyMemory{System.Byte})~StackExchange.Redis.RedisValue">
  9916. <summary>
  9917. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from a <see cref="T:ReadOnlyMemory{byte}"/>.
  9918. </summary>
  9919. <param name="value">The <see cref="T:ReadOnlyMemory{byte}"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9920. </member>
  9921. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Memory{System.Byte})~StackExchange.Redis.RedisValue">
  9922. <summary>
  9923. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from a <see cref="T:Memory{byte}"/>.
  9924. </summary>
  9925. <param name="value">The <see cref="T:Memory{byte}"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9926. </member>
  9927. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.String)~StackExchange.Redis.RedisValue">
  9928. <summary>
  9929. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:System.String"/>.
  9930. </summary>
  9931. <param name="value">The <see cref="T:System.String"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9932. </member>
  9933. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Byte[])~StackExchange.Redis.RedisValue">
  9934. <summary>
  9935. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:byte[]"/>.
  9936. </summary>
  9937. <param name="value">The <see cref="T:byte[]"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9938. </member>
  9939. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Boolean)~StackExchange.Redis.RedisValue">
  9940. <summary>
  9941. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:System.Boolean"/>.
  9942. </summary>
  9943. <param name="value">The <see cref="T:System.Boolean"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9944. </member>
  9945. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(System.Nullable{System.Boolean})~StackExchange.Redis.RedisValue">
  9946. <summary>
  9947. Creates a new <see cref="T:StackExchange.Redis.RedisValue"/> from an <see cref="T:Nullable{bool}"/>.
  9948. </summary>
  9949. <param name="value">The <see cref="T:Nullable{bool}"/> to convert to a <see cref="T:StackExchange.Redis.RedisValue"/>.</param>
  9950. </member>
  9951. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Boolean">
  9952. <summary>
  9953. Converts a <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:System.Boolean"/>.
  9954. </summary>
  9955. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  9956. </member>
  9957. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Int32">
  9958. <summary>
  9959. Converts a <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:System.Int32"/>.
  9960. </summary>
  9961. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  9962. </member>
  9963. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Int64">
  9964. <summary>
  9965. Converts a <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:System.Int64"/>.
  9966. </summary>
  9967. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  9968. </member>
  9969. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.UInt32">
  9970. <summary>
  9971. Converts a <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:System.UInt32"/>.
  9972. </summary>
  9973. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  9974. </member>
  9975. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.UInt64">
  9976. <summary>
  9977. Converts a <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:System.Int64"/>.
  9978. </summary>
  9979. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  9980. </member>
  9981. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Double">
  9982. <summary>
  9983. Converts a <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:System.Double"/>.
  9984. </summary>
  9985. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  9986. </member>
  9987. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Decimal">
  9988. <summary>
  9989. Converts a <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:System.Decimal"/>.
  9990. </summary>
  9991. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  9992. </member>
  9993. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Single">
  9994. <summary>
  9995. Converts a <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:System.Single"/>.
  9996. </summary>
  9997. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  9998. </member>
  9999. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Nullable{System.Double}">
  10000. <summary>
  10001. Converts the <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:Nullable{double}"/>.
  10002. </summary>
  10003. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  10004. </member>
  10005. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Nullable{System.Single}">
  10006. <summary>
  10007. Converts the <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:Nullable{float}"/>.
  10008. </summary>
  10009. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  10010. </member>
  10011. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Nullable{System.Decimal}">
  10012. <summary>
  10013. Converts the <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:Nullable{decimal}"/>.
  10014. </summary>
  10015. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  10016. </member>
  10017. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Nullable{System.Int64}">
  10018. <summary>
  10019. Converts the <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:Nullable{long}"/>.
  10020. </summary>
  10021. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  10022. </member>
  10023. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Nullable{System.UInt64}">
  10024. <summary>
  10025. Converts the <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:Nullable{ulong}"/>.
  10026. </summary>
  10027. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  10028. </member>
  10029. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Nullable{System.Int32}">
  10030. <summary>
  10031. Converts the <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:Nullable{int}"/>.
  10032. </summary>
  10033. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  10034. </member>
  10035. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Nullable{System.UInt32}">
  10036. <summary>
  10037. Converts the <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:Nullable{uint}"/>.
  10038. </summary>
  10039. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  10040. </member>
  10041. <member name="M:StackExchange.Redis.RedisValue.op_Explicit(StackExchange.Redis.RedisValue)~System.Nullable{System.Boolean}">
  10042. <summary>
  10043. Converts the <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:Nullable{bool}"/>.
  10044. </summary>
  10045. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  10046. </member>
  10047. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(StackExchange.Redis.RedisValue)~System.String">
  10048. <summary>
  10049. Converts a <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:System.String"/>.
  10050. </summary>
  10051. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  10052. </member>
  10053. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(StackExchange.Redis.RedisValue)~System.Byte[]">
  10054. <summary>
  10055. Converts a <see cref="T:StackExchange.Redis.RedisValue"/> to a <see cref="T:byte[]"/>.
  10056. </summary>
  10057. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  10058. </member>
  10059. <member name="M:StackExchange.Redis.RedisValue.op_Implicit(StackExchange.Redis.RedisValue)~System.ReadOnlyMemory{System.Byte}">
  10060. <summary>
  10061. Converts a <see cref="T:StackExchange.Redis.RedisValue"/> to a ReadOnlyMemory
  10062. </summary>
  10063. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to convert.</param>
  10064. </member>
  10065. <member name="M:StackExchange.Redis.RedisValue.Simplify">
  10066. <summary>
  10067. Attempt to reduce to canonical terms ahead of time; parses integers, floats, etc
  10068. Note: we don't use this aggressively ahead of time, a: because of extra CPU,
  10069. but more importantly b: because it can change values - for example, if they start
  10070. with "123.000", it should **stay** as "123.000", not become 123L; this could be
  10071. a hash key or similar - we don't want to break it; RedisConnection uses
  10072. the storage type, not the "does it look like a long?" - for this reason
  10073. </summary>
  10074. </member>
  10075. <member name="M:StackExchange.Redis.RedisValue.TryParse(System.Int64@)">
  10076. <summary>
  10077. <para>Convert to a signed long if possible, returning true.</para>
  10078. <para>Returns false otherwise.</para>
  10079. </summary>
  10080. <param name="val">The <see cref="T:System.Int64"/> value, if conversion was possible.</param>
  10081. </member>
  10082. <member name="M:StackExchange.Redis.RedisValue.TryParse(System.Int32@)">
  10083. <summary>
  10084. <para>Convert to a int if possible, returning true.</para>
  10085. <para>Returns false otherwise.</para>
  10086. </summary>
  10087. <param name="val">The <see cref="T:System.Int32"/> value, if conversion was possible.</param>
  10088. </member>
  10089. <member name="M:StackExchange.Redis.RedisValue.TryParse(System.Double@)">
  10090. <summary>
  10091. <para>Convert to a double if possible, returning true.</para>
  10092. <para>Returns false otherwise.</para>
  10093. </summary>
  10094. <param name="val">The <see cref="T:System.Double"/> value, if conversion was possible.</param>
  10095. </member>
  10096. <member name="M:StackExchange.Redis.RedisValue.CreateFrom(System.IO.MemoryStream)">
  10097. <summary>
  10098. Create a RedisValue from a MemoryStream; it will *attempt* to use the internal buffer
  10099. directly, but if this isn't possibly it will fallback to ToArray
  10100. </summary>
  10101. <param name="stream">The <see cref="T:System.IO.MemoryStream"/> to create a value from.</param>
  10102. </member>
  10103. <member name="M:StackExchange.Redis.RedisValue.StartsWith(StackExchange.Redis.RedisValue)">
  10104. <summary>
  10105. Indicates whether the current value has the supplied value as a prefix.
  10106. </summary>
  10107. <param name="value">The <see cref="T:StackExchange.Redis.RedisValue"/> to check.</param>
  10108. </member>
  10109. <member name="T:StackExchange.Redis.RedisValueWithExpiry">
  10110. <summary>
  10111. Describes a value/expiry pair
  10112. </summary>
  10113. </member>
  10114. <member name="P:StackExchange.Redis.RedisValueWithExpiry.Expiry">
  10115. <summary>
  10116. The expiry of this record
  10117. </summary>
  10118. </member>
  10119. <member name="P:StackExchange.Redis.RedisValueWithExpiry.Value">
  10120. <summary>
  10121. The value of this record
  10122. </summary>
  10123. </member>
  10124. <member name="M:StackExchange.Redis.ScriptParameterMapper.PrepareScript(System.String)">
  10125. <summary>
  10126. Turns a script with @namedParameters into a LuaScript that can be executed
  10127. against a given IDatabase(Async) object
  10128. </summary>
  10129. <param name="script">The script to prepare.</param>
  10130. </member>
  10131. <member name="M:StackExchange.Redis.ScriptParameterMapper.IsValidParameterHash(System.Type,StackExchange.Redis.LuaScript,System.String@,System.String@)">
  10132. <summary>
  10133. Determines whether or not the given type can be used to provide parameters for the given LuaScript.
  10134. </summary>
  10135. <param name="t">The type of the parameter.</param>
  10136. <param name="script">The script to match against.</param>
  10137. <param name="missingMember">The first missing member, if any.</param>
  10138. <param name="badTypeMember">The first type mismatched member, if any.</param>
  10139. </member>
  10140. <member name="M:StackExchange.Redis.ScriptParameterMapper.GetParameterExtractor(System.Type,StackExchange.Redis.LuaScript)">
  10141. <summary>
  10142. <para>Creates a Func that extracts parameters from the given type for use by a LuaScript.</para>
  10143. <para>
  10144. Members that are RedisKey's get extracted to be passed in as keys to redis; all members that
  10145. appear in the script get extracted as RedisValue arguments to be sent up as args.
  10146. </para>
  10147. <para>
  10148. We send all values as arguments so we don't have to prepare the same script for different parameter
  10149. types.
  10150. </para>
  10151. <para>
  10152. The created Func takes a RedisKey, which will be prefixed to all keys (and arguments of type RedisKey) for
  10153. keyspace isolation.
  10154. </para>
  10155. </summary>
  10156. <param name="t">The type to extract for.</param>
  10157. <param name="script">The script to extract for.</param>
  10158. </member>
  10159. <member name="T:StackExchange.Redis.ServerCounters">
  10160. <summary>
  10161. Illustrates the queues associates with this server
  10162. </summary>
  10163. </member>
  10164. <member name="M:StackExchange.Redis.ServerCounters.#ctor(System.Net.EndPoint)">
  10165. <summary>
  10166. Creates a <see cref="T:StackExchange.Redis.ServerCounters"/> instance for an <see cref="P:StackExchange.Redis.ServerCounters.EndPoint"/>.
  10167. </summary>
  10168. <param name="endpoint">The <see cref="P:StackExchange.Redis.ServerCounters.EndPoint"/> to create counters for.</param>
  10169. </member>
  10170. <member name="P:StackExchange.Redis.ServerCounters.EndPoint">
  10171. <summary>
  10172. The endpoint to which this data relates (this can be null if the data represents all servers)
  10173. </summary>
  10174. </member>
  10175. <member name="P:StackExchange.Redis.ServerCounters.Interactive">
  10176. <summary>
  10177. Counters associated with the interactive (non pub-sub) connection
  10178. </summary>
  10179. </member>
  10180. <member name="P:StackExchange.Redis.ServerCounters.Other">
  10181. <summary>
  10182. Counters associated with other ambient activity
  10183. </summary>
  10184. </member>
  10185. <member name="P:StackExchange.Redis.ServerCounters.Subscription">
  10186. <summary>
  10187. Counters associated with the subscription (pub-sub) connection
  10188. </summary>
  10189. </member>
  10190. <member name="P:StackExchange.Redis.ServerCounters.TotalOutstanding">
  10191. <summary>
  10192. Indicates the total number of outstanding items against this server
  10193. </summary>
  10194. </member>
  10195. <member name="M:StackExchange.Redis.ServerCounters.ToString">
  10196. <summary>
  10197. See Object.ToString();
  10198. </summary>
  10199. </member>
  10200. <member name="M:StackExchange.Redis.ServerEndPoint.SimulateConnectionFailure">
  10201. <summary>
  10202. For testing only
  10203. </summary>
  10204. </member>
  10205. <member name="M:StackExchange.Redis.ServerSelectionStrategy.HashSlot(StackExchange.Redis.RedisKey@)">
  10206. <summary>
  10207. Computes the hash-slot that would be used by the given key
  10208. </summary>
  10209. <param name="key">The <see cref="T:StackExchange.Redis.RedisKey"/> to determine a slot ID for.</param>
  10210. </member>
  10211. <member name="T:StackExchange.Redis.SocketManager">
  10212. <summary>
  10213. A SocketManager monitors multiple sockets for availability of data; this is done using
  10214. the Socket.Select API and a dedicated reader-thread, which allows for fast responses
  10215. even when the system is under ambient load.
  10216. </summary>
  10217. </member>
  10218. <member name="P:StackExchange.Redis.SocketManager.Name">
  10219. <summary>
  10220. Gets the name of this SocketManager instance
  10221. </summary>
  10222. </member>
  10223. <member name="M:StackExchange.Redis.SocketManager.#ctor(System.String)">
  10224. <summary>
  10225. Creates a new <see cref="T:StackExchange.Redis.SocketManager"/> instance
  10226. </summary>
  10227. <param name="name">The name for this <see cref="T:StackExchange.Redis.SocketManager"/>.</param>
  10228. </member>
  10229. <member name="M:StackExchange.Redis.SocketManager.#ctor(System.String,System.Boolean)">
  10230. <summary>
  10231. Creates a new <see cref="T:StackExchange.Redis.SocketManager"/> instance
  10232. </summary>
  10233. <param name="name">The name for this <see cref="T:StackExchange.Redis.SocketManager"/>.</param>
  10234. <param name="useHighPrioritySocketThreads">Whether this <see cref="T:StackExchange.Redis.SocketManager"/> should use high priority sockets.</param>
  10235. </member>
  10236. <member name="M:StackExchange.Redis.SocketManager.#ctor(System.String,System.Int32,System.Boolean)">
  10237. <summary>
  10238. Creates a new (optionally named) <see cref="T:StackExchange.Redis.SocketManager"/> instance
  10239. </summary>
  10240. <param name="name">The name for this <see cref="T:StackExchange.Redis.SocketManager"/>.</param>
  10241. <param name="workerCount">the number of dedicated workers for this <see cref="T:StackExchange.Redis.SocketManager"/>.</param>
  10242. <param name="useHighPrioritySocketThreads">Whether this <see cref="T:StackExchange.Redis.SocketManager"/> should use high priority sockets.</param>
  10243. </member>
  10244. <member name="T:StackExchange.Redis.SocketManager.SocketManagerOptions">
  10245. <summary>
  10246. Additional options for configuring the socket manager
  10247. </summary>
  10248. </member>
  10249. <member name="F:StackExchange.Redis.SocketManager.SocketManagerOptions.None">
  10250. <summary>
  10251. No additional options
  10252. </summary>
  10253. </member>
  10254. <member name="F:StackExchange.Redis.SocketManager.SocketManagerOptions.UseHighPrioritySocketThreads">
  10255. <summary>
  10256. Whether the <see cref="T:StackExchange.Redis.SocketManager"/> should use high priority sockets.
  10257. </summary>
  10258. </member>
  10259. <member name="F:StackExchange.Redis.SocketManager.SocketManagerOptions.UseThreadPool">
  10260. <summary>
  10261. Use the regular thread-pool for all scheduling
  10262. </summary>
  10263. </member>
  10264. <member name="M:StackExchange.Redis.SocketManager.#ctor(System.String,System.Int32,StackExchange.Redis.SocketManager.SocketManagerOptions)">
  10265. <summary>
  10266. Creates a new (optionally named) <see cref="T:StackExchange.Redis.SocketManager"/> instance
  10267. </summary>
  10268. <param name="name">The name for this <see cref="T:StackExchange.Redis.SocketManager"/>.</param>
  10269. <param name="workerCount">the number of dedicated workers for this <see cref="T:StackExchange.Redis.SocketManager"/>.</param>
  10270. <param name="options"></param>
  10271. </member>
  10272. <member name="P:StackExchange.Redis.SocketManager.Shared">
  10273. <summary>
  10274. Default / shared socket manager using a dedicated thread-pool
  10275. </summary>
  10276. </member>
  10277. <member name="P:StackExchange.Redis.SocketManager.ThreadPool">
  10278. <summary>
  10279. Shared socket manager using the main thread-pool
  10280. </summary>
  10281. </member>
  10282. <member name="M:StackExchange.Redis.SocketManager.ToString">
  10283. <summary>Returns a string that represents the current object.</summary>
  10284. <returns>A string that represents the current object.</returns>
  10285. </member>
  10286. <member name="M:StackExchange.Redis.SocketManager.Dispose">
  10287. <summary>
  10288. Releases all resources associated with this instance
  10289. </summary>
  10290. </member>
  10291. <member name="M:StackExchange.Redis.SocketManager.Finalize">
  10292. <summary>
  10293. Releases *appropriate* resources associated with this instance
  10294. </summary>
  10295. </member>
  10296. <member name="T:StackExchange.Redis.SortedSetEntry">
  10297. <summary>
  10298. Describes a sorted-set element with the corresponding value
  10299. </summary>
  10300. </member>
  10301. <member name="M:StackExchange.Redis.SortedSetEntry.#ctor(StackExchange.Redis.RedisValue,System.Double)">
  10302. <summary>
  10303. Initializes a <see cref="T:StackExchange.Redis.SortedSetEntry"/> value.
  10304. </summary>
  10305. <param name="element">The <see cref="T:StackExchange.Redis.RedisValue"/> to get an entry for.</param>
  10306. <param name="score">The redis score for <paramref name="element"/>.</param>
  10307. </member>
  10308. <member name="P:StackExchange.Redis.SortedSetEntry.Element">
  10309. <summary>
  10310. The unique element stored in the sorted set
  10311. </summary>
  10312. </member>
  10313. <member name="P:StackExchange.Redis.SortedSetEntry.Score">
  10314. <summary>
  10315. The score against the element
  10316. </summary>
  10317. </member>
  10318. <member name="P:StackExchange.Redis.SortedSetEntry.Value">
  10319. <summary>
  10320. The score against the element
  10321. </summary>
  10322. </member>
  10323. <member name="P:StackExchange.Redis.SortedSetEntry.Key">
  10324. <summary>
  10325. The unique element stored in the sorted set
  10326. </summary>
  10327. </member>
  10328. <member name="M:StackExchange.Redis.SortedSetEntry.op_Implicit(StackExchange.Redis.SortedSetEntry)~System.Collections.Generic.KeyValuePair{StackExchange.Redis.RedisValue,System.Double}">
  10329. <summary>
  10330. Converts to a key/value pair
  10331. </summary>
  10332. <param name="value">The <see cref="T:StackExchange.Redis.SortedSetEntry"/> to get a <see cref="T:System.Collections.Generic.KeyValuePair`2"/> for.</param>
  10333. </member>
  10334. <member name="M:StackExchange.Redis.SortedSetEntry.op_Implicit(System.Collections.Generic.KeyValuePair{StackExchange.Redis.RedisValue,System.Double})~StackExchange.Redis.SortedSetEntry">
  10335. <summary>
  10336. Converts from a key/value pair
  10337. </summary>
  10338. <param name="value">The <see cref="T:System.Collections.Generic.KeyValuePair`2"/> to get a <see cref="T:StackExchange.Redis.SortedSetEntry"/> for.</param>
  10339. </member>
  10340. <member name="M:StackExchange.Redis.SortedSetEntry.ToString">
  10341. <summary>
  10342. See Object.ToString()
  10343. </summary>
  10344. </member>
  10345. <member name="M:StackExchange.Redis.SortedSetEntry.GetHashCode">
  10346. <summary>
  10347. See Object.GetHashCode()
  10348. </summary>
  10349. </member>
  10350. <member name="M:StackExchange.Redis.SortedSetEntry.Equals(System.Object)">
  10351. <summary>
  10352. Compares two values for equality
  10353. </summary>
  10354. <param name="obj">The <see cref="T:StackExchange.Redis.SortedSetEntry"/> to compare to.</param>
  10355. </member>
  10356. <member name="M:StackExchange.Redis.SortedSetEntry.Equals(StackExchange.Redis.SortedSetEntry)">
  10357. <summary>
  10358. Compares two values for equality
  10359. </summary>
  10360. <param name="other">The <see cref="T:StackExchange.Redis.SortedSetEntry"/> to compare to.</param>
  10361. </member>
  10362. <member name="M:StackExchange.Redis.SortedSetEntry.CompareTo(StackExchange.Redis.SortedSetEntry)">
  10363. <summary>
  10364. Compares two values by score
  10365. </summary>
  10366. <param name="other">The <see cref="T:StackExchange.Redis.SortedSetEntry"/> to compare to.</param>
  10367. </member>
  10368. <member name="M:StackExchange.Redis.SortedSetEntry.CompareTo(System.Object)">
  10369. <summary>
  10370. Compares two values by score
  10371. </summary>
  10372. <param name="obj">The <see cref="T:StackExchange.Redis.SortedSetEntry"/> to compare to.</param>
  10373. </member>
  10374. <member name="M:StackExchange.Redis.SortedSetEntry.op_Equality(StackExchange.Redis.SortedSetEntry,StackExchange.Redis.SortedSetEntry)">
  10375. <summary>
  10376. Compares two values for equality
  10377. </summary>
  10378. <param name="x">The first <see cref="T:StackExchange.Redis.SortedSetEntry"/> to compare.</param>
  10379. <param name="y">The second <see cref="T:StackExchange.Redis.SortedSetEntry"/> to compare.</param>
  10380. </member>
  10381. <member name="M:StackExchange.Redis.SortedSetEntry.op_Inequality(StackExchange.Redis.SortedSetEntry,StackExchange.Redis.SortedSetEntry)">
  10382. <summary>
  10383. Compares two values for non-equality
  10384. </summary>
  10385. <param name="x">The first <see cref="T:StackExchange.Redis.SortedSetEntry"/> to compare.</param>
  10386. <param name="y">The second <see cref="T:StackExchange.Redis.SortedSetEntry"/> to compare.</param>
  10387. </member>
  10388. <member name="T:StackExchange.Redis.StreamConstants">
  10389. <summary>
  10390. Constants representing values used in Redis Stream commands.
  10391. </summary>
  10392. </member>
  10393. <member name="F:StackExchange.Redis.StreamConstants.ApproximateMaxLen">
  10394. <summary>
  10395. The "~" value used with the MAXLEN option.
  10396. </summary>
  10397. </member>
  10398. <member name="F:StackExchange.Redis.StreamConstants.AutoGeneratedId">
  10399. <summary>
  10400. The "*" value used with the XADD command.
  10401. </summary>
  10402. </member>
  10403. <member name="F:StackExchange.Redis.StreamConstants.NewMessages">
  10404. <summary>
  10405. The "$" value used in the XGROUP command. Indicates reading only new messages from the stream.
  10406. </summary>
  10407. </member>
  10408. <member name="F:StackExchange.Redis.StreamConstants.AllMessages">
  10409. <summary>
  10410. The "0" value used in the XGROUP command. Indicates reading all messages from the stream.
  10411. </summary>
  10412. </member>
  10413. <member name="F:StackExchange.Redis.StreamConstants.ReadMinValue">
  10414. <summary>
  10415. The "-" value used in the XRANGE, XREAD, and XREADGROUP commands. Indicates the minimum message ID from the stream.
  10416. </summary>
  10417. </member>
  10418. <member name="F:StackExchange.Redis.StreamConstants.ReadMaxValue">
  10419. <summary>
  10420. The "+" value used in the XRANGE, XREAD, and XREADGROUP commands. Indicates the maximum message ID from the stream.
  10421. </summary>
  10422. </member>
  10423. <member name="F:StackExchange.Redis.StreamConstants.UndeliveredMessages">
  10424. <summary>
  10425. The ">" value used in the XREADGROUP command. Use this to read messages that have not been delivered to a consumer group.
  10426. </summary>
  10427. </member>
  10428. <member name="T:StackExchange.Redis.StreamConsumer">
  10429. <summary>
  10430. Describes a consumer off a Redis Stream.
  10431. </summary>
  10432. </member>
  10433. <member name="P:StackExchange.Redis.StreamConsumer.Name">
  10434. <summary>
  10435. The name of the consumer.
  10436. </summary>
  10437. </member>
  10438. <member name="P:StackExchange.Redis.StreamConsumer.PendingMessageCount">
  10439. <summary>
  10440. The number of messages that have been delivered by not yet acknowledged by the consumer.
  10441. </summary>
  10442. </member>
  10443. <member name="T:StackExchange.Redis.StreamConsumerInfo">
  10444. <summary>
  10445. Describes a consumer within a consumer group, retrieved using the XINFO CONSUMERS command. <see cref="M:StackExchange.Redis.IDatabase.StreamConsumerInfo(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue,StackExchange.Redis.CommandFlags)"/>
  10446. </summary>
  10447. </member>
  10448. <member name="P:StackExchange.Redis.StreamConsumerInfo.Name">
  10449. <summary>
  10450. The name of the consumer.
  10451. </summary>
  10452. </member>
  10453. <member name="P:StackExchange.Redis.StreamConsumerInfo.PendingMessageCount">
  10454. <summary>
  10455. The number of pending messages for the consumer. A pending message is one that has been
  10456. received by the consumer but not yet acknowledged.
  10457. </summary>
  10458. </member>
  10459. <member name="P:StackExchange.Redis.StreamConsumerInfo.IdleTimeInMilliseconds">
  10460. <summary>
  10461. The idle time, if any, for the consumer.
  10462. </summary>
  10463. </member>
  10464. <member name="T:StackExchange.Redis.StreamEntry">
  10465. <summary>
  10466. Describes an entry contained in a Redis Stream.
  10467. </summary>
  10468. </member>
  10469. <member name="P:StackExchange.Redis.StreamEntry.Null">
  10470. <summary>
  10471. A null stream entry.
  10472. </summary>
  10473. </member>
  10474. <member name="P:StackExchange.Redis.StreamEntry.Id">
  10475. <summary>
  10476. The ID assigned to the message.
  10477. </summary>
  10478. </member>
  10479. <member name="P:StackExchange.Redis.StreamEntry.Values">
  10480. <summary>
  10481. The values contained within the message.
  10482. </summary>
  10483. </member>
  10484. <member name="P:StackExchange.Redis.StreamEntry.Item(StackExchange.Redis.RedisValue)">
  10485. <summary>
  10486. Search for a specific field by name, returning the value
  10487. </summary>
  10488. </member>
  10489. <member name="P:StackExchange.Redis.StreamEntry.IsNull">
  10490. <summary>
  10491. Indicates that the Redis Stream Entry is null.
  10492. </summary>
  10493. </member>
  10494. <member name="T:StackExchange.Redis.StreamGroupInfo">
  10495. <summary>
  10496. Describes a consumer group retrieved using the XINFO GROUPS command. <see cref="M:StackExchange.Redis.IDatabase.StreamGroupInfo(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)"/>
  10497. </summary>
  10498. </member>
  10499. <member name="P:StackExchange.Redis.StreamGroupInfo.Name">
  10500. <summary>
  10501. The name of the consumer group.
  10502. </summary>
  10503. </member>
  10504. <member name="P:StackExchange.Redis.StreamGroupInfo.ConsumerCount">
  10505. <summary>
  10506. The number of consumers within the consumer group.
  10507. </summary>
  10508. </member>
  10509. <member name="P:StackExchange.Redis.StreamGroupInfo.PendingMessageCount">
  10510. <summary>
  10511. The total number of pending messages for the consumer group. A pending message is one that has been
  10512. received by a consumer but not yet acknowledged.
  10513. </summary>
  10514. </member>
  10515. <member name="P:StackExchange.Redis.StreamGroupInfo.LastDeliveredId">
  10516. <summary>
  10517. The Id of the last message delivered to the group
  10518. </summary>
  10519. </member>
  10520. <member name="T:StackExchange.Redis.StreamInfo">
  10521. <summary>
  10522. Describes stream information retrieved using the XINFO STREAM command. <see cref="M:StackExchange.Redis.IDatabase.StreamInfo(StackExchange.Redis.RedisKey,StackExchange.Redis.CommandFlags)"/>
  10523. </summary>
  10524. </member>
  10525. <member name="P:StackExchange.Redis.StreamInfo.Length">
  10526. <summary>
  10527. The number of entries in the stream.
  10528. </summary>
  10529. </member>
  10530. <member name="P:StackExchange.Redis.StreamInfo.RadixTreeKeys">
  10531. <summary>
  10532. The number of radix tree keys in the stream.
  10533. </summary>
  10534. </member>
  10535. <member name="P:StackExchange.Redis.StreamInfo.RadixTreeNodes">
  10536. <summary>
  10537. The number of radix tree nodes in the stream.
  10538. </summary>
  10539. </member>
  10540. <member name="P:StackExchange.Redis.StreamInfo.ConsumerGroupCount">
  10541. <summary>
  10542. The number of consumers groups in the stream.
  10543. </summary>
  10544. </member>
  10545. <member name="P:StackExchange.Redis.StreamInfo.FirstEntry">
  10546. <summary>
  10547. The first entry in the stream.
  10548. </summary>
  10549. </member>
  10550. <member name="P:StackExchange.Redis.StreamInfo.LastEntry">
  10551. <summary>
  10552. The last entry in the stream.
  10553. </summary>
  10554. </member>
  10555. <member name="P:StackExchange.Redis.StreamInfo.LastGeneratedId">
  10556. <summary>
  10557. The last generated id
  10558. </summary>
  10559. </member>
  10560. <member name="T:StackExchange.Redis.StreamPendingInfo">
  10561. <summary>
  10562. Describes basic information about pending messages for a consumer group.
  10563. </summary>
  10564. </member>
  10565. <member name="P:StackExchange.Redis.StreamPendingInfo.PendingMessageCount">
  10566. <summary>
  10567. The number of pending messages. A pending message is a message that has been consumed but not yet acknowledged.
  10568. </summary>
  10569. </member>
  10570. <member name="P:StackExchange.Redis.StreamPendingInfo.LowestPendingMessageId">
  10571. <summary>
  10572. The lowest message ID in the set of pending messages.
  10573. </summary>
  10574. </member>
  10575. <member name="P:StackExchange.Redis.StreamPendingInfo.HighestPendingMessageId">
  10576. <summary>
  10577. The highest message ID in the set of pending messages.
  10578. </summary>
  10579. </member>
  10580. <member name="P:StackExchange.Redis.StreamPendingInfo.Consumers">
  10581. <summary>
  10582. An array of consumers within the consumer group that have pending messages.
  10583. </summary>
  10584. </member>
  10585. <member name="T:StackExchange.Redis.StreamPendingMessageInfo">
  10586. <summary>
  10587. Describes properties of a pending message. A pending message is one that has
  10588. been received by a consumer but has not yet been acknowledged.
  10589. </summary>
  10590. </member>
  10591. <member name="P:StackExchange.Redis.StreamPendingMessageInfo.MessageId">
  10592. <summary>
  10593. The ID of the pending message.
  10594. </summary>
  10595. </member>
  10596. <member name="P:StackExchange.Redis.StreamPendingMessageInfo.ConsumerName">
  10597. <summary>
  10598. The consumer that received the pending message.
  10599. </summary>
  10600. </member>
  10601. <member name="P:StackExchange.Redis.StreamPendingMessageInfo.IdleTimeInMilliseconds">
  10602. <summary>
  10603. The time that has passed since the message was last delivered to a consumer.
  10604. </summary>
  10605. </member>
  10606. <member name="P:StackExchange.Redis.StreamPendingMessageInfo.DeliveryCount">
  10607. <summary>
  10608. The number of times the message has been delivered to a consumer.
  10609. </summary>
  10610. </member>
  10611. <member name="T:StackExchange.Redis.StreamPosition">
  10612. <summary>
  10613. Describes a pair consisting of the Stream Key and the <see cref="P:StackExchange.Redis.StreamPosition.Position"/> from which to begin reading a stream.
  10614. </summary>
  10615. </member>
  10616. <member name="P:StackExchange.Redis.StreamPosition.Beginning">
  10617. <summary>
  10618. Read from the beginning of a stream.
  10619. </summary>
  10620. </member>
  10621. <member name="P:StackExchange.Redis.StreamPosition.NewMessages">
  10622. <summary>
  10623. Read new messages.
  10624. </summary>
  10625. </member>
  10626. <member name="M:StackExchange.Redis.StreamPosition.#ctor(StackExchange.Redis.RedisKey,StackExchange.Redis.RedisValue)">
  10627. <summary>
  10628. Initializes a <see cref="T:StackExchange.Redis.StreamPosition"/> value.
  10629. </summary>
  10630. <param name="key">The key for the stream.</param>
  10631. <param name="position">The position from which to begin reading the stream.</param>
  10632. </member>
  10633. <member name="P:StackExchange.Redis.StreamPosition.Key">
  10634. <summary>
  10635. The stream key.
  10636. </summary>
  10637. </member>
  10638. <member name="P:StackExchange.Redis.StreamPosition.Position">
  10639. <summary>
  10640. The offset at which to begin reading the stream.
  10641. </summary>
  10642. </member>
  10643. <member name="M:StackExchange.Redis.TaskSource.Create``1(System.Object,System.Threading.Tasks.TaskCreationOptions)">
  10644. <summary>
  10645. Create a new TaskCompletion source
  10646. </summary>
  10647. <typeparam name="T">The type for the created <see cref="T:System.Threading.Tasks.TaskCompletionSource`1"/>.</typeparam>
  10648. <param name="asyncState">The state for the created <see cref="T:System.Threading.Tasks.TaskCompletionSource`1"/>.</param>
  10649. <param name="options">The options to apply to the task</param>
  10650. </member>
  10651. </members>
  10652. </doc>