exonware-xwnode 0.0.1.23__py3-none-any.whl → 0.0.1.24__py3-none-any.whl

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.
Files changed (75) hide show
  1. exonware/__init__.py +1 -1
  2. exonware/xwnode/__init__.py +1 -1
  3. exonware/xwnode/add_strategy_types.py +1 -1
  4. exonware/xwnode/common/__init__.py +1 -1
  5. exonware/xwnode/common/graph/__init__.py +1 -1
  6. exonware/xwnode/common/graph/caching.py +1 -1
  7. exonware/xwnode/common/graph/contracts.py +1 -1
  8. exonware/xwnode/common/graph/errors.py +1 -1
  9. exonware/xwnode/common/graph/indexing.py +1 -1
  10. exonware/xwnode/common/graph/manager.py +1 -1
  11. exonware/xwnode/common/management/__init__.py +1 -1
  12. exonware/xwnode/common/management/manager.py +1 -1
  13. exonware/xwnode/common/monitoring/__init__.py +1 -1
  14. exonware/xwnode/common/monitoring/metrics.py +1 -1
  15. exonware/xwnode/common/monitoring/pattern_detector.py +1 -1
  16. exonware/xwnode/common/monitoring/performance_monitor.py +1 -1
  17. exonware/xwnode/common/patterns/__init__.py +1 -1
  18. exonware/xwnode/common/patterns/flyweight.py +1 -1
  19. exonware/xwnode/common/utils/__init__.py +1 -1
  20. exonware/xwnode/edges/strategies/__init__.py +1 -1
  21. exonware/xwnode/edges/strategies/base.py +1 -1
  22. exonware/xwnode/edges/strategies/bitemporal.py +1 -1
  23. exonware/xwnode/edges/strategies/bv_graph.py +1 -1
  24. exonware/xwnode/edges/strategies/compressed_graph.py +1 -1
  25. exonware/xwnode/edges/strategies/edge_list.py +1 -1
  26. exonware/xwnode/edges/strategies/euler_tour.py +1 -1
  27. exonware/xwnode/edges/strategies/graphblas.py +1 -1
  28. exonware/xwnode/edges/strategies/hnsw.py +1 -1
  29. exonware/xwnode/edges/strategies/hop2_labels.py +1 -1
  30. exonware/xwnode/edges/strategies/incidence_matrix.py +1 -1
  31. exonware/xwnode/edges/strategies/k2_tree.py +1 -1
  32. exonware/xwnode/edges/strategies/link_cut.py +1 -1
  33. exonware/xwnode/edges/strategies/multiplex.py +1 -1
  34. exonware/xwnode/edges/strategies/roaring_adj.py +1 -1
  35. exonware/xwnode/facade.py +1 -1
  36. exonware/xwnode/nodes/strategies/__init__.py +1 -1
  37. exonware/xwnode/nodes/strategies/adjacency_list.py +1 -1
  38. exonware/xwnode/nodes/strategies/art.py +1 -1
  39. exonware/xwnode/nodes/strategies/base.py +1 -1
  40. exonware/xwnode/nodes/strategies/bloom_filter.py +1 -1
  41. exonware/xwnode/nodes/strategies/bloomier_filter.py +1 -1
  42. exonware/xwnode/nodes/strategies/bw_tree.py +1 -1
  43. exonware/xwnode/nodes/strategies/contracts.py +1 -1
  44. exonware/xwnode/nodes/strategies/cow_tree.py +1 -1
  45. exonware/xwnode/nodes/strategies/crdt_map.py +1 -1
  46. exonware/xwnode/nodes/strategies/data_interchange_optimized.py +1 -1
  47. exonware/xwnode/nodes/strategies/dawg.py +1 -1
  48. exonware/xwnode/nodes/strategies/deque.py +1 -1
  49. exonware/xwnode/nodes/strategies/extendible_hash.py +1 -1
  50. exonware/xwnode/nodes/strategies/hamt.py +1 -1
  51. exonware/xwnode/nodes/strategies/hash_map.py +1 -1
  52. exonware/xwnode/nodes/strategies/hopscotch_hash.py +1 -1
  53. exonware/xwnode/nodes/strategies/interval_tree.py +1 -1
  54. exonware/xwnode/nodes/strategies/kd_tree.py +1 -1
  55. exonware/xwnode/nodes/strategies/learned_index.py +1 -1
  56. exonware/xwnode/nodes/strategies/linear_hash.py +1 -1
  57. exonware/xwnode/nodes/strategies/lsm_tree.py +1 -1
  58. exonware/xwnode/nodes/strategies/masstree.py +1 -1
  59. exonware/xwnode/nodes/strategies/persistent_tree.py +1 -1
  60. exonware/xwnode/nodes/strategies/priority_queue.py +1 -1
  61. exonware/xwnode/nodes/strategies/queue.py +1 -1
  62. exonware/xwnode/nodes/strategies/roaring_bitmap.py +1 -1
  63. exonware/xwnode/nodes/strategies/rope.py +1 -1
  64. exonware/xwnode/nodes/strategies/sparse_matrix.py +1 -1
  65. exonware/xwnode/nodes/strategies/stack.py +1 -1
  66. exonware/xwnode/nodes/strategies/t_tree.py +1 -1
  67. exonware/xwnode/nodes/strategies/veb_tree.py +1 -1
  68. exonware/xwnode/strategies/__init__.py +1 -1
  69. exonware/xwnode/version.py +2 -2
  70. exonware_xwnode-0.0.1.24.dist-info/METADATA +900 -0
  71. exonware_xwnode-0.0.1.24.dist-info/RECORD +130 -0
  72. exonware_xwnode-0.0.1.23.dist-info/METADATA +0 -188
  73. exonware_xwnode-0.0.1.23.dist-info/RECORD +0 -130
  74. {exonware_xwnode-0.0.1.23.dist-info → exonware_xwnode-0.0.1.24.dist-info}/WHEEL +0 -0
  75. {exonware_xwnode-0.0.1.23.dist-info → exonware_xwnode-0.0.1.24.dist-info}/licenses/LICENSE +0 -0
exonware/__init__.py CHANGED
@@ -4,7 +4,7 @@ exonware package - Enterprise-grade Python framework ecosystem
4
4
  Company: eXonware.com
5
5
  Author: Eng. Muhammad AlShehri
6
6
  Email: connect@exonware.com
7
- Version: 0.0.1.23
7
+ Version: 0.0.1.24
8
8
  Generation Date: 2025-01-03
9
9
 
10
10
  This is a namespace package allowing multiple exonware subpackages
@@ -10,7 +10,7 @@ data handling libraries like xdata.
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.0.1.23
13
+ Version: 0.0.1.24
14
14
  Generation Date: 07-Sep-2025
15
15
 
16
16
  Main Classes:
@@ -8,7 +8,7 @@ based on the inheritance audit.
8
8
  Company: eXonware.com
9
9
  Author: Eng. Muhammad AlShehri
10
10
  Email: connect@exonware.com
11
- Version: 0.0.1.23
11
+ Version: 0.0.1.24
12
12
  Generation Date: 08-Oct-2025
13
13
  """
14
14
 
@@ -6,7 +6,7 @@ Common utilities and patterns shared across xwnode.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  """
11
11
 
12
12
  # Export common patterns
@@ -8,7 +8,7 @@ Provides O(1) relationship queries with multi-tenant security isolation.
8
8
  Company: eXonware.com
9
9
  Author: Eng. Muhammad AlShehri
10
10
  Email: connect@exonware.com
11
- Version: 0.0.1.23
11
+ Version: 0.0.1.24
12
12
  Generation Date: 11-Oct-2025
13
13
  """
14
14
 
@@ -6,7 +6,7 @@ LRU cache manager for frequent relationship queries.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  Generation Date: 11-Oct-2025
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Graph manager contracts and enums.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  Generation Date: 11-Oct-2025
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Graph-specific error classes.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  Generation Date: 11-Oct-2025
11
11
  """
12
12
 
@@ -6,7 +6,7 @@ Multi-index manager for O(1) relationship lookups.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  Generation Date: 11-Oct-2025
11
11
  """
12
12
 
@@ -7,7 +7,7 @@ Optimizes relationship queries from O(n) to O(1).
7
7
  Company: eXonware.com
8
8
  Author: Eng. Muhammad AlShehri
9
9
  Email: connect@exonware.com
10
- Version: 0.0.1.23
10
+ Version: 0.0.1.24
11
11
  Generation Date: 11-Oct-2025
12
12
  """
13
13
 
@@ -6,7 +6,7 @@ Management module for xwnode.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  """
11
11
 
12
12
  # Import and export main components
@@ -12,7 +12,7 @@ This module provides the enhanced StrategyManager class that integrates:
12
12
  Company: eXonware.com
13
13
  Author: Eng. Muhammad AlShehri
14
14
  Email: connect@exonware.com
15
- Version: 0.0.1.23
15
+ Version: 0.0.1.24
16
16
  Generation Date: 07-Sep-2025
17
17
  """
18
18
 
@@ -6,7 +6,7 @@ Monitoring module for xwnode.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  """
11
11
 
12
12
  # Import and export main components
@@ -9,7 +9,7 @@ memory usage, and optimization recommendations.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 07-Sep-2025
14
14
  """
15
15
 
@@ -10,7 +10,7 @@ selection with sophisticated heuristics.
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.0.1.23
13
+ Version: 0.0.1.24
14
14
  Generation Date: 07-Sep-2025
15
15
  """
16
16
 
@@ -9,7 +9,7 @@ This enables data-driven strategy selection and performance tuning.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 07-Sep-2025
14
14
  """
15
15
 
@@ -6,7 +6,7 @@ Patterns module for xwnode.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  """
11
11
 
12
12
  # Import and export main components
@@ -10,7 +10,7 @@ configuration, which is especially important for high-throughput applications.
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.0.1.23
13
+ Version: 0.0.1.24
14
14
  Generation Date: 07-Sep-2025
15
15
  """
16
16
 
@@ -6,7 +6,7 @@ Utils module for xwnode.
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  """
11
11
 
12
12
  # Import and export main components
@@ -9,7 +9,7 @@ This package contains all edge strategy implementations organized by type:
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: January 2, 2025
14
14
  """
15
15
 
@@ -11,7 +11,7 @@ This module defines the abstract base classes for all edge strategy implementati
11
11
  Company: eXonware.com
12
12
  Author: Eng. Muhammad AlShehri
13
13
  Email: connect@exonware.com
14
- Version: 0.0.1.23
14
+ Version: 0.0.1.24
15
15
  Generation Date: January 2, 2025
16
16
  """
17
17
 
@@ -9,7 +9,7 @@ valid-time and transaction-time dimensions for audit and time-travel queries.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ compression including Elias-Gamma/Delta coding and reference lists.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ compression for power-law graphs.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 11-Oct-2025
14
14
  """
15
15
 
@@ -6,7 +6,7 @@ Edge List Edge Strategy Implementation
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  Generation Date: 11-Oct-2025
11
11
  """
12
12
 
@@ -9,7 +9,7 @@ with O(log n) link and cut operations.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ operations using semiring algebra.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ search using proximity graphs with hierarchical navigation.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ and distance queries using hub-based indexing.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ graph representation and queries.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 11-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ matrix representation using quadtree-based compression.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ path queries and updates using splay-based structure.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ with per-layer edge semantics and cross-layer analysis.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ for per-vertex neighbor sets with ultra-fast set operations.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
exonware/xwnode/facade.py CHANGED
@@ -9,7 +9,7 @@ a clean, intuitive interface.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 07-Sep-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ This package contains all node strategy implementations organized by type:
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: January 2, 2025
14
14
  """
15
15
 
@@ -15,7 +15,7 @@ Best Practices Implemented:
15
15
  Company: eXonware.com
16
16
  Author: Eng. Muhammad AlShehri
17
17
  Email: connect@exonware.com
18
- Version: 0.0.1.23
18
+ Version: 0.0.1.24
19
19
  Generation Date: October 12, 2025
20
20
  """
21
21
 
@@ -9,7 +9,7 @@ with O(k) complexity where k = key length.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 11-Oct-2025
14
14
  """
15
15
 
@@ -14,7 +14,7 @@ This module defines the complete abstract base class hierarchy for all node stra
14
14
  Company: eXonware.com
15
15
  Author: Eng. Muhammad AlShehri
16
16
  Email: connect@exonware.com
17
- Version: 0.0.1.23
17
+ Version: 0.0.1.24
18
18
  Generation Date: October 12, 2025
19
19
  """
20
20
 
@@ -14,7 +14,7 @@ probabilistic membership testing with no false negatives.
14
14
  Company: eXonware.com
15
15
  Author: Eng. Muhammad AlShehri
16
16
  Email: connect@exonware.com
17
- Version: 0.0.1.23
17
+ Version: 0.0.1.24
18
18
  Generation Date: October 12, 2025
19
19
  """
20
20
 
@@ -9,7 +9,7 @@ approximate key→value mapping with controlled false positive rates.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -14,7 +14,7 @@ with delta updates and atomic operations.
14
14
  Company: eXonware.com
15
15
  Author: Eng. Muhammad AlShehri
16
16
  Email: connect@exonware.com
17
- Version: 0.0.1.23
17
+ Version: 0.0.1.24
18
18
  Generation Date: October 12, 2025
19
19
  """
20
20
 
@@ -10,7 +10,7 @@ including the NodeType classification system for operation routing.
10
10
  Company: eXonware.com
11
11
  Author: Eng. Muhammad AlShehri
12
12
  Email: connect@exonware.com
13
- Version: 0.0.1.23
13
+ Version: 0.0.1.24
14
14
  Generation Date: 08-Oct-2025
15
15
  """
16
16
 
@@ -13,7 +13,7 @@ atomic snapshots and versioning capabilities.
13
13
  Company: eXonware.com
14
14
  Author: Eng. Muhammad AlShehri
15
15
  Email: connect@exonware.com
16
- Version: 0.0.1.23
16
+ Version: 0.0.1.24
17
17
  Generation Date: October 12, 2025
18
18
  """
19
19
 
@@ -9,7 +9,7 @@ data type with Last-Write-Wins semantics for distributed systems.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -19,7 +19,7 @@ Ultra-lightweight strategy specifically optimized for data interchange patterns:
19
19
  Company: eXonware.com
20
20
  Author: Eng. Muhammad AlShehri
21
21
  Email: connect@exonware.com
22
- Version: 0.0.1.23
22
+ Version: 0.0.1.24
23
23
  Generation Date: October 12, 2025
24
24
  """
25
25
 
@@ -9,7 +9,7 @@ of string sets with massive memory savings over standard tries.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -15,7 +15,7 @@ Best Practices Implemented:
15
15
  Company: eXonware.com
16
16
  Author: Eng. Muhammad AlShehri
17
17
  Email: connect@exonware.com
18
- Version: 0.0.1.23
18
+ Version: 0.0.1.24
19
19
  Generation Date: October 12, 2025
20
20
  """
21
21
 
@@ -6,7 +6,7 @@ Extendible Hash Node Strategy Implementation
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  Generation Date: 11-Oct-2025
11
11
  """
12
12
 
@@ -9,7 +9,7 @@ with structural sharing and efficient immutable operations.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 11-Oct-2025
14
14
  """
15
15
 
@@ -14,7 +14,7 @@ using Python's built-in dictionary.
14
14
  Company: eXonware.com
15
15
  Author: Eng. Muhammad AlShehri
16
16
  Email: connect@exonware.com
17
- Version: 0.0.1.23
17
+ Version: 0.0.1.24
18
18
  Generation Date: October 12, 2025
19
19
  """
20
20
 
@@ -9,7 +9,7 @@ open addressing with bounded neighborhood search.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ overlap queries using augmented balanced trees.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -9,7 +9,7 @@ queries and nearest neighbor search.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -14,7 +14,7 @@ to predict key positions instead of traditional tree traversal.
14
14
  Company: eXonware.com
15
15
  Author: Eng. Muhammad AlShehri
16
16
  Email: connect@exonware.com
17
- Version: 0.0.1.23
17
+ Version: 0.0.1.24
18
18
  Generation Date: October 12, 2025
19
19
 
20
20
  ==============================================================================
@@ -6,7 +6,7 @@ Linear Hash Node Strategy Implementation
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  Generation Date: 11-Oct-2025
11
11
  """
12
12
 
@@ -14,7 +14,7 @@ with eventual consistency and compaction.
14
14
  Company: eXonware.com
15
15
  Author: Eng. Muhammad AlShehri
16
16
  Email: connect@exonware.com
17
- Version: 0.0.1.23
17
+ Version: 0.0.1.24
18
18
  Generation Date: October 12, 2025
19
19
  """
20
20
 
@@ -9,7 +9,7 @@ for cache-friendly variable-length key operations.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 11-Oct-2025
14
14
  """
15
15
 
@@ -13,7 +13,7 @@ trees with structural sharing and lock-free concurrency.
13
13
  Company: eXonware.com
14
14
  Author: Eng. Muhammad AlShehri
15
15
  Email: connect@exonware.com
16
- Version: 0.0.1.23
16
+ Version: 0.0.1.24
17
17
  Generation Date: October 12, 2025
18
18
  """
19
19
 
@@ -15,7 +15,7 @@ Best Practices Implemented:
15
15
  Company: eXonware.com
16
16
  Author: Eng. Muhammad AlShehri
17
17
  Email: connect@exonware.com
18
- Version: 0.0.1.23
18
+ Version: 0.0.1.24
19
19
  Generation Date: October 12, 2025
20
20
  """
21
21
 
@@ -15,7 +15,7 @@ Best Practices Implemented:
15
15
  Company: eXonware.com
16
16
  Author: Eng. Muhammad AlShehri
17
17
  Email: connect@exonware.com
18
- Version: 0.0.1.23
18
+ Version: 0.0.1.24
19
19
  Generation Date: October 12, 2025
20
20
  """
21
21
 
@@ -14,7 +14,7 @@ bitmap operations with excellent performance for sparse data.
14
14
  Company: eXonware.com
15
15
  Author: Eng. Muhammad AlShehri
16
16
  Email: connect@exonware.com
17
- Version: 0.0.1.23
17
+ Version: 0.0.1.24
18
18
  Generation Date: October 12, 2025
19
19
  """
20
20
 
@@ -9,7 +9,7 @@ using a binary tree structure.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15