blob: 7be1f066bce53cdd73a884c33dcd1a66a0f346bd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.alibaba.dubbo.examples.cache;
import com.alibaba.dubbo.examples.cache.api.CacheService;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* CacheConsumer
*/
public class CacheConsumer {
public static void main(String[] args) throws Exception {
String config = CacheConsumer.class.getPackage().getName().replace('.', '/') + "/cache-consumer.xml";
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(config);
context.start();
CacheService cacheService = (CacheService) context.getBean("cacheService");
// verify cache, same result is returned for different invocations (in fact, the return value increases
// on every invocation on the server side)
String fix = null;
for (int i = 0; i < 5; i++) {
String result = cacheService.findCache("0");
if (fix == null || fix.equals(result)) {
System.out.println("OK: " + result);
} else {
System.err.println("ERROR: " + result);
}
fix = result;
Thread.sleep(500);
}
// default cache.size is 1000 for LRU, should have cache expired if invoke more than 1001 times
for (int n = 0; n < 1001; n++) {
String pre = null;
for (int i = 0; i < 10; i++) {
String result = cacheService.findCache(String.valueOf(n));
if (pre != null && !pre.equals(result)) {
System.err.println("ERROR: " + result);
}
pre = result;
}
}
// verify if the first cache item is expired in LRU cache
String result = cacheService.findCache("0");
if (fix != null && !fix.equals(result)) {
System.out.println("OK: " + result);
} else {
System.err.println("ERROR: " + result);
}
}
}