@@ -142,7 +142,7 @@ ZoneTree is designed for ease of use, allowing developers to integrate and utili
142142### Basic Usage
143143
144144``` csharp
145- using Tenray . ZoneTree ;
145+ using ZoneTree ;
146146
147147using var zoneTree = new ZoneTreeFactory <int , string >()
148148 .OpenOrCreate ();
@@ -153,9 +153,9 @@ zoneTree.Upsert(39, "Hello ZoneTree");
153153### Creating a Database
154154
155155``` csharp
156- using Tenray . ZoneTree ;
157- using Tenray . ZoneTree .Comparers ;
158- using Tenray . ZoneTree .Serializers ;
156+ using ZoneTree ;
157+ using ZoneTree .Comparers ;
158+ using ZoneTree .Serializers ;
159159
160160var dataPath = " data/mydatabase" ;
161161
@@ -186,8 +186,8 @@ Large-scale LSM Trees require periodic maintenance to ensure optimal performance
186186** Example Usage:**
187187
188188``` csharp
189- using Tenray . ZoneTree ;
190- using Tenray . ZoneTree .Maintenance ;
189+ using ZoneTree ;
190+ using ZoneTree .Maintenance ;
191191
192192var dataPath = " data/mydatabase" ;
193193
@@ -223,7 +223,7 @@ By default, ZoneTree assumes that **default values** indicate deletion. This beh
223223In this example, ` -1 ` is used as the deletion marker for integer values:
224224
225225``` csharp
226- using Tenray . ZoneTree ;
226+ using ZoneTree ;
227227
228228using var zoneTree = new ZoneTreeFactory <int , int >()
229229 .SetIsDeletedDelegate ((in int key , in int value ) => value == - 1 )
@@ -240,7 +240,7 @@ For more control, define a custom structure to represent values and their deleti
240240
241241``` csharp
242242using System .Runtime .InteropServices ;
243- using Tenray . ZoneTree ;
243+ using ZoneTree ;
244244
245245[StructLayout (LayoutKind .Sequential )]
246246struct MyDeletableValueType
@@ -267,8 +267,8 @@ ZoneTree provides efficient mechanisms to iterate over data both **forward** and
267267### Forward and Backward Iteration
268268
269269``` csharp
270- using Tenray . ZoneTree ;
271- using Tenray . ZoneTree .Collections ;
270+ using ZoneTree ;
271+ using ZoneTree .Collections ;
272272
273273using var zoneTree = new ZoneTreeFactory <int , int >()
274274 .OpenOrCreate ();
@@ -297,8 +297,8 @@ while (reverseIterator.Next())
297297The ` ZoneTreeIterator ` supports the ` Seek() ` method to jump to any record with ** O(log(n))** complexity, useful for prefix searches and range queries.
298298
299299``` csharp
300- using Tenray . ZoneTree ;
301- using Tenray . ZoneTree .Collections ;
300+ using ZoneTree ;
301+ using ZoneTree .Collections ;
302302
303303using var zoneTree = new ZoneTreeFactory <string , int >()
304304 .OpenOrCreate ();
@@ -332,8 +332,8 @@ ZoneTree supports **Optimistic Transactions**, ensuring **ACID compliance** whil
332332
333333``` csharp
334334using System .Threading .Tasks ;
335- using Tenray . ZoneTree ;
336- using Tenray . ZoneTree .Transaction ;
335+ using ZoneTree ;
336+ using ZoneTree .Transaction ;
337337
338338using var zoneTree = new ZoneTreeFactory <int , int >()
339339 .OpenOrCreateTransactional ();
@@ -362,8 +362,8 @@ await transaction.CommitAsync();
362362``` csharp
363363using System ;
364364using System .Threading ;
365- using Tenray . ZoneTree ;
366- using Tenray . ZoneTree .Transaction ;
365+ using ZoneTree ;
366+ using ZoneTree .Transaction ;
367367
368368using var zoneTree = new ZoneTreeFactory <int , int >()
369369 .OpenOrCreateTransactional ();
@@ -395,7 +395,7 @@ catch (TransactionAbortedException)
395395``` csharp
396396using System ;
397397using System .Threading .Tasks ;
398- using Tenray . ZoneTree .Transactional ;
398+ using ZoneTree .Transactional ;
399399
400400public async Task < bool > ExecuteTransactionWithRetryAsync (ZoneTreeFactory < int , int > zoneTreeFactory , int maxRetries = 3 )
401401{
@@ -500,13 +500,13 @@ For more information and detailed documentation, visit the [ZoneTree.FullTextSea
500500
501501Explore comprehensive guides and API references to get the most out of ZoneTree:
502502
503- - ** [ Introduction] ( https://tenray.io /docs/ZoneTree/guide/introduction.html ) **
504- - ** [ Quick Start Guide] ( https://tenray.io /docs/ZoneTree/guide/quick-start.html ) **
505- - ** [ API Documentation] ( https://tenray.io /docs/ZoneTree/api/Tenray. ZoneTree.html ) **
506- - ** [ Tuning ZoneTree] ( https://tenray.io /docs/ZoneTree/guide/tuning-disk-segment.html ) **
507- - ** [ Features Overview] ( https://tenray.io /docs/ZoneTree/guide/features.html ) **
508- - ** [ Terminology] ( https://tenray.io /docs/ZoneTree/guide/terminology.html ) **
509- - ** [ Performance Details] ( https://tenray.io /docs/ZoneTree/guide/performance.html ) **
503+ - ** [ Introduction] ( https://zonetree.dev /docs/ZoneTree/guide/introduction.html ) **
504+ - ** [ Quick Start Guide] ( https://zonetree.dev /docs/ZoneTree/guide/quick-start.html ) **
505+ - ** [ API Documentation] ( https://zonetree.dev /docs/ZoneTree/api/ZoneTree.html ) **
506+ - ** [ Tuning ZoneTree] ( https://zonetree.dev /docs/ZoneTree/guide/tuning-disk-segment.html ) **
507+ - ** [ Features Overview] ( https://zonetree.dev /docs/ZoneTree/guide/features.html ) **
508+ - ** [ Terminology] ( https://zonetree.dev /docs/ZoneTree/guide/terminology.html ) **
509+ - ** [ Performance Details] ( https://zonetree.dev /docs/ZoneTree/guide/performance.html ) **
510510
511511---
512512
0 commit comments