Projects tagged ‘cache’ and ‘memcached’


Jump to tag:

Projects tagged ‘cache’ and ‘memcached’

Filtered by Project Tags cache memcached

Refine results Project Tags java (7) memcache (5) client (4) php (3) apc (3) caching (3) distributed (2) performance (2) mina (2) apache (2) server (2) c (1)

[19 total ]

4 Users

A simple, asynchronous, single-threaded memcached client written in java.
Created about 1 year ago.

1 Users

A multi-purpose Symfony caching plugin: - Provides Symfony 1.1+ cache classes for Symfony 1.0 (with an adapter for view caching). - Also provides a transparent and extensible API to cache objects ... [More] with the cache classes, for any version of Symfony. - A convenient way to get cache classes depending on your environment. - DebugBar/Logging for any cache class, with timing and hit/miss information. [Less]
Created 9 months ago.

1 Users

LayerCache is a simple caching framework for PHP5 which allows you to easily plug a multi-layer caching mechanism into your application. It implements the concept of layered caching where an item ... [More] can be cached in several layers. When you request an item, the framework reads from each cache in the stack. If the item is present, it's returned, if it isn't, it's retrieved from the source and stored in all caches in the stack. [Less]
Created 4 months ago.

0 Users

This project provides Memcached Session State and Cache Providers for ASP.net.
Created 11 months ago.

0 Users

This module allows your Apache 2.2.x installation to serve cached data quickly from one or more memcached server instances rather than from your file system. Like other caching modules available ... [More] (mod_file_cache, mod_disk_cache, mod_mem_cache, etc.) this module lets you configure some basic parameters in your httpd.conf to enable caching based on specific criteria. Unlike the others, mod_memcache_cache allows cached data to be shared across multiple Apache instances. Note that this module is different that the Apache distributions mod_mem_cache, which cache's data in the running httpd process memory. For more information on caching in Apache 2.2 see: http://httpd.apache.org/docs/2.2/caching.html [Less]
Created about 1 year ago.

0 Users

Ultra MemCached Java ClientWhy use Ultra MemCached clientLets face it, the reason you are using memcached is to make your application faster. Why would you use a client that wasn't built for speed? ... [More] Here is a list of performance items built into Ultra MemCached (some of which are yet to be done) Complete use of java.nio package for communication Non blocking IO so effective timeouts can be used Direct ByteBuffer pooling - used to read/write messages to channels Socket pooling Ability for custom Object encoders (TODO) Direct copy between String and ByteBuffer for packing messages Ability to pass "noreply" to storage requests (TODO) Asynchronous calling option (TODO) Operation object recycling Currently implemented calls (more coming):set get (single value) delete flush_all Ease of UseEvery client library should be flexible and easy to use. Ultra MemCached is no exception. Every operation call creates an object that you can set options on before running. Here are some examples: //simple set client.createSet("key", "My Value").run(); //set with no reply client.createSet("key", "My Value").setReply(false).run(); //set with custom value transcoder and timeout client.createSet("key", "My Value").setTimeout(500).setValueTranscoder(myEncoder).run();I think you get the idea. What about get operations: String value = (String)client.createGet("key").run().getValue(); [Less]
Created 2 months ago.

0 Users

当前最新版本为2.5.2。svn代码已经上传,有需要的同学可以直接下载使用maven来构建项目。 该项目是Memcache Java 客户端的实现 ... [More] 使用前先请下载帮助文档:在downloads中Memcached Client HandBook(特别注意对于第三方开源库版本依赖) 具体的代码,文档,测试内容都在Downloads 中可以获得 《MemCached Cache Java 客户端优化历程.doc》将描述详细的封装和优化过程 有任何问题可以联系wenchu.cenwc@alibaba-inc.com Memcache Client for Java Wrap and Optimize whalin memcache client. Optimize SocketIOPool Operation. add keyset function and cluster support and localcache + memcache support if you have any question,you can contact with me :). Email:wenchu.cenwc@alibaba-inc.com [Less]
Created about 1 year ago.

0 Users

memcached(http://www.danga.com/memcached/) is a high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by ... [More] alleviating database load. memcached4j is a clone of the C version of the memcached,but in pure Java. [Less]
Created about 1 year ago.

0 Users

Python CachePython cache implementations Author: DeWitt Clinton IntroductionThis library provides cache implementations that follow the memcache client API. BuildingFrom source: Download the ... [More] latest python-cache library from: http://code.google.com/p/python-cache/ Untar the source distribution and run: $ python setup.py build $ python setup.py installTesting With setuptools installed: $ python setup.py testWithout setuptools installed: $ python cache/cache_test.pyMore InformationPlease visit http://friendfeed.com/python-cache for more discussion. Getting the codeView the trunk at: http://python-cache.googlecode.com/svn/trunk/ Check out the latest development version anonymously with: $ svn checkout http://python-cache.googlecode.com/svn/trunk/ python-cacheLicense Copyright 2009 DeWitt Clinton All Rights Reserved. Licensed under the Apache License, Version 2.0 (the 'License'); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. [Less]
Created 4 months ago.

0 Users

Yet another memcached db server
Created about 1 year ago.