mirror of https://github.com/abpframework/abp.git
Browse Source
Replace negation operator (!x.Processed) with equality comparison (x.Processed == false) in MongoDbContextEventInbox.GetWaitingEventsAsync to improve MongoDB query performance. This change converts the $ne operator to an equality match, allowing better index utilization and more efficient queries, especially for large collections.pull/22925/head
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue