Esper系列(七)数据缓存、外部事件应用(静态方法)

LRU Cache

功能:最近最少使用策略。

数据库查询缓存应用配置:

);
12          }
13          return bean;
14      }   
15  }

文件名:orderMainTest

// 添加配置(包所在路劲),方面后面的引用自动添加包名前缀
Configuration config = new Configuration();
config.addEventTypeAutoName("cn.chenx.esper.method");
       
//
EPServiceProvider epServiceProvider = EPServiceProviderManager
        .getDefaultProvider(config);
EPAdministrator epAdmin = epServiceProvider.getEPAdministrator();
       
10  ConfigurationOperations configOper = epAdmin.getConfiguration();
11  configOper.addImport(MyEvent.class);
12         
13  String epsql = "select me.key as result from orderEvent as oe,method:MyEvent.getEvent(oe.salary) as me  ";
上一篇:Document APIs


下一篇:解决在TP5中无法使用快递鸟的即时查询API