Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Last active September 14, 2016 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/9641e72d9a8367fbf5f7ebf071e8f1d4 to your computer and use it in GitHub Desktop.
Save dcomartin/9641e72d9a8367fbf5f7ebf071e8f1d4 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Net.Http;
using Newtonsoft.Json;
namespace Foundatio.Caching.Demo
{
class Program
{
private static ICacheClient _cache;
static void Main()
{
_cache = new InMemoryCacheClient
{
MaxItems = 3
};
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment