|
135 | 135 | * <pre> |
136 | 136 | * MemCachedClient mc = new MemCachedClient(); |
137 | 137 | * String[] keys = { "key", "key1", "key2" }; |
138 | | - * Map<Object> values = mc.getMulti(keys); |
| 138 | + * Map<Object> values = mc.getMulti(keys); |
139 | 139 | * </pre> |
140 | 140 | * <h3>To retrieve an multiple objects from the cache with custom hashing</h3> |
141 | 141 | * <pre> |
142 | 142 | * MemCachedClient mc = new MemCachedClient(); |
143 | 143 | * String[] keys = { "key", "key1", "key2" }; |
144 | 144 | * Integer[] hashes = { new Integer(45), new Integer(32), new Integer(44) }; |
145 | | - * Map<Object> values = mc.getMulti(keys, hashes); |
| 145 | + * Map<Object> values = mc.getMulti(keys, hashes); |
146 | 146 | * </pre> |
147 | 147 | * <h3>To flush all items in server(s)</h3> |
148 | 148 | * <pre> |
@@ -228,11 +228,11 @@ public MemCachedClient( ClassLoader classLoader ) { |
228 | 228 | * This enables compression and sets compression threshhold to 15 KB. |
229 | 229 | */ |
230 | 230 | private void init() { |
231 | | - this.primitiveAsString = false; |
232 | | - this.compressEnable = true; |
233 | | - this.compressThreshold = COMPRESS_THRESH; |
234 | | - this.defaultEncoding = "UTF-8"; |
235 | | - this.poolName = "default"; |
| 231 | + this.primitiveAsString = false; |
| 232 | + this.compressEnable = true; |
| 233 | + this.compressThreshold = COMPRESS_THRESH; |
| 234 | + this.defaultEncoding = "UTF-8"; |
| 235 | + this.poolName = "default"; |
236 | 236 | } |
237 | 237 |
|
238 | 238 | /** |
|
0 commit comments