oldratlee / java-modern-tech-practice

😎 Java™ modern tech practice sandbox ⏳

Home Page:https://github.com/oldratlee/java-modern-tech-practice/issues

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

collection libs on jvm

oldratlee opened this issue · comments

More than Persistent Collections ❤️

Contain persistent(immutable) collections/Functional Data Structures 📌

  • vavr ❤️ , VΛVΓ (Vavr, formerly called Javaslang) is a non-commercial, non-profit object-functional library that runs with Java 8+. It aims to reduce the lines of code and increase code quality.
  • cyclops ❤️ , An advanced, but easy to use, platform for writing functional applications in Java 8.
  • Functional Java , Functional programming in Java
  • procrastination , A small, straightforward library bringing the benefits of functional programming to Java 11
  • sophisticated FP Languages ❤️ have built-in Persistent Collections support 📌
    • Scala ❤️ , Scala combines object-oriented and functional programming in one concise, high-level language. Scala's static types help avoid bugs in complex applications, and its JVM and JavaScript runtimes let you build high-performance systems with easy access to huge ecosystems of libraries.
    • Clojure ❤️ , Clojure is a dynamic, general-purpose programming language, combining the approachability and interactive development of a scripting language with an efficient and robust infrastructure for multithreaded programming. Clojure is a compiled language, yet remains completely dynamic – every feature supported by Clojure is supported at runtime. Clojure provides easy access to the Java frameworks, with optional type hints and type inference, to ensure that calls to Java can avoid reflection.

Persistent(immutable) Collections/Functional Data Structures 📌

Primitive Collections/Type-specific Collections 💎

High Performance/Sophisticated Collection(-ish) 🚄

  • JCTools ❤️ , offer some concurrent data structures currently missing from the JDK. JCTools offers excellent performance. It's stable and in use by such distinguished frameworks as Netty, RxJava and others.
  • disruptor ❤️ , A High Performance Inter-Thread Messaging Library. Achieve very low-latency and high-throughput with our Java platform. Performance testing showed that using queues to pass data between stages of the system was introducing latency, so we focused on optimising this area.
  • High Scale Lib ❤️ , Cliff Click's high scale lib.
  • caffeine ❤️ , Caffeine is a high performance, near optimal caching library based on Java 8. For more details, see our user's guide and browse the API docs for the latest release.
  • concurrentlinkedhashmap , A high performance version of java.util.LinkedHashMap for use as a software cache.
    • Caffeine is the Java 8 successor to ConcurrentLinkedHashMap and Guava's cache. Projects should prefer Caffeine and migrate when requiring JDK8 or higher. The previous caching projects are supported in maintenance mode.
    • code repo: https://github.com/ben-manes/concurrentlinkedhashmap

Collections Backed by Storage 🗃

  • mapdb ❤️ , MapDB provides Java Maps, Sets, Lists, Queues and other collections backed by off-heap or on-disk storage. It is a hybrid between java collection framework and embedded database engine.

Collections with Distribution 🌏

Contain Collections, but NOT Persistent 😱

Related Resources

Maven Repository: collections https://mvnrepository.com/tags/collections

commented

add: