X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fconnection.c;h=252443413d84812c168b37bb0ffd8785fac0e556;hb=545611a81c7627b6380a0bda6f22cae3c6e16fe1;hp=7f9691ac2e3ed493022bdb1395a42c4570311d6b;hpb=f451628ce616009071ab80cbe201cc7a3f60702d;p=pazpar2-moved-to-github.git diff --git a/src/connection.c b/src/connection.c index 7f9691a..2524434 100644 --- a/src/connection.c +++ b/src/connection.c @@ -216,7 +216,7 @@ static void non_block_events(struct connection *co) ev = ZOOM_connection_last_event(link); #if 1 - yaz_log(YLOG_DEBUG, "%p Connection ZOOM_EVENT_%s", co, ZOOM_get_event_str(ev)); + yaz_log(YLOG_LOG, "%p Connection ZOOM_EVENT_%s", co, ZOOM_get_event_str(ev)); #endif switch (ev) { @@ -414,6 +414,7 @@ static int connection_connect(struct connection *con, iochan_man_t iochan_man) struct session_database *sdb = client_get_database(con->client); const char *apdulog = session_setting_oneval(sdb, PZ_APDULOG); + const char *memcached = session_setting_oneval(sdb, PZ_MEMCACHED); assert(con); @@ -423,6 +424,8 @@ static int connection_connect(struct connection *con, iochan_man_t iochan_man) if ((charset = session_setting_oneval(sdb, PZ_NEGOTIATION_CHARSET))) ZOOM_options_set(zoptions, "charset", charset); + if (memcached && *memcached) + ZOOM_options_set(zoptions, "memcached", memcached); assert(host->ipport); if (host->proxy)