Hi,
I am using C SDK to store documents.
I inserted some normal documents and some corrupted - for example, Unicode characters in the key and in the document. After insertion of corrupted keys/documents “Retrieve Docs” on the Web Console fails for all documents (see attached image with error)
If I use “Classic Editor”, I can see documents but cannot delete corrupted entries.
What is the best practice to recover/clean up the Bucket?
Please see the code below that does store a new document
To easily recreate the problem you can use key like:
///////////////////////////////////////////////////////////
char tmp[16]; // This is a bad key
memset(tmp, 0, 16);
tmp[0] = ‘G’;
tmp[2] = ‘.’;
key size =3;
///////////////////////////////////////////////////