I would like to store multiple configuration entries (which can be flexibly extended) in a data structure, something like this:
(def config [{:host "test", :port 1},{:host "testtest", :port 2}])
Later on I would like to iterate over and process each hash in that array.
Could somebody point out how to do that in Clojure?
configis a vector of maps. A hash generally refers to the number resulting from a hash function.