Koloboke icon indicating copy to clipboard operation
Koloboke copied to clipboard

Java Collections till the last breadcrumb of memory and performance

Results 40 Koloboke issues
Sort by recently updated
recently updated
newest added

Will the Gradle configuration be updated again? The current code cannot be built after downloading it

Hi, Is `koloboke.com` dead? Should the links be removed from readme then?

public static void rehashTest() { // RuntimeType:MutableQHashSeparateKVLongObjMap HashLongObjMap newMutableMap = HashLongObjMaps.getDefaultFactory() .withHashConfig(HashConfig.fromLoads(0.80, 0.89, 0.97).withGrowthFactor(1.15)) .newMutableMap(); newMutableMap.put(3, 3); newMutableMap.put(6, 6); newMutableMap.put(2, 2); newMutableMap.put(8, 8); newMutableMap.put(4, 4); newMutableMap.put(5, 5); newMutableMap.put(1, 1); System.out.println(newMutableMap.size());...

Hi Roman, et.al. I get this on Java SDK 8 ... any work arounds? ``` Error:(18, 17) java: Koloboke Compile annotation processor threw an exception while processing this type, please...

Using AdoptOpenJDK 11.0.5 First of all, is ver 1.0.0 compatible with JDK 11? We get a NoClassDefFoundError with below stacktrace: Caused by: java.lang.NoClassDefFoundError: Could not initialize class com.koloboke.collect.map.hash.HashIntObjMaps$DefaultFactoryHolder at com.koloboke.collect.map.hash.HashIntObjMaps.getDefaultFactory(HashIntObjMaps.java:55)...

Hello @leventov , Found an issue when using the cursor to modify the MutableLHashSeparateKVLongObjMapGO map. The following snippet can be used to replicate the issue: `HashLongObjMap map = HashLongObjMaps.newMutableMap(); map.put(108,...

When compiling a project that has previously compiled correctly on Java 8 using Java 9, this exception appears. ``` Error:(42, 17) java: Koloboke Compile annotation processor threw an exception while...

Please see the attached file for a test reproducing the behavior: [objIntMapRetainAll.zip](https://github.com/leventov/Koloboke/files/1774690/objIntMapRetainAll.zip) This problem happens when using Koloboke compile to implement a `ObjIntMap` map, and then trying to remove elements...

Hi, due to the way the iteration is performed and new entries are added, If one iterates over one set and copies to another set, the performance is very slow....