Pergunta

Can anybody tell me how to create a JCS cache region at run-time ?

Foi útil?

Solução

JCS jcs = JCS.getInstance("REGION");
IElementAttributes attr = new ElementAttributes();
attr.setIsEternal(false);
attr.setMaxLifeSeconds( maxLife );
jcs.put("Key",data, attr);
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top