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. */
| 182 | * as a value in the key space, and Redis is configured to evict based on |
| 183 | * LFU/LRU. */ |
| 184 | robj *createStringObjectFromLongLongForValue(long long value) { |
| 185 | return createStringObjectFromLongLongWithOptions(value,1); |
| 186 | } |
| 187 | |
| 188 | /* Create a string object from a long double. If humanfriendly is non-zero |
| 189 | * it does not use exponential format and trims trailing zeroes at the end, |
no test coverage detected