Wrapper for createStringObjectFromLongLongWithOptions() avoiding a shared * object when LFU/LRU info are needed, that is, when the object is used * as a value in the key space, and Redis is configured to evict based on * LFU/LRU. */
| 208 | * as a value in the key space, and Redis is configured to evict based on |
| 209 | * LFU/LRU. */ |
| 210 | robj *createStringObjectFromLongLongForValue(long long value) { |
| 211 | return createStringObjectFromLongLongWithOptions(value,1); |
| 212 | } |
| 213 | |
| 214 | /* Create a string object from a long double. If humanfriendly is non-zero |
| 215 | * it does not use exponential format and trims trailing zeroes at the end, |
no test coverage detected