Wrapper where the value len is obtained via strlen().*/
| 255 | |
| 256 | /* Wrapper where the value len is obtained via strlen().*/ |
| 257 | int kvSet(sqlite3 *dbhandle,const char *key, const char *value, int64_t expire) { |
| 258 | return kvSetLen(dbhandle,key,value,strlen(value),expire); |
| 259 | } |
| 260 | |
| 261 | /* Get the specified key and return it as an SDS string. If the value is |
| 262 | * expired or does not exist NULL is returned. */ |
no test coverage detected