{"id":28961327,"url":"https://github.com/alirezakhosravi/ignitecachingdistributed","last_synced_at":"2026-05-20T14:34:17.448Z","repository":{"id":85949647,"uuid":"160493406","full_name":"alirezakhosravi/IgniteCachingDistributed","owner":"alirezakhosravi","description":"Using Apache Ignite as distributed cache infrastructure in .net Core","archived":false,"fork":false,"pushed_at":"2018-12-16T11:57:53.000Z","size":3119,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-24T02:01:56.279Z","etag":null,"topics":["apache","cache","caching","distributedcache","dotnet-core","dotnetcore","ignite"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alirezakhosravi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-12-05T09:27:42.000Z","updated_at":"2022-04-25T00:27:17.000Z","dependencies_parsed_at":"2023-03-22T01:49:39.577Z","dependency_job_id":null,"html_url":"https://github.com/alirezakhosravi/IgniteCachingDistributed","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alirezakhosravi/IgniteCachingDistributed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alirezakhosravi%2FIgniteCachingDistributed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alirezakhosravi%2FIgniteCachingDistributed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alirezakhosravi%2FIgniteCachingDistributed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alirezakhosravi%2FIgniteCachingDistributed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alirezakhosravi","download_url":"https://codeload.github.com/alirezakhosravi/IgniteCachingDistributed/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alirezakhosravi%2FIgniteCachingDistributed/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261589893,"owners_count":23181433,"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":["apache","cache","caching","distributedcache","dotnet-core","dotnetcore","ignite"],"created_at":"2025-06-24T02:01:40.766Z","updated_at":"2026-05-20T14:34:17.394Z","avatar_url":"https://github.com/alirezakhosravi.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# IgniteCachingDistributed\nUsing Apache Ignite as distributed cache infrastructure in .net Core\n\nhttps://www.nuget.org/packages/Raveshmand.Cache.Ignite/\n\n## Simple configuration\n```\nservices.AddDistributedIgniteCache(option =\u003e\n{\n    option.Endpoints = new string[]\n        {\n            \"localhost:11211\",\n            \"localhost:47100\",\n            \"localhost:47500\",\n            \"localhost:49112\"\n        };\n    option.PersistenceEnabled = true;\n});\n```\n\n## Advanced Configuration\nfor advance configuration, see https://apacheignite-net.readme.io/docs/\n```\nIgniteConfiguration customConfiguration = new IgniteConfiguration\n  {\n      DiscoverySpi = new TcpDiscoverySpi\n      {\n          IpFinder = new TcpDiscoveryStaticIpFinder\n          {\n              Endpoints = new string[]\n              {\n                  \"localhost:11211\",\n                  \"localhost:47100\",\n                  \"localhost:47500\",\n                  \"localhost:49112\"\n              }\n          },\n          SocketTimeout = TimeSpan.FromSeconds(0.3)\n      },\n      IncludedEventTypes = EventType.CacheAll,\n      DataStorageConfiguration = new DataStorageConfiguration\n      {\n          DefaultDataRegionConfiguration = new DataRegionConfiguration\n          {\n              Name = \"defaultRegion\",\n              PersistenceEnabled = true\n          },\n          DataRegionConfigurations = new[]\n          {\n                  new DataRegionConfiguration\n                  {\n                      // Persistence is off by default.\n                      Name = \"inMemoryRegion\"\n                  }\n              }\n      },\n      CacheConfiguration = new[]\n      {\n          new CacheConfiguration\n          {\n              // Default data region has persistence enabled.\n              Name = \"persistentCache\"\n          },\n          new CacheConfiguration\n          {\n              Name = \"inMemoryOnlyCache\",\n              DataRegionName = \"inMemoryRegion\"\n          }\n      }\n  };\n  services.AddDistributedIgniteCache(option =\u003e \n  { \n      option.Configuration = customConfiguration;\n      option.SetActive = true;\n  });\n  ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falirezakhosravi%2Fignitecachingdistributed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falirezakhosravi%2Fignitecachingdistributed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falirezakhosravi%2Fignitecachingdistributed/lists"}