All Projects → xacrimon → Dashmap

xacrimon / Dashmap

Licence: mit
Blazing fast concurrent HashMap for Rust.

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Dashmap

Sc
Common libraries and data structures for C.
Stars: ✭ 161 (-85.73%)
Mutual labels:  data-structures, hashmap
practice
Java并发编程与高并发解决方案:http://coding.imooc.com/class/195.html Java开发企业级权限管理系统:http://coding.imooc.com/class/149.html
Stars: ✭ 39 (-96.54%)
Mutual labels:  concurrent-programming, concurrent
Containers
Containers backed by std.experimental.allocator
Stars: ✭ 111 (-90.16%)
Mutual labels:  data-structures, hashmap
Tascalate Concurrent
Implementation of blocking (IO-Bound) cancellable java.util.concurrent.CompletionStage and related extensions to java.util.concurrent.ExecutorService-s
Stars: ✭ 144 (-87.23%)
Mutual labels:  concurrent, concurrent-programming
hatrack
Fast, multi-reader, multi-writer, lockless data structures for parallel programming
Stars: ✭ 55 (-95.12%)
Mutual labels:  hashmap, concurrent-programming
java-multithread
Códigos feitos para o curso de Multithreading com Java, no canal RinaldoDev do YouTube.
Stars: ✭ 24 (-97.87%)
Mutual labels:  concurrent-programming, concurrent
C Macro Collections
Easy to use, header only, macro generated, generic and type-safe Data Structures in C
Stars: ✭ 192 (-82.98%)
Mutual labels:  data-structures, hashmap
myconcurrent
Java并发的系统性学习
Stars: ✭ 25 (-97.78%)
Mutual labels:  concurrent-programming, concurrent
scalable-concurrent-containers
High performance containers and utilities for concurrent and asynchronous programming
Stars: ✭ 101 (-91.05%)
Mutual labels:  hashmap, concurrent-programming
goroutines
provides utilities to perform common tasks on goroutines
Stars: ✭ 19 (-98.32%)
Mutual labels:  concurrent-programming, concurrent
mapreduce
A in-process MapReduce library to help you optimizing service response time or concurrent task processing.
Stars: ✭ 93 (-91.76%)
Mutual labels:  concurrent-programming, concurrent
Zio
ZIO — A type-safe, composable library for async and concurrent programming in Scala
Stars: ✭ 3,167 (+180.76%)
Mutual labels:  concurrent, concurrent-programming
Recloser
A concurrent circuit breaker implemented with ring buffers
Stars: ✭ 51 (-95.48%)
Mutual labels:  concurrent
Freelancer
👔 An implementation of on-the-fly defined WebWorkers that are created inline using data URIs, rather than separate physical files — for the benefit of all humanity.
Stars: ✭ 57 (-94.95%)
Mutual labels:  concurrent
Visualgo
visualization of algorithms and data structures.
Stars: ✭ 50 (-95.57%)
Mutual labels:  data-structures
Ready For Tech Interview
💻 신입 개발자로서 준비를 하기 위해 지식을 정리하는 공간 👨‍💻
Stars: ✭ 1,035 (-8.24%)
Mutual labels:  data-structures
Kactl
KTH Algorithm Competition Template Library (... eller KTHs AC-tillverkande lapp)
Stars: ✭ 1,106 (-1.95%)
Mutual labels:  data-structures
Leetcode Python
Leetcode Python Solution and Explanation. Also a Guide to Prepare for Software Engineer Interview.
Stars: ✭ 1,088 (-3.55%)
Mutual labels:  data-structures
Awesome Lockfree
A collection of resources on wait-free and lock-free programming
Stars: ✭ 1,046 (-7.27%)
Mutual labels:  concurrent-programming
Data Structure And Algorithms
A complete and efficient guide for Data Structure and Algorithms.
Stars: ✭ 48 (-95.74%)
Mutual labels:  data-structures

DashMap

Blazingly fast concurrent map in Rust.

DashMap is an implementation of a concurrent associative array/hashmap in Rust.

DashMap tries to implement an easy to use API similar to std::collections::HashMap with some slight changes to handle concurrency.

DashMap tries to be very simple to use and to be a direct replacement for RwLock<HashMap<K, V>>. To accomplish these all methods take &self instead modifying methods taking &mut self. This allows you to put a DashMap in an Arc<T> and share it between threads while being able to modify it.

DashMap puts great effort into performance and aims to be as fast as possible. If you have any suggestions or tips do not hesitate to open an issue or a PR.

version

documentation

downloads

minimum rustc version

Cargo features

  • serde - Enables serde support.

  • raw-api - Enables the unstable raw-shard api.

  • rayon - Enables rayon support.

Support me

Foo

Creating and testing open-source software like DashMap takes up a large portion of my time and comes with costs such as test hardware. Please consider supporting me and everything I make for the public to enable me to continue doing this.

If you want to support me please head over and take a look at my patreon.

Contributing

DashMap is gladly accepts contributions! Do not hesitate to open issues or PR's.

I will take a look as soon as I have time for it.

That said I do not get paid (yet) to work on open-source. This means that my time is limited and my work here comes after my personal life.

Performance

A comprehensive benchmark suite including DashMap can be found here.

Special thanks

License

This project is licensed under MIT.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].