KO
|
EN
gitlite — search
Search
#python
#ai
#typescript
#api
#react
#llm
#mcp
#android
#openai
#home-assistant
#react-native
#axios
mongodb-quartz-net
★ 52
Open GitHub ↗
MongoDB Job Store for Quartz.NET
Download README (.md)
Explore Similar Repositories
AspNetCoreQuartz
:
ASP.NET Core scheduling with Quartz.NET and SignalR
quartznet-RavenDB
:
RavenDB JobStore support for Quartz.NET scheduler.
quartz-cron-generator
:
Quartz Cron Generator - generates cron expressions for cron scheduler of Quartz.NET library
ProxyCrawler
:
代理爬虫服务,爬取代理IP并保存到 Redis 中, topshelf+Quartz.Net+redis
Sample-Quartz
:
Sample Quartz.NET Hosted Service
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
mongodb-quartz-net
?
Download (.md)
MongoDB Job Store for Quartz.NET ================================ Thanks to @chrisdrobison for handing over this project. ## Basic Usage ```cs var properties = new NameValueCollection(); properties[StdSchedulerFactory.PropertySchedulerInstanceName] = instanceName; properties[StdSchedulerFactory.PropertySchedulerInstanceId] = $"{Environment.MachineName}-{Guid.NewGuid()}"; properties[StdSchedulerFactory.PropertyJobStoreType] = typeof (MongoDbJobStore).AssemblyQualifiedName; // I treat the database in the connection string as the one you want to connect to properties[$"{StdSchedulerFactory.PropertyJobStorePrefix}.{StdSchedulerFactory.PropertyDataSourceConnectionString}"] = "mongodb://localhost/quartz"; // The prefix is optional properties[$"{StdSchedulerFactory.PropertyJobStorePrefix}.collectionPrefix"] = "prefix"; var scheduler = new StdSchedulerFactory(properties); return scheduler.GetScheduler(); ``` ## Nuget ``` Install-Package Quartz.Spi.MongoDbJobStore ```