42 Star 48 Fork 22

曹鹏飞 / AngiesList.Redis

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

AL-Redis (AngiesList.Redis)

The AngiesList.Redis library contains a few useful classes:

  • A high performance Session State HttpModule that can replace the built-in Session module
  • A simple, bucketed Key-Value store

Redis Session State HttpModule (AngiesList.Redis.RedisSessionStateModule)

RedisSessionStateModule is a IHttpModule that can replace ASP.NET's default Session module. It has the following features/differences:

  • Session data is stored in Redis (duh)
  • This module does NOT do the per request locking that the default module does (see: http://msdn.microsoft.com/en-us/library/ms178587.aspx ), which means that multiple request under the same SessionId can be processed concurrently.
  • Session items are stored and accessed independently from items in a Redis Hash. So when session is saved at the end of a request, only the session items that were modified during that request need to be persisted to Redis.

To use with Integrated Pipeline mode: Create a remove then an add in the modules element inside the system.webServer element in your web.config like so:

<modules>
  <remove name="Session" />
	<add name="Session" type="AngiesList.Redis.RedisSessionStateModule, AngiesList.Redis" />
</modules>

For IIS 6 or earlier or Classic Pipeline mode: Do the same except in the httpModules element in the system.web element.


Bucketed Key-Value store (AngiesList.Redis.KeyValueStore)

Example usage:

var tags = KeyValueStore.Bucket("tags");
tags.Set("redis", "The swiss army knife data structure server");

var description = tags.GetStringSync("redis");

You can optionally set an expiration (in seconds) when you use Set:

KeyValueStore.Bucket("contentCache").Set("about_us", "We're awesome!", 600);

There are more getter methods:

  • For binary data (GetRawSync() returns byte[])
  • For whatever type T you want. GetSync returns T and handles the (de)serialization from and to T for you.
  • For callback based async operations, there are asyncronous version of all the Get_ methods. Example:
bigNumbers.Get<Int64>("a_trillion", (num, exc) => {
  if (exc == null) {
    //do something with num
  }
});

TODO:

  • add locking support (like the SQL Server provider), make it optional done.
  • add option to use different serializers
  • create a quick benchmark program

空文件

简介

asp.net用Redis做分布式Session 展开 收起
C#
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
C#
1
https://gitee.com/rakor/AngiesList.Redis.git
git@gitee.com:rakor/AngiesList.Redis.git
rakor
AngiesList.Redis
AngiesList.Redis
master

搜索帮助