When I read the redis embstr to store some short string content, show these advantage:
Embeded String: If the size of the value string is less than or equal to 44 bytes, Redis saves the string in the same chunk of the Redis object itself. This is more memory efficient than the Raw String encoding. Also, it's more cache-friendly.
that told that the embstr is more efficiency than raw string. why the embstr more efficiency?