Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
3answers
4k views

Singleton Per Call Context (Web Request) in Unity

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 web ...
24
votes
3answers
10k 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 ...
17
votes
1answer
249 views

When an array is created by a subexpression, what happens with the temporaries therein?

I was reading these two paragraphs of the FDIS (12.2p{4,5}): There are two contexts in which temporaries are destroyed at a different point than the end of the full-expression. The first context ...
16
votes
5answers
2k views

What should be the lifetime of an NHibernate session?

I'm new to NHibernate, and have seen some issues when closing sessions prematurely. I've solved this temporarily by reusing sessions instead of opening a session pr transaction. However, I was under ...
15
votes
2answers
474 views

Lifetime of temporaries

The following code works fine, but why is this correct code? Why is the "c_str()" pointer of the temporary returned by foo() valid? I thought, that this temporary is already destroyed when bar() is ...
11
votes
2answers
313 views

Lifetime of temporary bound to aggregate initialized struct member

Given the following code: class foo { }; class bar: public foo { public: ~bar() { printf("~bar()\n"); } }; class zab: public foo { public: ~zab() { printf("~zab()\n"); } }; struct ...
11
votes
3answers
248 views

Simulating activity death in Android

We know that when the system runs out of resources, an activity in background serializes its state and gets killed by the OS. When we resume it, the OS recovers the activity state by ...
9
votes
6answers
154 views

What is the “right” way to avoid Aliasing (e.g. when adding an element of a container to itself) in C++?

std::vector<int> a; a.push_back(1); a.push_back(a[0]); I just learned that the code above can be very dangerous. (If it's not obvious why, you're not alone... it wasn't obvious to me either.) ...
9
votes
6answers
1k views

C++ constant reference lifetime

I have code that looks like this: class T {}; class container { const T &first, T &second; container(const T&first, const T & second); }; class adapter : T {}; ...
7
votes
5answers
285 views

Do temporary objects have scope?

Names have scope (a compile-time property), while objects have lifetimes (a runtime property). Right? I often see people talking about temporary objects "going out of scope". But since a temporary ...
6
votes
5answers
1k 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 ...
4
votes
2answers
143 views

Passing std::forward_as_tuple() result to multiple functions that may move from that object's rvalue-reference members?

Edit: I think the most likely use case for what I'm asking about, is when creating a function that receives a tuple of rvalue-references from std::forward_as_tuple(). The reason this question came to ...
4
votes
2answers
72 views

What is the lifetime of the class data member which const reference to a rvalue?

Generally this discussion is up to the local function variable only: void foo (const int &i) { // use i till foo() ends } foo(3); But, does this rule applies to the class member also ? ...
4
votes
1answer
499 views

WP7: Push Notification Subscription Lifetime?

When a subscription has been created by a client/phone on the MPN-server, for how long is it alive? When will it become closed? Do my app-users have to start my app and create a new channel every now ...
3
votes
1answer
57 views

How to check MySQL cache lifetime?

Normally, MySQL clears the cache automatically, when the tables are modified. If there is any other query time limit which determine the lifetime, or generated cache could live for years, if the are ...
3
votes
2answers
148 views

Full-expression boundaries and lifetime of temporaries [closed]

Possible Duplicate: C++: Life span of temporary arguments? It is said that temporary variables are destroyed as the last step in evaluating the full-expression, e.g. bar( foo().c_str() ); ...
3
votes
1answer
176 views

Lifetime of temporary objects in SWIG's Python wrappers (?)

Edited 12 Feb I've just recently come up with an odd crash using some SWIG-generated Python wrappers for some C++ classes. It seems that the combination of SWIG and Python together are somewhat ...
3
votes
2answers
527 views

Check by id if an session exists, without renewing the session's lifetime

I'm working in a RIA. We use Memcached to store sessions, and I've installed http://pecl.php.net/package/memcache and my PHP session handler looks like this: $session_save_path = ...
3
votes
11answers
298 views

What is the life span of data?

Recently I’ve found myself in a database tangle where management wants the ability to remove data from the database, but still wants that data to appear in other places. Example: They want to remove ...
2
votes
1answer
40 views

WCF and container lifetime

I'm sure this is obvious but I haven't been able to find a very specific clean answer to the lifetime of a container in a IIS 7.5 hosted WCF service. If the container lives in my service code, it ...
2
votes
1answer
616 views

How to Leverage browser caching at ASP.net IIS 7.5

The following cacheable resources have a short freshness lifetime. Specify an expiry of at least one week in the future for the following resources: http://pagespeed.googlelabs.com suggest me this ...
2
votes
1answer
52 views

Lifetime of parameters

Excerpt from section 7.1 of "JavaScript: The Definitive Guide, 4th Edition": Note that these parameter variables are defined only while the function is being executed; they do not persist once the ...
2
votes
5answers
229 views

C++: constant reference to temporary

There are several questions about lifetime of constant reference on SO, but still I don't get it. Is this piece of code valid? struct S { const int &ref; S( const int &x ) : ref(x) { ...
2
votes
1answer
392 views

Unity: pass parameters to custom lifetime constructor, in xml configuration file

I wrote my CustomLifetimeManager like this: public class CustomLifetimeManager <T> : LifetimeManager { private readonly string _arg; public CustomLifetimeManager(string arg) { ...
2
votes
2answers
220 views

Application lifetime in ASP.NET

This should be a simple question but I haven't managed to find the answer on google. I would like to know, in terms an idiot can understand, exactly what application lifetime means in ASP.NET (and ...
2
votes
2answers
213 views

Lifetime of JavaScript variables

What is the lifetime of a variable in JavaScript, declared with "var". I am sure, it is definitely not according to expectation. <script> function(){ var a; var fun=function(){ // ...
2
votes
4answers
100 views

problem with delegate

I've made this to call unmanaged function from C code. pCallback is a function pointer so on the managed side is a delegate. [DllImport("MyDLL.dll")] public static extern Result SetCallback( ...
2
votes
2answers
442 views

Can I delete OpenGL vertex arrays after calling glDrawArrays?

I am generating the vertex arrays on the fly on each render and I want to delete the arrays afterwards. Does glDrawArrays immediately copy the vertex arrays to the server? Hence is it safe to delete ...
2
votes
1answer
256 views

Lifetime of a thrown object caught by reference

The C++ Standard, paragraph 15.1.4 sais: The memory for the temporary copy of the exception being thrown is allocated in an unspecified way, except as noted in 3.7.3.1. The temporary persists as ...
2
votes
2answers
866 views

WCF channel lifetime with repeat calls

Maybe this is an obvious question, maybe it isn't. Imagine a GUI control application where every button push calls a different function on a remote WCF service. Button usage is frequent at ...
2
votes
4answers
3k views

ASP.Net session life time issue

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 session ends? ...
1
vote
2answers
68 views

php manually session.gc_maxlifetime under Linux (Debian,Ubuntu) ignored. How to set alternative?

My Problem is quickly described by the need to extend the session data life over it's default settings within the php.ini without changing the php.ini. I am looking for a solution that can be applied ...
1
vote
2answers
68 views

Lifetime issues of QString

I have a class like this: class SomeClass { public: QString data; SomeClass(const QString &); }; and in the .cpp file: SomeClass::SomeClass(const QString &_data) { ...
1
vote
0answers
86 views

Is it important to use InitializeLifetimeService for windows service members

Does I have to set the InitializeLifetimeService on the members that should be running as long as my application or service is running? by example of my own experience Because I build some services ...
1
vote
2answers
1k views

MVC 3, Unity 2 - Per Request Lifetime Manager

I'm using the Unity MVC3 code at http://unitymvc3.codeplex.com/ to have a NHibernate session per request instance of my IUnitOfWork. It was working a few weeks ago, I've made some changes, and now ...
1
vote
4answers
251 views

How to set lifetime of session

How to set session lifetime in PHP ? I Want to set it to forever as long as the request is exist. The request is AJAX. My PHP code that handle AJAX request is: // AJAX.php <?php ...
1
vote
1answer
246 views

objective c Thread in Thread variables life time

I have an NSOperation where inside its -main method I use [NSThread detachNewThreadSelector:@selector(aMethod:) toTarget:self withObject:anArgument]; aObject (instance variable of my NSOperation ...
1
vote
1answer
161 views

.NET Remoting object Lifetime

I wrote this code: public class Message : MarshalByRefObject, IMessage { ... public override object InitializeLifetimeService() { ILease leas = (ILease) ...
1
vote
3answers
92 views

How long does an object in the CodeBehind live?

If I create an object in the code-behind of an .aspx page, how long can I expect that object to live? Will it live across post-backs? Could I pass it somehow to another page? Could I make it live as ...
1
vote
1answer
297 views

Lucene.NET lifetime management

Let's assume that I have a basic understanding of adding and searching documents. What would be the best practice for managing instances of IndexWriter and IndexReader? Currently, my application ...
1
vote
1answer
654 views

Session lifetime in node.js with express and MongoDB

I am using node.js with the express framework. As a session store I am using MongoDB. How can I set the lifetime after which the session objects are removed from MongoDB. This is how I am doing the ...
1
vote
1answer
175 views

Service lifetime problem

I currently have a thread that spawns and either pulls the next command off a queue and executes it or sleep for a bit and try again. However I do not want it to run if there are no more commands in ...
1
vote
2answers
391 views

Non-cancelable dialog being dismissed on search button click

I'm showing a non-cancelable dialog in my application, but it gets cancelled if the user presses SEARCH button. I've tried to override onSearchRequested and onKeyDown, but it doesn't help. Any ...
1
vote
4answers
158 views

Lifetime of implicitly casted temporaries

I have seen this question. It seems that regardless of the cast, the temporary object(s) will "survive" until the fullexpression evaluated. But in the following scenario: template<class T> ...
1
vote
1answer
270 views

How to extend Memcached item lifetime without getting it?

Can I extend a lifetime of a Memcached item without actually getting it? Sure, I can get the item, set it again and increase a lifetime. However, this way I'll have to copy the object to script's ...
1
vote
4answers
232 views

Lifetime of objects in a collection in VB.Net

I'm trying to figure out the lifetime of the tmpTabPages in the following bit of code. Lets assume the form has an empty TabControl named MyTabControl, that there's a collection of strings called ...
1
vote
1answer
788 views

setting and extending Session Lifetime using Zend_Auth

i use Zend_Auth for one of my Projects, but so far haven't figured out how to set the Lifetime for the Session, or how to extend it (lets say it should run 5 minutes and should reset to that when the ...
1
vote
1answer
481 views

working with generic lifetime managers in unity config section

I have the following generic lifetime manager public class RequestLifetimeManager<T> : LifetimeManager, IDisposable { public override object GetValue() { return ...
1
vote
2answers
452 views

Lifetime of the SSL session in https

We have an engaged (but friendly) discussion between coworkers about the life time of the SSL session underlying a https communication. When I establish a https connection to a server using a normal ...
1
vote
1answer
478 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 ...

1 2