I have an object, WordOccurrence, with the following attributes:
- string word.
- int occurrence.
right now i have millions of instances of that WordOccurrence object stored in Raven - let's call it group A, and another 100 thousand instances of that object ready to be stored -we'll call it group B.
what is the best practice for the next Scenario:
foreach Wordoccurrence from group B i would like to check if it is already stored in Raven (if group A contains him), if so i'll like to update (increase) his occurrences in Raven (group A), else i'd like to add (store) that instance to raven.
- I tried to work with Linq with contains (select from A all those which B contains them, and then update all of them and store the rest of B), but it is not supported in Raven.
- I tried to do the above by building an dynamic OR query but it came too long.
- I read about patch request, but i can understand how can i use it ( if i can't update i'll like to store new instance, how to catch and handle a failure in case there is no object in Raven??).
for example, WordOccurrence wO1 = new WordOccurrence("hey", 2);
now if Raven has that document, update his occurrence (inc by 2), else store wO1 in Raven as a new document.
what is the best way to do so??
please give an code example.
10x !!!!