So as i plan to make pretty heavy app (say 1000-3000+ hits a day) what best strategy i should choose for now ?
What's your experience with this ? Any suggestions and thoughts are welcome.
--
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clo...@googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
To unsubscribe from this group, send email to
clojure+u...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
---
You received this message because you are subscribed to the Google Groups "Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojure+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
2013/9/23 Roman Yakovlev <feli...@gmail.com>So as i plan to make pretty heavy app (say 1000-3000+ hits a day) what best strategy i should choose for now ?As long as you have enough RAM for the app not to swap in/out all the time, 3000 requests per day is child's play
for JVM-based services.What's your experience with this ? Any suggestions and thoughts are welcome.Anything you like. Building an überjar with Jetty and running that is more popular than all of the
above put together.
--