I generated 6000 objects in List, and stored List into Couchbase with memcached, but the Store method returned "false" without any messages, I don't know why 6000 rows data can not be stored but 2000 rows data works.
相关问题
- Generic Generics in Managed C++
- How to Debug/Register a Permanent WMI Event Which
- 'System.Threading.ThreadAbortException' in
- Bulk update SQL Server C#
- Should I use static function in c# where many call
Couchbase is not designed to store large lists of data as one object. You cannot change the 20MB limit. Therefore, to store your objects, you need to store each one separately.
See here for more information.