10
votes
3answers
2k views
What is the lifetime of a static variable in a C++ function?
If a variable is declared as static in a function's scope it is only initialized once and retains its value between function calls, we all know that but what exactly is its lifetime? When do its …
3
votes
2answers
336 views
Singleton Per Call Context (Web Request) in Unity
Hi,
A few days ago I had this issue with ASP.Net threading. I wanted to have a singleton object per web request. I actually need this for my unit of work. I wanted to instantiate a unit of work per …
3
votes
5answers
621 views
What is the lifetime of class static variables in C++ ?
If I have a class called Test ::
class Test
{
static std::vector<int> staticVector;
};
when does staticVector get constructed and when does it get destructed ?
Is it with the …
2
votes
4answers
671 views
ASP.Net session life time issue
Hello everyone,
I am confused about ASP or ASP.Net session life time (or life cycle) concepts. More specifically, my confusions are,
how did IIS magically knows a new session starts and an existing …
1
vote
1answer
111 views
How is the lifetime of a static class affected in a stateless asp.net application?
I've defined a helper class to keep track of a small dictionary of items. it stores this information as a static property, which is initialized in the static constructor. the list is very small and …
0
votes
1answer
32 views
mysql_connect connection lifetime
What happes when the scrip that made @mysql_connect($server, $user, $password) dies?
How long does it live?
Thank you!
0
votes
2answers
64 views
Where can I find a detailed view of the lifecycle of a Windows Service as developed in .NET?
Where can I find a detailed view of the lifecycle of a Windows Service as developed in .NET? I put my question this way because I am not sure that a detailed enough description can be posted here, but …
0
votes
1answer
381 views
What is the preferred way to handle this TCP connection in C#?
I have a server application (singleton, simple .NET console application) that talks to a GlobalCache GC-100-12 for the purpose of routing IR commands. Various .NET WinForm clients on the local network …
