Is it normal performance?
Cassandra is 10x faster - around 10 000 docs/sec.
I am testing on a single PC with 4 cores under Windows 10.
One document is 1 KB and has simple structure:
{‘content’:’…’}
I use N1QL query like this:
upsert into <bucket_name> (key, value) values (, {‘content’:<1KB_data>}), …, (, {‘content’:<1KB_data>})
i.e. one query contains 100 documents.
While testing, I see that CPU is 100% busy and 50% of CPU is used by memcached.exe.
If this performance (only 1000 docs/sec) is below normal, what could be the reason and how can it be tuned? Is it possible to reach performance comparable to that of Cassandra (i.e. 10 000 docs/sec)?