I’ve done developing in several different web languages now. I’ve come
across a problem which might entail some background processing. One of
the things that really excited me about Java was the ability to create
servlets. Small little applications you write that are running in the
background and have a get() and post() function that your program
responds to. This would allow me to use threading in my web
applications. It also allows me to maintain some data in memory, rather
than pull it from the disk with every request.
Is there something equivalent available for RoR?