I was wondering if there is a way to delete records produced from a view?
Tue, 01/29/2013 - 01:36
tgrall
Offline
Joined: 09/05/2012
Groups: None
Hello,
Not it is not possible to "delete" data in a view. Remember that the map function is executed when the data are store on the disk.
So what you should do is:
- query the view (call the view)
- delete the document using the standard remove operation using the key returned by the view
Hello,
Not it is not possible to "delete" data in a view. Remember that the map function is executed when the data are store on the disk.
So what you should do is:
- query the view (call the view)
- delete the document using the standard remove operation using the key returned by the view
Regards
Tug
@tgrall