Skip to content

Instantly share code, notes, and snippets.

@thecodejunkie
Created December 2, 2012 21:19
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 thecodejunkie/4191120 to your computer and use it in GitHub Desktop.
Save thecodejunkie/4191120 to your computer and use it in GitHub Desktop.
Nancy lightning cache demo
using System;
using Nancy;
using Nancy.LightningCache.Extensions;
using Nancy.Routing;
public class Home : NancyModule
{
public Home()
{
Get["/"] = parameters => {
return View["index", new object()].AsCacheable(DateTime.Now.AddMinutes(1));
};
}
}
public class ApplicationBootrapper : Nancy.DefaultNancyBootstrapper
{
protected override void ApplicationStartup(Nancy.TinyIoc.TinyIoCContainer container, Nancy.Bootstrapper.IPipelines pipelines)
{
base.ApplicationStartup(container, pipelines);
this.EnableLightningCache(container.Resolve<IRouteResolver>(), ApplicationPipelines, new[] { "id", "query", "take", "skip" });
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment