Arguments
string
required
The key of the bitset
integer
required
Specify the offset at which to set the bit.
0 | 1
required
The bit to set
Response
The original bit value stored at offset.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
const originalBit = await redis.setbit(key, 4, 1);
Set a single bit in a string.
const originalBit = await redis.setbit(key, 4, 1);
Was this page helpful?