What would be the best no-sql alternative for storing user data with very high update rates and volume of data?
e.g dumping tens to hundreds of lines of user state / navigation state data per page request for a high volume site.
I'm currently looking at Mongo or Couch but am open to other alternatives.
EDIT (in response to kprobst's request): It would be hosted on Linux and multiple instances (either HW or VM) can be made available.
The system would used to store a site visitors state, 1-2 weeks for unauthenticated users and (potentially) indefinitely for authenticated users.
I think the current way of thinking within the business is to use CouchDB as we use it elsewhere, but I also keep reading it's the most under-performant for constant updating and there is the potential in this system to be updating 30 - 400 lines of json into multiple documents, per user, as a user interacts with the site (usage is expected to be very high).
Besides this state "dump" other user information would be stored and being able to querying that would be useful.