Skip to content

Commit

Permalink
chore: modify test files and gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
FaizChishtie committed Sep 9, 2024
1 parent c6d9370 commit 4db40bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/target
.DS_Store
2 changes: 1 addition & 1 deletion test/load_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Configuration
vemcache_host = 'localhost'
vemcache_port = 7070
num_vectors = 100000
num_vectors = 100
vector_dim = 10

# Generate random vectors and write to Vemcache
Expand Down
4 changes: 2 additions & 2 deletions test/work_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# Configuration
vemcache_host = 'localhost'
vemcache_port = 7070
num_vectors = 100000
num_vectors = 1000
vector_dim = 5
num_operations = 1000 # Number of random operations to perform
num_operations = 100 # Number of random operations to perform

# Generate a list of keys for the vectors in Vemcache
keys = [f'vector{i}' for i in range(num_vectors)]
Expand Down

0 comments on commit 4db40bd

Please sign in to comment.