// 第三个参数为计算该消息在服务器存放位置用
memCachedClient.add("someKey", "someValue", 10*24*60*60*1000);
// 第三个参数为该消息在服务器存放时间,毫秒
memCachedClient.add("someKey", "someValue", new Date(10*24*60*60*1000));
05-08 08:00