{"id":17932888,"url":"https://github.com/furkandeveloper/easycache","last_synced_at":"2025-07-09T14:36:23.717Z","repository":{"id":37891450,"uuid":"267146713","full_name":"furkandeveloper/EasyCache","owner":"furkandeveloper","description":" This library contains more than one cache provider for dotnet.","archived":false,"fork":false,"pushed_at":"2023-02-14T23:58:28.000Z","size":135,"stargazers_count":34,"open_issues_count":6,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-08T01:26:10.760Z","etag":null,"topics":["auto-cache","cache","cache-management","controller-cache","dotnet","dotnet-core","easy-cache","easy-caching","easycache","memcached","memory-cache","nuget","redis","response-caching"],"latest_commit_sha":null,"homepage":"https://furkandeveloper.github.io/EasyCache/","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/furkandeveloper.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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}},"created_at":"2020-05-26T20:37:07.000Z","updated_at":"2024-03-04T01:50:16.000Z","dependencies_parsed_at":"2024-06-19T09:58:15.678Z","dependency_job_id":"6754fcd4-b82e-439c-8d6d-ebab9c017911","html_url":"https://github.com/furkandeveloper/EasyCache","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/furkandeveloper/EasyCache","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkandeveloper%2FEasyCache","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkandeveloper%2FEasyCache/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkandeveloper%2FEasyCache/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkandeveloper%2FEasyCache/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/furkandeveloper","download_url":"https://codeload.github.com/furkandeveloper/EasyCache/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/furkandeveloper%2FEasyCache/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264476624,"owners_count":23614542,"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":["auto-cache","cache","cache-management","controller-cache","dotnet","dotnet-core","easy-cache","easy-caching","easycache","memcached","memory-cache","nuget","redis","response-caching"],"created_at":"2024-10-28T21:32:45.801Z","updated_at":"2025-07-09T14:36:23.455Z","avatar_url":"https://github.com/furkandeveloper.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://user-images.githubusercontent.com/47147484/97483794-f2755100-1968-11eb-9d7a-90b1433690ee.png\" style=\"max-width:100%;\" height=\"140\"  /\u003e\n\u003c/p\u003e\n\n[![CodeFactor](https://www.codefactor.io/repository/github/furkandeveloper/easycache/badge)](https://www.codefactor.io/repository/github/furkandeveloper/easycache)\n![Nuget](https://img.shields.io/nuget/dt/EasyCache.Core?label=EasyCache.Core%20Downloads)\n![Nuget](https://img.shields.io/nuget/v/EasyCache.Core?label=EasyCache.Core)\n![Nuget](https://img.shields.io/nuget/dt/EasyCache.Memory?label=EasyCache.Memory%20Downloads)\n![Nuget](https://img.shields.io/nuget/v/EasyCache.Memory?label=EasyCache.Memory)\n![Nuget](https://img.shields.io/nuget/dt/EasyCache.Redis?label=EasyCache.Redis%20Downloads)\n![Nuget](https://img.shields.io/nuget/v/EasyCache.Redis?label=EasyCache.Redis)\n![Nuget](https://img.shields.io/nuget/dt/EasyCache.MemCache?label=EasyCache.MemCache%20Downloads)\n![Nuget](https://img.shields.io/nuget/v/EasyCache.MemCache?label=EasyCache.MemCache)\n[![Maintainability](https://api.codeclimate.com/v1/badges/c84fe2700fb04bf913f6/maintainability)](https://codeclimate.com/github/furkandeveloper/EasyCache/maintainability)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\n# EasyCache\n\nHi, this library contains more than one cache provider.\n\nThus, you can easily change the provider in your applications without re-implementation.\n\n## Give a Star 🌟\nIf you liked the project or if EasyCache helped you, please give a star.\n\n# How to use EasyCache?\nEasyCache includes one more than cache provider. Choose any.\n\n## EasyCache for MemoryCache\nInstall `EasyCache.Memory` from [Nuget Package](https://www.nuget.org/packages/EasyCache.Memory)\n\nAdd `services.AddEasyMemoryCache()` in startup.cs\n\n```csharp\npublic void ConfigureServices(IServiceCollection services)\n{\n    services.AddControllers();\n    \n    services.AddEasyMemoryCache(); \u003c-- Initialize EasyCache for MemoryCache\n}\n```\nafter get `IEasCacheService` from dependency injection.\n\n```csharp\nprivate readonly IEasyCacheService easyCacheService;\n\npublic DefaultController(IEasyCacheService easyCacheService)\n{\n    this.easyCacheService = easyCacheService;\n}\n```\n\n\u003chr/\u003e\n\n## EasyCache for Redis\nInstall `EasyCache.Redis` from [Nuget Package](https://www.nuget.org/packages/EasyCache.Redis)\n\nAdd `services.AddEasyRedisCache()` in startup.cs\n\n```csharp\npublic void ConfigureServices(IServiceCollection services)\n{\n    services.AddControllers();\n    \n    services.AddEasyRedisCache(options=\u003e\n    {\n        options.Configuration = \"localhost\";\n        options.InstanceName = GetType().Assembly.GetName().Name\n    }); \u003c-- Initialize EasyCache for Redis\n}\n```\nafter get `IEasCacheService` from dependency injection.\n\n```csharp\nprivate readonly IEasyCacheService easyCacheService;\n\npublic DefaultController(IEasyCacheService easyCacheService)\n{\n    this.easyCacheService = easyCacheService;\n}\n```\n\n\u003chr/\u003e\n\n## EasyCache for MemCache\nInstall `EasyCache.MemCache` from [Nuget Package](https://www.nuget.org/packages/EasyCache.MemCache)\n\nAdd `services.AddEasyRedisCache()` in startup.cs\n\n```csharp\npublic void ConfigureServices(IServiceCollection services)\n{\n    services.AddControllers();\n    \n    services.AddEasyMemCache(options=\u003eoptions.AddServer(\"localhost\",11211)); \u003c-- Initialize EasyCache for MemCache\n}\n```\nafter get `IEasCacheService` from dependency injection.\n\n```csharp\nprivate readonly IEasyCacheService easyCacheService;\n\npublic DefaultController(IEasyCacheService easyCacheService)\n{\n    this.easyCacheService = easyCacheService;\n}\n```\n\n\u003chr/\u003e\n\nSee for more information [Wiki](https://github.com/furkandeveloper/EasyCache/wiki)\n\n## Support\n\nIf you are having problems, please let us know by [raising a new issue](https://github.com/furkandeveloper/EasyCache/issues/new/choose).\n\n\u003chr/\u003e\n\n![Alt](https://repobeats.axiom.co/api/embed/dd389955d475338637f2be8512b227262616c41b.svg \"Repobeats analytics image\")\n\n## Star History\n\n[![Star History Chart](https://api.star-history.com/svg?repos=furkandeveloper/EasyCache\u0026type=Date)](https://star-history.com/#furkandeveloper/EasyCache\u0026Date)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffurkandeveloper%2Feasycache","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffurkandeveloper%2Feasycache","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffurkandeveloper%2Feasycache/lists"}