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
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
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