Mantzas
Mantzas

Reputation: 2653

How big (string) can the member be in Redis GEOADD

the GEOADD call has the following signature:

GEOADD key longitude latitude member [longitude latitude member ...]

I cannot find in the documentation about the max size of the member (string length)?

Thanks

Upvotes: 0

Views: 146

Answers (1)

Itamar Haber
Itamar Haber

Reputation: 50022

The size of any Redis string up to and including v4 is "limited" to 0.5GB.

Upvotes: 2

Related Questions