Re: mod_memcache: looking for users of this module

2009-04-12 Thread Graham Leggett
Xavier Beaudouin wrote: > My module is a mass virtual hosting system. It take data from ldap / > database uppon http request and point DocumentRoot in the correct place. > > I need some stuff to cache Host vs DocumentRoot into memory for a small > amount of time... eg about 10 minutes should be v

Re: mod_memcache: looking for users of this module

2009-04-12 Thread Xavier Beaudouin
Hello, Le 11 avr. 09 à 18:36, William A. Rowe, Jr. a écrit : Xavier Beaudouin wrote: I am the developper of mod_vhs and I wish to use mod_memcache as caching engine for my module. Is there any users of mod_memcache because I really like to see how I can use this code into my module. By

Re: mod_memcache: looking for users of this module

2009-04-11 Thread William A. Rowe, Jr.
Xavier Beaudouin wrote: > > I am the developper of mod_vhs and I wish to use mod_memcache as caching > engine for my module. > > Is there any users of mod_memcache because I really like to see how I > can use this code into my module. > > By the way, I really like to d

Re: mod_memcache: looking for users of this module

2009-04-11 Thread Graham Leggett
Xavier Beaudouin wrote: > I am the developper of mod_vhs and I wish to use mod_memcache as caching > engine for my module. > > Is there any users of mod_memcache because I really like to see how I > can use this code into my module. > > By the way, I really like to drop my

mod_memcache: looking for users of this module

2009-04-11 Thread Xavier Beaudouin
Hello, I am the developper of mod_vhs and I wish to use mod_memcache as caching engine for my module. Is there any users of mod_memcache because I really like to see how I can use this code into my module. By the way, I really like to drop my libhome stuff and use mod_dbd... But is

Re: Mod_memcache status

2009-01-05 Thread josh rotenberg
Haven't touched it in a long time. I'd be happy to pick it back up if there are specific things you wanted implemented. It didn't get much use. On Mon, Jan 5, 2009 at 5:41 AM, Akins, Brian wrote: > Anyone know anything about status of this? > http://code.google.com/p/modmemcache/ > > > -- > Brian

Mod_memcache status

2009-01-05 Thread Akins, Brian
Anyone know anything about status of this? http://code.google.com/p/modmemcache/ -- Brian Akins Chief Operations Engineer Turner Digital Media Technologies

Re: cache - cleaning up mod_memcache and making other caches their live easier

2008-02-11 Thread Akins, Brian
If anyone cares, here's how we do keys and vary in our cache: On store: Generate key: using url and r->args (we can ignore r->args per server, if needed) (http://www.domain.com/index.html?you=me) If(vary) { store the following info in meta file: cache_version_t - ala disk_cache (ours i

Re: cache - cleaning up mod_memcache and making other caches their live easier

2008-02-11 Thread Plüm , Rüdiger , VF-Group
> -Ursprüngliche Nachricht- > Von: Dirk-Willem van Gulik > Gesendet: Montag, 11. Februar 2008 13:12 > An: dev@httpd.apache.org > Betreff: Re: cache - cleaning up mod_memcache and making > other caches their live easier > > > On Feb 11, 2008, at 12:58

Re: cache - cleaning up mod_memcache and making other caches their live easier

2008-02-11 Thread Dirk-Willem van Gulik
On Feb 11, 2008, at 12:58 PM, Plüm, Rüdiger, VF-Group wrote: The contents of the cache is not protected by any means. So I do not see a security issue here. Somemone who has access to one cache entity has access to all. Agreed. But what I worry about is that you get some subtle interaction

Re: cache - cleaning up mod_memcache and making other caches their live easier

2008-02-11 Thread Plüm , Rüdiger , VF-Group
> -Ursprüngliche Nachricht- > Von: Dirk-Willem van Gulik > Gesendet: Montag, 11. Februar 2008 01:22 > An: dev@httpd.apache.org > Betreff: Re: cache - cleaning up mod_memcache and making > other caches their live easier > > > > > I currently do not un

Re: cache - cleaning up mod_memcache and making other caches their live easier

2008-02-10 Thread Dirk-Willem van Gulik
On Feb 10, 2008, at 10:45 PM, Ruediger Pluem wrote: 1. Some style nitpicks (especially indenting, sometimes typos in the comments) that make the patch sometimes hard to read. most files in cache seem out of sync with the .ident.pro file - so I guess I should do an reformat run. 3. Wh

Re: cache - cleaning up mod_memcache and making other caches their live easier

2008-02-10 Thread Graham Leggett
Dirk-Willem van Gulik wrote: Before I embark on an experiment (without much design/planning) -- any thoughts ? Or has someone already done most of this and/or designed it properly ? mod_disk_cache has certainly received more attention than the other modules, and can probably be considered th

Re: cache - cleaning up mod_memcache and making other caches their live easier

2008-02-10 Thread Ruediger Pluem
On 02/10/2008 05:39 PM, Dirk-Willem van Gulik wrote: See below for some aloud thinking -- note that this is not yet well thought out (all I did was try to minimize the overlap between disk_cache, memcached, distcache and some commercial thing -- and tried to move as much RFC2616 knowled

Re: cache - cleaning up mod_memcache and making other caches their live easier

2008-02-10 Thread Dirk-Willem van Gulik
On Feb 10, 2008, at 2:12 PM, Dirk-Willem van Gulik wrote: Right now (only) mod_disk_cache is doing the 'right(tm)' thing w.r.t. to Vary - the other caches (mod_memcache as part of the distribution and a handful of memcached, distcache and commercial cache modules) are just act

cache - cleaning up mod_memcache and making other caches their live easier

2008-02-10 Thread Dirk-Willem van Gulik
Right now (only) mod_disk_cache is doing the 'right(tm)' thing w.r.t. to Vary - the other caches (mod_memcache as part of the distribution and a handful of memcached, distcache and commercial cache modules) are just acting on the URI (key). Bringing them in line involves a bit

Re: mod_memcache??

2007-07-12 Thread josh rotenberg
Hi, So I've uploaded a 0.1.0 version of this. Definitely still pretty simple and rough but it seems to be working ok. I've got a few ideas for making the configuration a little nicer, and I'll probably try to implement them soon, but if you (Frank, et al) wanted to take a look and make suggestion

Re: mod_memcache??

2007-07-01 Thread josh rotenberg
Hi, I've got > 1 module projects using apr_memcache now, so this would actually come in handy for me. I've started some development, and created a google project for it at http://code.google.com/p/modmemcache/ I just checked in some untested, non functioning stub files to get the ball rolling. I

Re: mod_memcache??

2007-07-01 Thread Akins, Brian
On 7/1/07 10:11 AM, "Frank" <[EMAIL PROTECTED]> wrote: > > I just wonder what has happen to this good idea? Did you start > implementing it? (Today I was thinking about implementing this, coz' I > need it) Never had the time. Project at work went a different direction. -- Brian Akins Chi

Re: mod_memcache??

2007-07-01 Thread Frank
Brian Akins wrote: I have a need to write a generic way to integrate apr_memcache into httpd. Basically, I have several otehr modules taht use memcached as [...] Basically, mod_memcache could have this config: MemCacheServer memcache1.turner.com:9020 min=8 smax=16 max=64 ttl=5 MemCacheServer

Re: mod_memcache??

2007-02-08 Thread Nick Kew
On Wed, 07 Feb 2007 16:56:28 -0800 Paul Querna <[EMAIL PROTECTED]> wrote: > >> Comments? > > > > Sounds slightly analagous to mod_dbd: what I describe as a service > > module in the book. Ending config duplication sounds like a Good > > Thing, for the same reasons as DBD. > > > > Couple of thou

Re: mod_memcache??

2007-02-07 Thread Paul Querna
Nick Kew wrote: > On Fri, 02 Feb 2007 09:11:16 -0500 > Brian Akins <[EMAIL PROTECTED]> wrote: > >> Basically, mod_memcache could have this config: >> >> MemCacheServer memcache1.turner.com:9020 min=8 smax=16 max=64 ttl=5 >> MemCacheServer memcache4.tur

Re: mod_memcache??

2007-02-07 Thread Nick Kew
On Fri, 02 Feb 2007 09:11:16 -0500 Brian Akins <[EMAIL PROTECTED]> wrote: > Basically, mod_memcache could have this config: > > MemCacheServer memcache1.turner.com:9020 min=8 smax=16 max=64 ttl=5 > MemCacheServer memcache4.turner.com:9020 min=8 smax=16 max=64 ttl=5 > MemC

Re: [EMAIL PROTECTED] Re: mod_memcache??

2007-02-05 Thread Mathieu CARBONNEAUX
oney [mailto:[EMAIL PROTECTED] To: dev@httpd.apache.org Sent: Mon, 05 Feb 2007 16:04:03 +0100 Subject: [EMAIL PROTECTED] Re: mod_memcache?? On 2/2/07, Brian Akins <[EMAIL PROTECTED]> wrote: > I have a need to write a generic way to integrate apr_memcache into httpd. > Basically, I ha

Re: mod_memcache??

2007-02-05 Thread Garrett Rooney
ot;user" an client to use with normal apr_memcache functions. The module could create the underlying mc at post_config. Basically, mod_memcache could have this config: MemCacheServer memcache1.turner.com:9020 min=8 smax=16 max=64 ttl=5 MemCacheServer memcache4.turner.com:9020 min=8 smax=16 m

mod_memcache??

2007-02-02 Thread Brian Akins
che functions. The module could create the underlying mc at post_config. Basically, mod_memcache could have this config: MemCacheServer memcache1.turner.com:9020 min=8 smax=16 max=64 ttl=5 MemCacheServer memcache4.turner.com:9020 min=8 smax=16 max=64 ttl=5 MemCacheServer memcache10.turner.com:9020