我创建了一个默认大小为 50M 的上限集合。最近,我注意到Cursor not found
当上限集合存储大小超过 50M 时出现错误。我不确定是什么原因造成的:在上限集合大小小于默认最大大小之前,我从未收到此错误。
if (this._cursor == null || this._cursor.IsDead)
{
var cursor = this._queueCollection.Find(Query.GT("_id", this._lastId))
.SetFlags(QueryFlags.AwaitData |
QueryFlags.TailableCursor |
QueryFlags.NoCursorTimeout)
.SetSortOrder(SortBy.Ascending("$natural"));
this._cursor =(MongoCursorEnumerator<QueueMessage<T>>)cursor.GetEnumerator();
}
try
{
if (this._cursor.MoveNext())
//do some things
return this._cursor.Current;
else
{
if (this._cursor.IsDead){
this._cursor.Dispose();
this._cursor=null;
}
}
return null;
}
catch{}
this._cursor.MoveNext ()会抛出cursor not found
异常(偶尔,并不总是抛出。我的代码错了吗?