Re: not all web applications have to scale - true, but I haven't worked on
one of those since about 1998 (this is an analog to Rich Hickey's statement
about not having to build non-concurrent programs in the last N years),
including "admin-like" things. Further: once you build all those
non-continu
Not every web application has to scale. I think that continuation based
stuff rocks for adminstration interfaces.
The main benefit with continuation based stuff, is that it's possible to
build something that is more application like, so that one can avoid
building wizards, and having to split up s
On Sun, Nov 29, 2009 at 11:09:00PM -0800, David Brown wrote:
>All of the persistent classes in Clojure, including continuations
>claim to implement Serializable. Not sure how well it actually works,
>but if implemented, it should be possible to send a closure even to a
>different machine.
Playin
On Sun, Nov 29, 2009 at 11:09:38PM -0500, Jim Powers wrote:
>Clearly what would be desired is portable continuations that can be loaded
>on any machine and/or duplicated/replicated for failure cases.
All of the persistent classes in Clojure, including continuations
claim to implement Serializable
Not yet. :) You bring up some good points that I hadn't thought of
yet. The itch I was scratching was how to easily write a web
application for a limited number of users. I wanted to make that task
cheap enough to be something a single programmer could do very
quickly.
OTOH, your comments have spa
On Sun, Nov 29, 2009 at 7:21 PM, jim wrote:
> I finally got time to find the bug in my web application framework.
> Here is the code to the framework:
>
> http://intensivesystems.net/tutorials/code/web_session.clj
This does indeed look cool, but here's the problem I have with all of the
continu
I finally got time to find the bug in my web application framework.
Here is the code to the framework:
http://intensivesystems.net/tutorials/code/web_session.clj
And here is a very simple sample app:
http://intensivesystems.net/tutorials/code/web_app.clj
The top level app is defined like this: