https://github.com/brantburnett/couchbasecacheexample
Example paradigm for using a Couchbase memcached bucket for a shared web farm cache
https://github.com/brantburnett/couchbasecacheexample
Last synced: 3 months ago
JSON representation
Example paradigm for using a Couchbase memcached bucket for a shared web farm cache
- Host: GitHub
- URL: https://github.com/brantburnett/couchbasecacheexample
- Owner: brantburnett
- Created: 2015-09-22T14:47:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-22T14:58:26.000Z (over 9 years ago)
- Last Synced: 2025-01-14T10:18:39.240Z (5 months ago)
- Language: C#
- Size: 484 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Couchbase Cache Example
This is an example of a Couchbase memcached implementation. It uses
a Couchbase cluster to cache database information to reduce load on your
RDBMS servers. It also uses dependency injection via Ninject to ensure that
only one request per object is made to the Couchbase cluster per page request.# Setup
This example expects a Couchbase cluster running on localhost, with the "default"
bucket configured in "Memcached" mode. You may add settings to Web.config and
adjust Global.asax to test on another cluster. You may adjust NinjectWebCommon.cs
to use a different bucket name.