Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 !!!!

share|improve this question
Is there a reason you can't query on the word and check based on that? – Ayende Rahien Sep 4 '12 at 9:44
I can easily do that, but due to the amount of items i need to query it will be too long. For example, if i have 100,000 new WordOccurrence objects i'd like to store, i'll have to query 100,000 times and update/store 100,000 times based on that (it's 200,000 queries). Back to my question, is there a better and faster way?? – SerenaJo Sep 5 '12 at 8:39

1 Answer

There are about a million words in English language. If I understand correctly, you have a word coming in and you need to check if word already exists in DB. If it exists, you increment occurrence by one, if new, you add a new raven document. Is there something I am missing.. where are you experiencing a challenge here? Write an index and query on that ... write code that does the update/add new document based on query result. "Taking long time" concerns are misplaced.. how long does it take , please share metrics?

share|improve this answer
you are correct! only that it's not only words it's can be different numbers as well. so in my case it's not 1mil it's around 20mil. every time i'm getting a batch of 100,000, more or less, new words and i need to run the scenario that you and i have written above (update/add a new word). for every batch it takes around 1 hour (100,00 times trying to select a word and then update or store it) i don't know if it is good enough or is there a better way. please share you thoughts :-) – SerenaJo Sep 6 '12 at 11:01
How are you getting these batches of 100,000 words.. is it a feed? or how does the process work? if you can, please detail a little bit more.. thanks – ZVenue Sep 10 '12 at 19:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.