Cache Duplicates?

Hello, when I query to see all my meta data / cache key names, the names are duplicated like so:
Keyname
Keyname_0

It duplicates the name and adds a “_0” to the end of it.
Is this something that is couchbase related or possibly because
the way I am getting cache on my application? not sure

Has anyone seen this before?

SDK:PHP

document key is primary key in couchbase and it can’t have duplicates. This is user supplied value and couchbase will not add anything. May be your application is done that.
Check the document keys by issuing the following query.

SELECT META().id FROM buckename;

1 Like