hello,

1. Yes. Load depends on your application. Simple requests are handled
within a milisecond, but it really depends on what the handling of those
events takes. Same goes for memory consumption

2. There are many strategies. You can avoid the impact of an application by
a good support for URLs, so that a full reload of the session (which
happens when you'd restart a server) would put you back in the application
where you were. This would be mostly similar to what you get with other
frameworks. You can also use a reverse proxy that forwards sessions
depending on some prefix in the session ID, and deploy the new applciation
with a different session prefix, and configure your reverse proxy that new
sessions go to one instance while the old sessions are still served by the
old instance (e.g. by running them on separate ports). When there are no
sessions left in the old instance, you can kill it.

3. afaik Wt::Dbo has no features for automatic database migration. You will
have to run your migration scripts manually.

4. There's Wt's WTestEnvironment, or what kind of tests are you looking for?

BR,
Wim.



2013/5/9 Burak Kulakli <kula...@yahoo.co.uk>

> Hello,
>
> I've a couple of questions.
>
> 1. Is Wt convenient for internet Saas applications? On what load (Ex. how
> many active users, concurrent requests) it should keep working reasonably?
> Any known limits?
>
> 2. When a new version of my application comes, how can it be deployed
> without interrupting the active users (replace myapp.wt with its new
> version). I am planning to use built in http(s) server. Is it possible to
> update on background?
>
> 3. If I add a new attribute to a class whose objects are stored in
> database using Wt::Dbo, Is it possible to apply a patch to database. I
> mean, is there a class like a database-patcher which checks my new models
> and apply differences to database.
>
> 4. Does anyone use an automatic testing suite effectively. Any
> recommendations?
>
> Thanks a lot,
> Burak
>
>
> ------------------------------------------------------------------------------
> Learn Graph Databases - Download FREE O'Reilly Book
> "Graph Databases" is the definitive new guide to graph databases and
> their applications. This 200-page book is written by three acclaimed
> leaders in the field. The early access version is available now.
> Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
> _______________________________________________
> witty-interest mailing list
> witty-interest@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/witty-interest
>
>
------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
_______________________________________________
witty-interest mailing list
witty-interest@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/witty-interest

Reply via email to