To run in production mode from the command line use "lein conjure server
-mode production". No files are reloaded in the production mode. You
should see a significant speed improvement.
-Matt Courtney
Now, Compojure will always be faster for simple webpages since Conjure
does so much extra work. However, for more complicated pages which
actually need Conjure's framework, the performance should be comparable.
If you want to reduce the session handling overhead, you could switch to
the memory-session-store. In session_config.clj, simply change all
references to database-session-store to memory-session-store. Let me
know if there is much improvement.
Also, if you find specific areas where conjure is much slower, let me
know, and I'll see if I can optimize them.
-Matt Courtney