我找到了关于在C / C ++中使用libmemcached的示例代码。但我不明白两次超时的含义:
memcached_set()
过期 rc = memcached_behavior_set( memc_primary, MEMCACHED_BEHAVIOR_CONNECT_TIMEOUT , memcached_timeout );
rc = memcached_set( memc_primary, memcached_key_val, memcached_key_len, save_value, strlen( save_value ), expire, 0 );
你能解释一下它们的用途吗?
非常感谢!