rorueda commented on PR #3978:
URL: https://github.com/apache/calcite/pull/3978#issuecomment-2373815460
I've been meaning to ask this for some time. While investigating performance
regarding datetime formatting, I found out that the cache is disabled by
default, which contradicts the javadoc. Would you know which one is correct? Or
am I missing something?
```java
* <p>The value of this parameter limits the size of every function-level
* cache in Calcite. The default value is 1,000.
*/
public static final CalciteSystemProperty<Integer>
FUNCTION_LEVEL_CACHE_MAX_SIZE =
intProperty("calcite.function.cache.maxSize", 0, v -> v >= 0);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]