Commit b5a11081 authored by mohammad.salama's avatar mohammad.salama

Added Indexing on MongoDB and modified Query for Optimizing Performance

parent a8c794e9
......@@ -34,6 +34,14 @@ namespace ScheduledMessagesHandler.MongoMessages
collection = database.GetCollection<BsonDocument>(myCollection);
var keys = Builders<BsonDocument>.IndexKeys.Ascending("timestamp").Ascending("status");
var indexOptions = new CreateIndexOptions { Background = true };
var indexModel = new CreateIndexModel<BsonDocument>(keys, indexOptions);
collection.Indexes.CreateOne(indexModel);
return "ok";
}
catch (Exception ex)
......@@ -79,7 +87,12 @@ namespace ScheduledMessagesHandler.MongoMessages
Builders<BsonDocument>.Filter.Eq("status", status)
);
var docs = collection.Find(filter).Limit(limit).ToList<BsonDocument>();
var sort = Builders<BsonDocument>.Sort.Ascending("timestamp");
var docs = collection.Find(filter)
.Limit(limit)
.Sort(sort)
.ToList<BsonDocument>();
if (docs.Count == 0)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment