Re: mcache 0.1.0 released

2012-02-22 Thread David Martin
I had looked at that but it wouldn't be a good candidate for forking in this case, because the approaches are different. Clojure-memcached talks to the low-level memcached api via socket connections, whereas mcache uses the spymemcached Java library via java interop. -Dave On Mon, Feb 20, 2012

Re: mcache 0.1.0 released

2012-02-22 Thread DHM
On Feb 21, 5:58 am, Jim Crossley wrote: > DHM writes: > > I want to announce the release of mcache 0.1.0: > >https://github.com/davidhmartin/mcache > > Very nice. One thing you might consider is implementing > core.cache/CacheProtocol [1] in terms of mcache. I've done this [2] for > the Infinispa

Re: mcache 0.1.0 released

2012-02-21 Thread Jim Crossley
DHM writes: > I want to announce the release of mcache 0.1.0: > https://github.com/davidhmartin/mcache Very nice. One thing you might consider is implementing core.cache/CacheProtocol [1] in terms of mcache. I've done this [2] for the Infinispan data grid in Immutant. It'd be great to see anothe

Re: mcache 0.1.0 released

2012-02-20 Thread Leonardo Borges
There's this one: https://github.com/shughes/clojure-memcached It's two years old so definitely out of date but maybe worth forking? Cheers, Leonardo Borges www.leonardoborges.com On Sun, Feb 19, 2012 at 12:14 PM, DHM wrote: > Hi, > > I want to announce the release of mcache 0.1.0: > https://

mcache 0.1.0 released

2012-02-20 Thread DHM
Hi, I want to announce the release of mcache 0.1.0: https://github.com/davidhmartin/mcache This provides protocol-based support for memcached and memcached-like clients, with an implementation using spymemcached. I coded this up in support of a web site I'm developing. I didn't find much in the