↧
Answer by noisesmith for Repository pattern in clojure
1) Group functions by shared subproblems. In our ORM we have a namespace for db interaction, a separate namespace for each target db, a namespace for model construction and query operations, a...
View ArticleRepository pattern in clojure
Being new to clojure, I would like some advice on implementing the repository pattern*.In an OO language, I would create a repository interface, a test and at least one db impl. I would instantiate...
View Article