I have a problem statement where I have to add items to user list.
Example:
{
“itemId”: “sampleContent1”
“userId”: “User1”
"timestamp ": 2141234132
}
Assuming that I have inserted 10 contents for User1 (sampleContent1 …sampleContent10), how do I retrieve the most recently added content to user list WITHOUT USING N1QL.
Thanks… Document key may not help in my case. I have one more question with map/reduce views. Map reduce will return all document whatever I define in view EMIT. If I had to add filter like “userId=user1”, that can be done only in local memory right?