setCache() public method

public setCache ( int maxEntries ) : void
maxEntries int
return void
Esempio n. 1
0
 static ExpressionHandler()
 {
     jexl = new JadeJexlEngine();
     jexl.setCache(MAX_ENTRIES);
 }
Esempio n. 2
0
 public static void setCache(bool cache)
 {
     jexl.setCache(cache ? MAX_ENTRIES : 0);
 }
Esempio n. 3
0
 static ExpressionHandler()
 {
     jexl = new JadeJexlEngine();
     jexl.setCache(MAX_ENTRIES);
 }