@bts-soft/core 2.2.6 → 2.2.8
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 +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +47 -46
package/README.md
CHANGED
|
@@ -219,7 +219,7 @@ The validation package also exports the underlying transformation functions for
|
|
|
219
219
|
|
|
220
220
|
## Deep Dive: `@bts-soft/cache`
|
|
221
221
|
|
|
222
|
-
The caching module provides an enterprise-ready wrapper around Redis, designed to handle high-throughput operations with type safety and automatic serialization.
|
|
222
|
+
The caching module provides an enterprise-ready wrapper around Redis, designed to handle high-throughput operations with type safety and automatic serialization. It utilizes a **Modular Facade Pattern**, where the `RedisService` acts as a unified interface delegating to specialized internal services for different Redis data types (Hashes, Sets, Geospatial, etc.).
|
|
223
223
|
|
|
224
224
|
### The `IRedisInterface` Contract
|
|
225
225
|
|
|
@@ -640,7 +640,7 @@ This section provides an exhaustive reference for internal services. Every metho
|
|
|
640
640
|
|
|
641
641
|
### 1. `RedisService` (`@bts-soft/cache`)
|
|
642
642
|
|
|
643
|
-
The `RedisService` is a high-level
|
|
643
|
+
The `RedisService` is a high-level facade orchestrating multiple specialized services (Core, String, Hash, List, Set, Geo, PubSub, Lock, etc.) to provide a comprehensive API for Redis operations.
|
|
644
644
|
|
|
645
645
|
#### Core Key-Value Operations
|
|
646
646
|
|