About paths

2010-05-03 Thread Paulo Candido
I have a very basic doubt: I have a script, say "foo.clj" in a namespace "com.company.ns". "foo.clj" uses functions from another script, "bar.clj" in the same namespace. "foo"'s namespace has the line "(:use com.company.ns.bar)". It works in the REPL, it works inside Netbeans with Enclojure. Now

Re: memcached client

2009-09-30 Thread Paulo Candido
uot; 3600 topic)) > (.. mc (get "topic:1")) > (.. mc (getBulk coll)) > etc. > > Perhaps a simple macro wrappers to encapsulate some common patterns > would be a good enough approach. > > -Al > > > On Wed, Sep 30, 2009 at 7:11 PM, Paulo Candido > wr

memcached client

2009-09-30 Thread Paulo Candido
Hi, I am just learning Clojure (and Lisp) and I was thinking about developing a Clojure memcached client as an exercise. I am in doubt about the best way to do it. I could just write a thin wrapper around some existing Java memcached library (like Dustin Sallings' spymemcached or Greg Whalin's me