{"id":18545575,"url":"https://github.com/traderinteractive/mongo-queue-csharp","last_synced_at":"2025-06-25T03:34:22.700Z","repository":{"id":7527606,"uuid":"8879024","full_name":"traderinteractive/mongo-queue-csharp","owner":"traderinteractive","description":"C# message queue using MongoDB as a backend","archived":false,"fork":false,"pushed_at":"2015-10-14T16:20:03.000Z","size":1538,"stargazers_count":27,"open_issues_count":5,"forks_count":11,"subscribers_count":23,"default_branch":"master","last_synced_at":"2025-04-10T12:40:38.378Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/traderinteractive.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-03-19T13:20:36.000Z","updated_at":"2023-08-24T07:07:51.000Z","dependencies_parsed_at":"2022-08-27T18:11:21.633Z","dependency_job_id":null,"html_url":"https://github.com/traderinteractive/mongo-queue-csharp","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/traderinteractive/mongo-queue-csharp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/traderinteractive%2Fmongo-queue-csharp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/traderinteractive%2Fmongo-queue-csharp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/traderinteractive%2Fmongo-queue-csharp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/traderinteractive%2Fmongo-queue-csharp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/traderinteractive","download_url":"https://codeload.github.com/traderinteractive/mongo-queue-csharp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/traderinteractive%2Fmongo-queue-csharp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261799012,"owners_count":23211312,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T20:20:58.777Z","updated_at":"2025-06-25T03:34:22.675Z","avatar_url":"https://github.com/traderinteractive.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"#mongo-queue-csharp\n[![Build Status](https://travis-ci.org/dominionenterprises/mongo-queue-csharp.png)](https://travis-ci.org/dominionenterprises/mongo-queue-csharp)\n\nC# message queue using MongoDB as a backend.\nAdheres to the 1.0.0 [specification](https://github.com/dominionenterprises/mongo-queue-specification).\n\n##Features\n\n * Message selection and/or count via MongoDB query\n * Distributes across machines via MongoDB\n * Multi language support through the [specification](https://github.com/dominionenterprises/mongo-queue-specification)\n * Message priority\n * Delayed messages\n * Running message timeout and redeliver\n * Atomic acknowledge and send together\n * Easy index creation based only on payload\n\n##Simplest use\n\n```csharp\nusing System;\nusing MongoDB.Bson;\nusing MongoDB.Driver;\nusing DominionEnterprises.Mongo;\n\nvar queue = new Queue(\"mongodb://localhost\", \"queues\", \"queue\");\nqueue.Send(new BsonDocument());\nvar message = queue.Get(new QueryDocument(), TimeSpan.FromMinutes(1));\nqueue.Ack(message);\n```\n\n##Build\n\nFor linux make sure [Mono](https://github.com/mono/mono) which comes with [xbuild](http://www.mono-project.com/Microsoft.Build) is installed.\nFor windows make sure [.NET SDK](http://www.microsoft.com/en-us/download/details.aspx?id=8279) which comes with\n[MSBuild](http://msdn.microsoft.com/en-us/library/dd393574.aspx) is installed.\nMake sure you are in the repository root.\n\nFor linux run:\n\n```bash\nxbuild DominionEnterprises.Mongo/DominionEnterprises.Mongo.csproj\n```\n\nFor windows run:\n\n```dos\nC:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\MSBuild.exe DominionEnterprises.Mongo\\DominionEnterprises.Mongo.csproj\n```\n\nand use the resulting `DominionEnterprises.Mongo/bin/Debug/DominionEnterprises.Mongo.dll` as a reference in your project.\n\n##Documentation\n\nFound in the [source](DominionEnterprises.Mongo/Queue.cs) itself, take a look!\n\n##Contact\n\nDevelopers may be contacted at:\n\n * [Pull Requests](https://github.com/dominionenterprises/mongo-queue-php/pulls)\n * [Issues](https://github.com/dominionenterprises/mongo-queue-php/issues)\n\n##Project build\n\nInstall and start [mongodb](http://www.mongodb.org).\nFor linux make sure [Mono](https://github.com/mono/mono) which comes with [xbuild](http://www.mono-project.com/Microsoft.Build) is installed.\nFor windows make sure [.NET SDK](http://www.microsoft.com/en-us/download/details.aspx?id=8279) which comes with\n[MSBuild](http://msdn.microsoft.com/en-us/library/dd393574.aspx) is installed.\nFor both make sure [nunit-console](http://www.nunit.org/index.php?p=nunit-console\u0026r=2.2.10) is installed.\nMake sure you are in the repository root.\n\nFor linux run:\n\n```bash\nsh build.sh\n```\n\nFor windows run:\n\n```dos\nbuild.bat\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftraderinteractive%2Fmongo-queue-csharp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftraderinteractive%2Fmongo-queue-csharp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftraderinteractive%2Fmongo-queue-csharp/lists"}