Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elanhasson/orleans.datastructures
Various data structures implemented on top of Microsoft Orleans
https://github.com/elanhasson/orleans.datastructures
data-structures distributed-datastructure distributed-systems microsoft-orleans orleans virtual-actors
Last synced: 3 months ago
JSON representation
Various data structures implemented on top of Microsoft Orleans
- Host: GitHub
- URL: https://github.com/elanhasson/orleans.datastructures
- Owner: ElanHasson
- License: mit
- Created: 2020-07-29T01:27:37.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-04-20T00:01:01.000Z (over 1 year ago)
- Last Synced: 2024-05-01T16:01:20.603Z (9 months ago)
- Topics: data-structures, distributed-datastructure, distributed-systems, microsoft-orleans, orleans, virtual-actors
- Language: C#
- Homepage:
- Size: 60.5 KB
- Stars: 8
- Watchers: 3
- Forks: 3
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# Orleans.DataStructures
A project to provide implementations of durable, distributed data structures that run on top of Microsoft Orleans.
## Implemented
* Doubly Linked List**[Below are Deprecated]**
## Array
### Capabilities
* Add items to the array.
* Read the value at an index of the array (`ArrayItemGrain`)
* Get the size of the array### What's Next
* Remove Items
* Insert Items
* `IAsyncEnumerable` support to enumerate them (depends on https://github.com/dotnet/orleans/issues/6504)
* Allow Reentrancy (need to implement atomic operations on the `ArrayGrain`
* Performance Enhancements
* Change notification on `ArrayGrain` and `ArrayItemGrain` to support Observers.