19
votes
4answers
875 views
Can you help me understand this? “Common REST Mistakes: Sessions are irrelevant”
Disclaimer: I'm new to the REST school of thought, and I'm trying to wrap my mind around it.
So, I'm reading this page, Common REST Mistakes, and I've found I'm completely baffled …
12
votes
4answers
1k views
Django Sessions
I'm looking at sessions in Django, and by default they are stored in the database. What are the benefits of filesystem and cache sessions and when should I use them?
11
votes
4answers
542 views
Why does HttpServlet implement Serializable?
In my understanding of Servlet, the Servlet will be instantiated by the Container, his init() method will be called once, and the servlet will live like a singleton until the jvm i …
11
votes
16answers
1k views
PHP: $_SESSION - What are the pros and cons of storing temporarily used data in the $_SESSION variable
One thing I've started doing more often recently is retrieving some data at the beginning of a task and storing it in a $_SESSION['myDataForTheTask'].
Now it seems very convenien …
7
votes
7answers
218 views
Site slows for individual users, but they can switch browsers?
I've tried searching for this but it's pretty difficult to put into words.
Basically, our site will run fine for most users without any issues. Sometimes though, those of us who …
7
votes
9answers
542 views
What do I need to store in the php session when user logged in?
Currently when user logged in, i created 2 sessions.
$_SESSION['logged_in'] = 1;
$_SESSION['username'] = $username; // user's name
So that, those page which requires logged in, …
7
votes
7answers
224 views
What is a reliable method to record votes from anonymous users, without allowing duplicates
First of all, I searched as best I could and read all SO questions that seem relevant, but nothing specifically answered this. This is not a duplicate, afaik.
Obviously if anonymo …
7
votes
4answers
1k views
Any way to share session state between different applications in tomcat?
We want to split a working application in two different wars in order to be able to update one app without affecting the other. Each webapp will have different ui, different users …
7
votes
10answers
3k views
What is the best way to determine a session variable is null or empty in C#?
What is the best way to check for the existance of a session variable in ASP.NET C#?
I like to use String.IsNullOrEmpty works for strings and wondered if there was a similar met …
7
votes
11answers
2k views
Best way to deal with session timeout in web apps?
I am currently building an internal web application used in a factory/warehouse type location. The users will be sharing a single PC between several people, so we need to have a fa …
6
votes
2answers
804 views
NHibernate session management and lazy loading
I am having a heck of a time trying to figure out my session management woes in NHibernate. I am assuming that a lot of my trouble is due to lack of knowledge of IoC and AOP concep …
6
votes
2answers
573 views
Session null in ASP.Net MVC Controller Constructors
Hi,
Why is Session null in the constructors of Controllers? It can be accessed from Action methods. Presumably, because the MVC Routing framework is responsible for newing-up a Co …
6
votes
3answers
157 views
Does every access to $_SESSION immediatly involves an i/o with the file system?
Every time I access data in $_SESSION, Does it immediately update the session file on the disk, or just once when the process goes down? Or every n bytes of data change (flush)?
…
6
votes
4answers
647 views
How do PHP sessions work when cookies are disabled?
I've tried to research this mechanism but only find hints and these are not very consistent. How is the session _id sent to the browser and how is the browser instructed to return …
6
votes
2answers
317 views
Basic: How is the session id created?
Does IIS create the session id when a request is received and where is that saved (client or server)?
How does server recognize that the request is coming from the same user/sessi …
