This works, but I'm curious what the performance penalty is for dynamically passing in a namespace and resolving it using ns-resolve...
(ns bulbs.vertices)
(defn create
[config data]
((ns-resolve (:ns config) 'create-vertex) config data))
And then call it like this...
(ns bulbs.neo4jserver.graph
(:require [bulbs.vertices :as vertices])
(:require [bulbs.neo4jserver.client :as client]))
(defn graph
[& [config]]
(let [config (client/build-config config {:ns 'bulbs.neo4jserver.client})]
(fn [func & args]
(apply func config args))))
(def g (graph))
(g vertices/create {:name "James"})
(alter-var-root ...)after you've determined that? Then you would be able to use the function the normal way. Another approach is to dynamically decide which file to load that will define functions for a namespace. – Marko Topolnik May 14 '12 at 11:13