@daiso-tech/core 0.41.0 → 0.41.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,9 +31,15 @@
|
|
|
31
31
|
- **EventBus:**
|
|
32
32
|
Easily send events accross different applications or in-memory.
|
|
33
33
|
|
|
34
|
-
- **
|
|
34
|
+
- **Distributed lock:**
|
|
35
35
|
Synchronize the access to a shared resource to prevents several processes, or concurrent code, from executing a section of code at the same time.
|
|
36
36
|
|
|
37
|
+
- **Distributed semaphore:**
|
|
38
|
+
A semaphore is a concurrency control primitive used to limit the number of processes or systems that can access a shared resource of code concurrently.
|
|
39
|
+
|
|
40
|
+
- **Distributed shared lock:**
|
|
41
|
+
A shared lock (a.k.a reader writer lock) is a concurrency primitive offering better concurrency than a lock by coordinating a reader semaphore for concurrent access and an writer lock for mutual exclusion, strictly preventing conflicting simultaneous access and maintaining data consistency.
|
|
42
|
+
|
|
37
43
|
- **Serde:**
|
|
38
44
|
Add custom serialization and deserialization logic that seamlessly integrates with all other components.
|
|
39
45
|
|
|
@@ -42,3 +48,4 @@
|
|
|
42
48
|
|
|
43
49
|
- **Hooks:**
|
|
44
50
|
Extend any sync and async function with agnostic hooks.@daiso-tech/core includes predefined retry, fallback, timeout and hedging hooks to easily allow handling transient failures.
|
|
51
|
+
|