If I'm trying to save a list of items I want to save that has a count > 30 I get an error saying

The maximum number of requests (30) allowed for this session has been reached. Raven limits the number of remote calls that a session is allowed to make as an early warning system. Sessions are expected to be short lived, and Raven provides facilities like Load(string[] keys) to load multiple documents at once and batch saves.

What can I do to get around this? The problem with this error is I'm not loading, I'm trying to save documents. Any ideas would be appreciated. Thank you

link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

Call Session.Store with each of your objects before you call Session.SaveChanges.

link|improve this answer
2  
I called session Session.SaveChanges out side of my 'foreach' and it worked perfectly – Kai CriticallyAcclaimed Cooper Mar 23 '11 at 21:47
1  
You've been noticed: ayende.com/blog/4814/…. Perhaps you should rethink. – edoloughlin May 12 '11 at 12:15
feedback

Although not recommended; in special cases, you can set the Session.Advanced.MaxNumberOfRequestsPerSession property.

using (var docStore = store.Initialize())
   {
     using (var session = docStore.OpenSession())
      {
         session.Advanced.MaxNumberOfRequestsPerSession = 1000;
      }
   }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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