You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/RedisCommands/BitmapCommands.swift
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,8 @@
15
15
// This file is autogenerated by RedisCommandsBuilder
16
16
17
17
import NIOCore
18
-
import RESP
19
18
import Redis
19
+
import RESP
20
20
21
21
#if canImport(FoundationEssentials)
22
22
import FoundationEssentials
@@ -302,13 +302,13 @@ extension RESPCommand {
302
302
/// - Response: One of the following:
303
303
/// * [Integer](https:/redis.io/docs/reference/protocol-spec#integers): the position of the first bit set to 1 or 0 according to the request
304
304
/// * [Integer](https:/redis.io/docs/reference/protocol-spec#integers): `-1`. In case the `bit` argument is 1 and the string is empty or composed of just zero bytes
305
-
///
305
+
///
306
306
/// 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.
307
-
///
307
+
///
308
308
/// If we look for clear bits (the bit argument is 0) and the string only contains bits set to 1, the function returns the first bit not part of the string on the right. So if the string is three bytes set to the value `0xff` the command `BITPOS key 0` will return 24, since up to bit 23 all the bits are 1.
309
-
///
309
+
///
310
310
/// The function considers the right of the string as padded with zeros if you look for clear bits and specify no range or the _start_ argument **only**.
311
-
///
311
+
///
312
312
/// However, this behavior changes if you are looking for clear bits and specify a range with both _start_ and _end_.
313
313
/// If a clear bit isn't found in the specified range, the function returns -1 as the user specified a clear range and there are no 0 bits in that range.
314
314
@inlinable
@@ -442,13 +442,13 @@ extension RedisConnection {
442
442
/// - Returns: One of the following:
443
443
/// * [Integer](https:/redis.io/docs/reference/protocol-spec#integers): the position of the first bit set to 1 or 0 according to the request
444
444
/// * [Integer](https:/redis.io/docs/reference/protocol-spec#integers): `-1`. In case the `bit` argument is 1 and the string is empty or composed of just zero bytes
445
-
///
445
+
///
446
446
/// 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.
447
-
///
447
+
///
448
448
/// If we look for clear bits (the bit argument is 0) and the string only contains bits set to 1, the function returns the first bit not part of the string on the right. So if the string is three bytes set to the value `0xff` the command `BITPOS key 0` will return 24, since up to bit 23 all the bits are 1.
449
-
///
449
+
///
450
450
/// The function considers the right of the string as padded with zeros if you look for clear bits and specify no range or the _start_ argument **only**.
451
-
///
451
+
///
452
452
/// However, this behavior changes if you are looking for clear bits and specify a range with both _start_ and _end_.
453
453
/// If a clear bit isn't found in the specified range, the function returns -1 as the user specified a clear range and there are no 0 bits in that range.
Copy file name to clipboardExpand all lines: Sources/RedisCommands/HashCommands.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -377,7 +377,7 @@ extension RedisConnection {
377
377
/// - Returns: [Map](https:/redis.io/docs/reference/protocol-spec#maps): a map of fields and their values stored in the hash, or an empty list when key does not exist.
Copy file name to clipboardExpand all lines: Sources/RedisCommands/ScriptingCommands.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -665,7 +665,7 @@ extension RedisConnection {
665
665
/// - Returns: [Map](https:/redis.io/docs/reference/protocol-spec#maps): information about the function that's currently running and information about the available execution engines.
666
666
@inlinable
667
667
publicfunc functionStats()asyncthrows->RESPToken{
668
-
tryawaitsend("FUNCTION","STATS").converting()
668
+
tryawaitsend("FUNCTION","STATS")
669
669
}
670
670
671
671
/// Sets the debug mode of server-side Lua scripts.
Copy file name to clipboardExpand all lines: Sources/RedisCommands/ServerCommands.swift
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1491,7 +1491,7 @@ extension RedisConnection {
1491
1491
/// - Returns: [Map](https:/redis.io/docs/reference/protocol-spec#maps): a map where each key is a command name, and each value is the documentary information.
/// Returns documentary information about one, multiple or all commands.
@@ -1503,7 +1503,7 @@ extension RedisConnection {
1503
1503
/// - Returns: [Map](https:/redis.io/docs/reference/protocol-spec#maps): a map where each key is a command name, and each value is the documentary information.
/// Returns helpful text about the different subcommands.
@@ -1819,7 +1819,7 @@ extension RedisConnection {
1819
1819
/// - Returns: [Map](https:/redis.io/docs/reference/protocol-spec#maps): a map where each key is a command name, and each value is a map with the total calls, and an inner map of the histogram time buckets.
/// Returns the cumulative distribution of latencies of a subset or all commands.
@@ -1831,7 +1831,7 @@ extension RedisConnection {
1831
1831
/// - Returns: [Map](https:/redis.io/docs/reference/protocol-spec#maps): a map where each key is a command name, and each value is a map with the total calls, and an inner map of the histogram time buckets.
Copy file name to clipboardExpand all lines: Sources/RedisCommands/StreamCommands.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -800,7 +800,7 @@ extension RedisConnection {
800
800
/// * [Map](https:/redis.io/docs/reference/protocol-spec#maps): when the _FULL_ argument was given, a list of information about a stream in extended form.
0 commit comments