}
#endif
+#if HAVE_HIREDIS
+static redisContext *create_redis(const char *conf)
+{
+ char **darray;
+ int i, num;
+ NMEM nmem = nmem_create();
+ redisContext *context = 0;
+
+ nmem_strsplit_blank(nmem, conf, &darray, &num);
+ for (i = 0; i < num; i++)
+ {
+ if (!yaz_strncasecmp(darray[i], "--SERVER=", 9))
+ {
+ struct timeval timeout = { 1, 500000 }; /* 1.5 seconds */
+ char *host = darray[i] + 9;
+ char *port = strchr(host, ':');
+ char *weight = strstr(host, "/?");
+ if (port)
+ *port++ = '\0';
+ if (weight)
+ {
+ *weight = '\0';
+ weight += 2;
+ }
+
+ context = redisConnectWithTimeout(host,
+ port ? atoi(port) : 6379,
+ timeout);
+ }
+ }
+ nmem_destroy(nmem);
+ return context;
+}
+#endif
+
int ZOOM_memcached_configure(ZOOM_connection c)
{
const char *val;
}
memcached_behavior_set(c->mc_st, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, 1);
#else
+#if HAVE_HIREDIS
+ c->redis_c = create_redis(val);
+ if (c->redis_c == 0 || c->redis_c->err)
+ {
+ ZOOM_set_error(c, ZOOM_ERROR_MEMCACHED,
+ "could not create redis");
+ return -1;
+ }
+#else
ZOOM_set_error(c, ZOOM_ERROR_MEMCACHED, "not enabled");
return -1;
#endif
+#endif
}
return 0;
}