This is my first post on stack overflow, and I got here because I'm reading a book by Jon Skeet (you probably already know which one I'm talking about) - C# in depth, really nice book, and he said that he was active on this site, and since I'm really into programming I decided to check it out as well ;).

Anyways, I'm a young and interested developer (last year of "university" - I don't really know how to say it in English, so I hope this is right) and I'm currently running an internship with focuss on C#.

As the title says, I'm interested in articles which have some concrete information about stateless and stateful design in programming. I'm interested because I want to learn more about it, but I really can't find any good articles about it. I've read dozens of articles on the web which vaguely discuss the subject, or they're talking about web servers and sessions - which are also 'bout stateful vs stateless, but I'm interested in stateless vs stateful design of attributes in coding. Example: I've heard that BL-classes are stateless by design, entity classes (or atleast that's what I call them - like Person(id, name, ..)) are stateful, etc.

I think it's important to know, because I believe if I can understand it, I can write better code (e.g. granularity in mind).

Anyways, really short, here's what I know 'bout stateful vs stateless:

Stateful (like WinForms): Stores the data for further use, but limits the scalability of an application, because it's limited by CPU or memory limits

Stateless (Like ASP.NET - although ASP tries to be stateful with ViewStates): After actions are completed, the data gets transfered, and the instance gets handed back to the thread pool (Amorphous).

As you can see, it's pretty vague and limited information (and quite focussed on server interaction), so I'd be really grateful if you could provide me with some more tasty bits of information :)

Anyways, thanks for reading all of this, and I wish you a good day

Greetings

PS. sorry for any type of typos, I'm not English by design lol ;)

link|improve this question

if you really want an answer, you need to open a bounty on the question. But you can't do that until you earn some rep, and you do that by participating. – skaffman Mar 18 '11 at 13:13
feedback

2 Answers

up vote 1 down vote accepted

I suggest that you start from a question in StackOverflow that discusses the advantages of stateless programming. This is more in the context of fuctional programming, but what you will read also applies in other programming paradigms.

Stateless programming is related to the mathematical notion of a function, which when called with the same arguments, always return the same results. This is a key concept of the functional programming paradigm and I expect that you will be able to find many relevant articles in that area.

Another area that you could research in order to gain more understanding is RESTful web services. These are by design "stateless", in contrast to other web technologies that try to somehow keep state. (In fact what you say that ASP.NET is stateless isn't correct - ASP.NET tries hard to keep state using ViewState and are definitely to be characterized as statefull. ASP.NET MVC on the other hand is a stateless technology). There are many places that discuss "statelessness" of RESTful web services (like this blog spot), but you could again start from an SO question.

link|improve this answer
Alright, thanks for the info, I had a look at the link and I found some interesting information! Although I'm still open for more ;) – Team-JoKi Mar 25 '11 at 19:20
I've added another area that stateful and stateless is an important factor (RESTful web services). – kgiannakakis Mar 28 '11 at 6:37
Thanks for the info! I'd vote up your answer but I don't have enough rep yet >_> – Team-JoKi Mar 31 '11 at 7:17
feedback

A stateful app is one that stores information about what has happened or changed since it started running. Any public info about what "mode" it is in, or how many records is has processed, or whatever, makes it stateful.

Stateless apps don't expose any of that information. They give the same response to the same request, function or method call, every time. HTTP is stateless in its raw form - if you do a GET to a particular URL, you get (theoretically) the same response every time. The exception of course is when we start adding statefulness on top, e.g. with ASP.NET web apps :) But if you think of a static website with only HTML files and images, you'll know what I mean.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.