Skip to content

Commit 39ee144

Browse files
committed
Update docs
1 parent e1ebaad commit 39ee144

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

docs/index.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -543,19 +543,19 @@ <h4>🔄 Zero Breaking Changes</h4>
543543
<p>Use exactly like Laravel's Cache facade with automatic optimizations.</p>
544544
</div>
545545
<div class="feature-card">
546-
<h4>🔐 Encryption</h4>
546+
<h4>🔐 Encryption <span class="badge badge-success">NEW</span></h4>
547547
<p>Automatically encrypt sensitive cached data with pattern matching.</p>
548548
</div>
549549
<div class="feature-card">
550-
<h4>📁 Namespacing</h4>
550+
<h4>📁 Namespacing <span class="badge badge-success">NEW</span></h4>
551551
<p>Group cache keys by namespace for better organization and bulk operations.</p>
552552
</div>
553553
<div class="feature-card">
554-
<h4>⏱️ TTL Jitter</h4>
554+
<h4>⏱️ TTL Jitter <span class="badge badge-success">NEW</span></h4>
555555
<p>Prevent thundering herd with random TTL variation.</p>
556556
</div>
557557
<div class="feature-card">
558-
<h4>🔌 Circuit Breaker</h4>
558+
<h4>🔌 Circuit Breaker <span class="badge badge-success">NEW</span></h4>
559559
<p>Protect your app from cache backend failures with automatic fallbacks.</p>
560560
</div>
561561
</div>
@@ -879,7 +879,7 @@ <h2>Strategy Selection</h2>
879879
</tbody>
880880
</table>
881881

882-
<h2>🎯 Adaptive Compression (New!)</h2>
882+
<h2>🎯 Adaptive Compression</h2>
883883
<p>Auto-optimize compression levels based on data characteristics:</p>
884884

885885
<pre><code class="language-php">// Enable adaptive compression
@@ -893,7 +893,7 @@ <h2>🎯 Adaptive Compression (New!)</h2>
893893
SmartCache::put('hot_data', $frequentlyAccessed, 3600);
894894
SmartCache::put('cold_data', $rarelyAccessed, 3600);</code></pre>
895895

896-
<h2>💾 Lazy Loading (New!)</h2>
896+
<h2>💾 Lazy Loading</h2>
897897
<p>Load large datasets on-demand to save memory (30-50% savings):</p>
898898

899899
<pre><code class="language-php">// Enable lazy loading
@@ -907,7 +907,7 @@ <h2>💾 Lazy Loading (New!)</h2>
907907
// Only 3 chunks in memory at once
908908
}</code></pre>
909909

910-
<h2>🧠 Smart Serialization (New!)</h2>
910+
<h2>🧠 Smart Serialization</h2>
911911
<p>Auto-select best serialization method:</p>
912912

913913
<pre><code class="language-php">// Automatically chooses:
@@ -918,7 +918,7 @@ <h2>🧠 Smart Serialization (New!)</h2>
918918
SmartCache::put('data', $value, 3600);
919919
// Best method selected automatically</code></pre>
920920

921-
<h2>📏 Smart Chunk Sizing (New!)</h2>
921+
<h2>📏 Smart Chunk Sizing</h2>
922922
<p>Auto-calculate optimal chunk sizes based on cache driver:</p>
923923

924924
<pre><code class="language-php">// Enable smart chunk sizing
@@ -1137,7 +1137,7 @@ <h2>CLI Commands</h2>
11371137
<h1>🔧 Advanced Features</h1>
11381138

11391139
<div class="alert alert-info">
1140-
<strong>New Features!</strong> SmartCache now includes powerful features for production environments: Atomic Locks, Cache Memoization, Events, Adaptive Compression, Lazy Loading, and more!
1140+
<strong>Production Ready!</strong> SmartCache includes powerful features for production environments: Atomic Locks, Cache Memoization, Events, Adaptive Compression, Lazy Loading, and more!
11411141
</div>
11421142

11431143
<h2>🔒 Atomic Locks - Prevent Cache Stampede</h2>
@@ -1373,10 +1373,10 @@ <h2>Custom Optimization Strategies</h2>
13731373

13741374
<!-- New Features Tab -->
13751375
<div id="new-features" class="tab-container">
1376-
<h1>✨ New Features (v2.0)</h1>
1376+
<h1>✨ New Features (v1.6)</h1>
13771377

13781378
<div class="alert alert-success">
1379-
<strong>SmartCache v2.0</strong> introduces powerful new features for production environments: Encryption, Namespacing, TTL Jitter, Circuit Breaker, Rate Limiting, Cache Warming, and more!
1379+
<strong>SmartCache v1.6</strong> introduces powerful new features for production environments: Encryption, Namespacing, TTL Jitter, Circuit Breaker, Rate Limiting, Cache Warming, and more!
13801380
</div>
13811381

13821382
<h2>🔐 Encryption Strategy</h2>

0 commit comments

Comments
 (0)