Skip to content

Commit d60338d

Browse files
committed
remove the CACHEABLE flag for all vector set commands
currently, client side caching is not supported for vector set commands by the server
1 parent 53f0a29 commit d60338d

File tree

7 files changed

+0
-7
lines changed

7 files changed

+0
-7
lines changed

packages/client/lib/commands/VDIM.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { CommandParser } from '../client/parser';
22
import { RedisArgument, NumberReply, Command } from '../RESP/types';
33

44
export default {
5-
CACHEABLE: true,
65
IS_READ_ONLY: true,
76
/**
87
* Retrieve the dimension of the vectors in a vector set

packages/client/lib/commands/VEMB.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { RedisArgument, Command } from '../RESP/types';
33
import { transformDoubleArrayReply } from './generic-transformers';
44

55
export default {
6-
CACHEABLE: true,
76
IS_READ_ONLY: true,
87
/**
98
* Retrieve the approximate vector associated with a vector set element

packages/client/lib/commands/VGETATTR.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { RedisArgument, Command } from '../RESP/types';
33
import { transformRedisJsonNullReply } from './generic-transformers';
44

55
export default {
6-
CACHEABLE: true,
76
IS_READ_ONLY: true,
87
/**
98
* Retrieve the attributes of a vector set element

packages/client/lib/commands/VINFO.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { CommandParser } from '../client/parser';
22
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '../RESP/types';
33

44
export default {
5-
CACHEABLE: true,
65
IS_READ_ONLY: true,
76
/**
87
* Retrieve metadata and internal details about a vector set, including size, dimensions, quantization type, and graph structure

packages/client/lib/commands/VLINKS.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { CommandParser } from '../client/parser';
22
import { RedisArgument, ArrayReply, BlobStringReply, Command } from '../RESP/types';
33

44
export default {
5-
CACHEABLE: true,
65
IS_READ_ONLY: true,
76
/**
87
* Retrieve the neighbors of a specified element in a vector set; the connections for each layer of the HNSW graph

packages/client/lib/commands/VRANDMEMBER.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { CommandParser } from '../client/parser';
22
import { RedisArgument, BlobStringReply, ArrayReply, Command } from '../RESP/types';
33

44
export default {
5-
CACHEABLE: true,
65
IS_READ_ONLY: true,
76
/**
87
* Retrieve random elements of a vector set

packages/client/lib/commands/VSIM.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export interface VSimOptions {
1212
}
1313

1414
export default {
15-
CACHEABLE: true,
1615
IS_READ_ONLY: true,
1716
/**
1817
* Retrieve elements similar to a given vector or element with optional filtering

0 commit comments

Comments
 (0)