shollander
shollander
I need to keep indexes in RAM for performance, but want to avoid storing the objects themselves in RAM to reduce the memory footprint. We deal with millions of objects...
Yes, using H2MVStore was definitely significantly faster. Note that MVStore does not offer a built-in Kryo Serializer. They have their own custom serializer implementation. I found their default serializer to...
I tried to use the "-all.jar" but I found that it is not a drop-in replacement for the regular cqengine jar. This is because besides for relocating dependencies, it also...
@dilipkrish According to these two issues, it appears that Swagger itself has supported this for around a year or so. https://github.com/OAI/OpenAPI-Specification/issues/222 https://github.com/swagger-api/swagger-core/issues/636
Is the maximum size of MutableMap documented anywhere? JDK Maps have a maximum capacity of `1
The JDK HashMap is nice, it will ignore the capacity you specify if it's too large. See [HashMap.java:452](https://github.com/openjdk/jdk/blob/a0a4b1981b86ec8644add87a7a77975303e0fa16/src/java.base/share/classes/java/util/HashMap.java#L451-L452): ```java public HashMap(int initialCapacity, float loadFactor) { if (initialCapacity < 0) throw...
True, perhaps the JDK map should fail if the requested maxCapacity is too large. You are correct that `HashMap` is broken beyond `1
Thank you for your suggestions. I think that you are correct. I think `HashMap` will work for my use case. I don't really need that much more than `1
I too have a need for this flexibility. My build.gradle file is not at the location where I would like to create a branch point. It is lower down in...
The entire Karma project is deprecated. See the deprecation announcement [here](/karma-runner/karma#karma-is-deprecated-and-is-not-accepting-new-features-or-general-bug-fixes).