Closed GoogleCodeExporter closed 9 years ago
I don't seem to be able to reproduce this. Not on my local branch anyways...
The following test passes for me:
@Test
public void testBigBinaryObject() {
Object bigObject = getBigObject();
_client.set(KEY, TWO_WEEKS, bigObject);
final Map<String, Double> map = (Map<String, Double>)_client.get(KEY);
for (String key : map.keySet()) {
Integer kint = Integer.valueOf(key);
Double val = map.get(key);
assertEquals(val, kint/42.0, 0.0);
}
}
Original comment by ryan.daum
on 25 Jun 2009 at 1:19
Original comment by ryan.daum
on 2 Jul 2009 at 2:01
Hi, sorry for the delay.
I tried to reproduce the error today and I couldn't, but it doesn't work
properly
either, now I'm getting a time out error every time I try to use the binary
protocol... however, the same code using the text protocol works perfectly. I
guess
I'm doing something wrong, but I cannot find it :-(
I'm sorry I cannot help you reproduce it :-(
Original comment by McP...@gmail.com
on 4 Jul 2009 at 9:08
Original issue reported on code.google.com by
McP...@gmail.com
on 24 Jun 2009 at 9:39Attachments: