Bitmap

GETBIT

Retrieve a single bit.

Arguments

keybodystringrequired

The key of the bitset

offsetbodyintegerrequired

Specify the offset at which to get the bit.

Response

integerrequired

The bit value stored at offset.

Example
const bit = await redis.getbit(key, 4);
Loading search…