#48

Add :max-threads option to the Jetty adapter

In some cloud environments, such as Heroku, the number of threads available to a process is limited. The Jetty adapter should therefore support a :max-threads option for limiting the number of threads ...

#47

Add a few type hints to avoid reflection

I have added a couple of type hints to ring.servlet & ring.core to fix reflection warnings. All tests pass.

  • Opened by ghoseb Dec 30, 2011
#46

Doc string typo fix

"Anything" -> "Any" Thanks for Ring! I'm new to Clojure and web development with Ring, Compojure, and Enlive has been awesome.

  • Opened by misfo Dec 7, 2011
#45

Simple README update for Clojure newbies like me : )

I just added a little extra information to the README file showing which dependency to add to your project.clj file to get started.

  • Opened by bitops Dec 6, 2011
  • 4 comments
#44

Accept keywords in keyword params (fix for #43)

The first commit adds tests that expose the bug. The second one is a fix.

#43

wrap-keyword-params doesn't work with wrap-multipart-params

It seems that the keyword-params middleware doesn't accept a map with keys that are keywords instead of strings. Multipart-params produces such a map on file upload. The input's name is passed ...

#42

Allow headers map/function for wrap-file?

Setting headers, particularly cache-control, can be very important when serving static files. This is especially true in an environment like Heroku, where you're relying on a server-side HTTP cache ...

  • Opened by jarrett Nov 17, 2011
  • 4 comments
#41

NPE when attempting to use cookie session store

In trying to use the CookieStore session store using non-default attributes, I encountered the following stack trace: java.lang.RuntimeException: java.lang.RuntimeException: java.lang.RuntimeException: ...

#40

Upgrade to Jetty 7.x

Any plans to upgrade to jetty 7.x?

  • Opened by vitalyper Oct 26, 2011
  • 3 comments
#39

Ger rid of reflection warnings

While trying to compile my own project with warn-on-reflection in Clojure 1.3.0 I got the following warnings in ring code. Reflection warning, ring/util/response.clj:50 - reference to field isDirectory ...