()
| 225 | String cacheStr = localParams.get(CommonParams.CACHE); |
| 226 | if (cacheStr != null) { |
| 227 | if (CommonParams.FALSE.equals(cacheStr)) { |
| 228 | extendedQuery().setCache(false); |
| 229 | } else if (CommonParams.TRUE.equals(cacheStr)) { |
| 230 | extendedQuery().setCache(true); |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | int cost = localParams.getInt(CommonParams.COST, Integer.MIN_VALUE); |
| 235 | if (cost != Integer.MIN_VALUE) { |
| 236 | extendedQuery().setCost(cost); |
| 237 | } |
| 238 | } |