Null objects after removing document from jsonstore collection

86 Views Asked by At

How can I remove objects from collection using remove() function without leaving null objects? When we delete the object using remove() it will be replaced by null. I don't want to keep the null objects in collection because of memory/performance.

1

There are 1 best solutions below

0
On

All the production ready versions of the JSONStore API (i.e. iOS, Android, WP8 and Windows 8) remove documents from the persistent store when the document being removed is not marked as dirty. You can use the markClean API to ensure the document is not dirty prior to calling the remove API to really remove it from the persistent store.

If you think there is a defect somewhere you may open a PMR here. If want to request new functionality you may open a feature request here.