1- using System ;
2- using System . Diagnostics . CodeAnalysis ;
3- using RESPite ;
1+ using System . Diagnostics . CodeAnalysis ;
42
53// ReSharper disable once CheckNamespace
64namespace StackExchange . Redis ;
@@ -20,7 +18,6 @@ public partial interface IDatabase
2018 /// <param name="flags">The flags to use for this operation.</param>
2119 /// <returns><see langword="true"/> if the element was added; <see langword="false"/> if it already existed.</returns>
2220 /// <remarks><seealso href="https://redis.io/commands/vadd"/></remarks>
23- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
2421 bool VectorSetAdd (
2522 RedisKey key ,
2623 VectorSetAddRequest request ,
@@ -33,7 +30,6 @@ bool VectorSetAdd(
3330 /// <param name="flags">The flags to use for this operation.</param>
3431 /// <returns>The cardinality of the vectorset.</returns>
3532 /// <remarks><seealso href="https://redis.io/commands/vcard"/></remarks>
36- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
3733 long VectorSetLength ( RedisKey key , CommandFlags flags = CommandFlags . None ) ;
3834
3935 /// <summary>
@@ -43,7 +39,6 @@ bool VectorSetAdd(
4339 /// <param name="flags">The flags to use for this operation.</param>
4440 /// <returns>The dimension of vectors in the vectorset.</returns>
4541 /// <remarks><seealso href="https://redis.io/commands/vdim"/></remarks>
46- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
4742 int VectorSetDimension ( RedisKey key , CommandFlags flags = CommandFlags . None ) ;
4843
4944 /// <summary>
@@ -54,7 +49,6 @@ bool VectorSetAdd(
5449 /// <param name="flags">The flags to use for this operation.</param>
5550 /// <returns>The vector as a pooled memory lease.</returns>
5651 /// <remarks><seealso href="https://redis.io/commands/vemb"/></remarks>
57- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
5852 Lease < float > ? VectorSetGetApproximateVector (
5953 RedisKey key ,
6054 RedisValue member ,
@@ -68,7 +62,6 @@ bool VectorSetAdd(
6862 /// <param name="flags">The flags to use for this operation.</param>
6963 /// <returns>The attributes as a JSON string.</returns>
7064 /// <remarks><seealso href="https://redis.io/commands/vgetattr"/></remarks>
71- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
7265 string ? VectorSetGetAttributesJson ( RedisKey key , RedisValue member , CommandFlags flags = CommandFlags . None ) ;
7366
7467 /// <summary>
@@ -78,7 +71,6 @@ bool VectorSetAdd(
7871 /// <param name="flags">The flags to use for this operation.</param>
7972 /// <returns>Information about the vectorset.</returns>
8073 /// <remarks><seealso href="https://redis.io/commands/vinfo"/></remarks>
81- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
8274 VectorSetInfo ? VectorSetInfo ( RedisKey key , CommandFlags flags = CommandFlags . None ) ;
8375
8476 /// <summary>
@@ -89,7 +81,6 @@ bool VectorSetAdd(
8981 /// <param name="flags">The flags to use for this operation.</param>
9082 /// <returns>True if the member exists, false otherwise.</returns>
9183 /// <remarks><seealso href="https://redis.io/commands/vismember"/></remarks>
92- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
9384 bool VectorSetContains ( RedisKey key , RedisValue member , CommandFlags flags = CommandFlags . None ) ;
9485
9586 /// <summary>
@@ -100,7 +91,6 @@ bool VectorSetAdd(
10091 /// <param name="flags">The flags to use for this operation.</param>
10192 /// <returns>The linked members.</returns>
10293 /// <remarks><seealso href="https://redis.io/commands/vlinks"/></remarks>
103- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
10494 Lease < RedisValue > ? VectorSetGetLinks ( RedisKey key , RedisValue member , CommandFlags flags = CommandFlags . None ) ;
10595
10696 /// <summary>
@@ -111,7 +101,6 @@ bool VectorSetAdd(
111101 /// <param name="flags">The flags to use for this operation.</param>
112102 /// <returns>The linked members with their similarity scores.</returns>
113103 /// <remarks><seealso href="https://redis.io/commands/vlinks"/></remarks>
114- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
115104 Lease < VectorSetLink > ? VectorSetGetLinksWithScores (
116105 RedisKey key ,
117106 RedisValue member ,
@@ -124,7 +113,6 @@ bool VectorSetAdd(
124113 /// <param name="flags">The flags to use for this operation.</param>
125114 /// <returns>A random member from the vectorset, or null if the vectorset is empty.</returns>
126115 /// <remarks><seealso href="https://redis.io/commands/vrandmember"/></remarks>
127- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
128116 RedisValue VectorSetRandomMember ( RedisKey key , CommandFlags flags = CommandFlags . None ) ;
129117
130118 /// <summary>
@@ -135,7 +123,6 @@ bool VectorSetAdd(
135123 /// <param name="flags">The flags to use for this operation.</param>
136124 /// <returns>Random members from the vectorset.</returns>
137125 /// <remarks><seealso href="https://redis.io/commands/vrandmember"/></remarks>
138- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
139126 RedisValue [ ] VectorSetRandomMembers ( RedisKey key , long count , CommandFlags flags = CommandFlags . None ) ;
140127
141128 /// <summary>
@@ -146,7 +133,6 @@ bool VectorSetAdd(
146133 /// <param name="flags">The flags to use for this operation.</param>
147134 /// <returns><see langword="true"/> if the member was removed; <see langword="false"/> if it was not found.</returns>
148135 /// <remarks><seealso href="https://redis.io/commands/vrem"/></remarks>
149- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
150136 bool VectorSetRemove ( RedisKey key , RedisValue member , CommandFlags flags = CommandFlags . None ) ;
151137
152138 /// <summary>
@@ -158,7 +144,6 @@ bool VectorSetAdd(
158144 /// <param name="flags">The flags to use for this operation.</param>
159145 /// <returns>True if successful.</returns>
160146 /// <remarks><seealso href="https://redis.io/commands/vsetattr"/></remarks>
161- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
162147 bool VectorSetSetAttributesJson (
163148 RedisKey key ,
164149 RedisValue member ,
@@ -176,7 +161,6 @@ bool VectorSetSetAttributesJson(
176161 /// <param name="flags">The flags to use for this operation.</param>
177162 /// <returns>Similar vectors with their similarity scores.</returns>
178163 /// <remarks><seealso href="https://redis.io/commands/vsim"/></remarks>
179- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
180164 Lease < VectorSetSimilaritySearchResult > ? VectorSetSimilaritySearch (
181165 RedisKey key ,
182166 VectorSetSimilaritySearchRequest query ,
@@ -193,7 +177,6 @@ bool VectorSetSetAttributesJson(
193177 /// <param name="flags">The flags to use for this operation.</param>
194178 /// <returns>Members in the specified range as a pooled memory lease.</returns>
195179 /// <remarks><seealso href="https://redis.io/commands/vrange"/></remarks>
196- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
197180 Lease < RedisValue > VectorSetRange (
198181 RedisKey key ,
199182 RedisValue start = default ,
@@ -213,7 +196,6 @@ Lease<RedisValue> VectorSetRange(
213196 /// <param name="flags">The flags to use for this operation.</param>
214197 /// <returns>An enumerable of members in the specified range.</returns>
215198 /// <remarks><seealso href="https://redis.io/commands/vrange"/></remarks>
216- [ Experimental ( Experiments . VectorSets , UrlFormat = Experiments . UrlFormat ) ]
217199 System . Collections . Generic . IEnumerable < RedisValue > VectorSetRangeEnumerate (
218200 RedisKey key ,
219201 RedisValue start = default ,
0 commit comments