julianhyde commented on a change in pull request #950: [CALCITE-2703] Reduce 
code generation and class loading overhead when executing queries in the 
EnumerableConvention (Stamatis Zampetakis)
URL: https://github.com/apache/calcite/pull/950#discussion_r259599740
 
 

 ##########
 File path: 
core/src/main/java/org/apache/calcite/adapter/enumerable/EnumerableInterpretable.java
 ##########
 @@ -82,6 +89,16 @@ public Node implement(final InterpreterImplementor 
implementor) {
     return new EnumerableNode(enumerable, implementor.compiler, this);
   }
 
+  private static final int BINDABLE_CACHE_MAX_SIZE =
+      Util.getIntProperty("calcite.bindable.cache.maxSize", (size) -> size >= 
0, 0);
+  private static final int BINDABLE_CACHE_CONCURRENCY_LEVEL =
+      Util.getIntProperty("calcite.bindable.cache.concurrencyLevel", (level) 
-> level > 0, 1);
+  private static final Cache<String, Bindable> BINDABLE_CACHE =
 
 Review comment:
   I am in favor of merging this PR.
   
   I think that the objections that @asereda-gs is raising are a bit 
theoretical, and we should not let them stop us.
   
   To @asereda-gs's specific question:
   
   > Just to play devil's advocate.
   > If you allow separate caches they why not allow different settings for 
those caches ?
   > This is especially true during testing.
   
   The reason to not allow more fine-grained configuration is that it adds 
complexity, and it is complexity that no one is asking for.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to