Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
3k views

Why Even Recycle an Application Pool?

Maybe someone can shed some light on this simple question: I have a .NET web application that has been thoroughly vetted. It loads a cache per appdomain (process) whenever one starts and can not ...
4
votes
3answers
2k views

IIS Recycle Global.asax

Is it possible to catch an recycle event in the global.asax? I know Application_End will be triggered but is there a way to know that it was triggered by a recycle of the application pool? thx, ...
3
votes
1answer
172 views

Strange behavior of ListActivity and Activity

I'm implementing an application for android and I run into memory issues while populating a list view with data from the internet. A strange error that occurs seems to be caused by the lack of ...
3
votes
3answers
1k views

Does a replacement for Gallery widget with View recycling exist?

The default Gallery widget on Android does not recycle views - everytime the view for a new position is called the widget always calls the getView method of the adapter with convertView set to null. ...
3
votes
1answer
420 views

WPF ListBox VirtualizingStackPanel.VirtualizationMode=“Recycling” causes same list items to always appear

I'm using WPF/.NET 4 and when I add the VirtualizingStackPanel.VirtualizationMode="Recycling" property to my ListBoxes, it causes the same list items to be repeated over and over when scrolling. For ...
3
votes
5answers
128 views

Any language: recycling Variables

This seems like a simple question to ask but, is it generally a good idea to re-use variables in any scripting language? I'm particularly interested in the reasons why it is/isn't good practice as ...
2
votes
1answer
50 views

ASP.NET Session Recycles

In an ASP.NET website we are storing sessions in SQL Server. All is working fine except that sessions frequently recycle. I've a timeout period set to 30 minutes but some times it recycles within a ...
2
votes
0answers
78 views

OnClickListener in Listview strange behaviour when click fast

My post refers to this question: OnClickListener in Listview populated with a CursorAdapter. When I click fast and a lot of time on the same button in my ListView, after a moment my app behaves as ...
2
votes
1answer
1k views

Should I set ASP.NET application pool to auto-recycle?

I have a number of ASP.NET (4.0) web applications that appear to leak (a small amount) of memory during each request. It is such a small amount, that for most use-cases, it will not grow to become a ...
2
votes
1answer
230 views

IIS 7.5: Initial request to website never gets loaded

When I browse my website first time, internet keeps spinning/loading. If I two seconds later try to load it again, everything works fine. It's like it's "sleeping". I think it must have something to ...
2
votes
1answer
139 views

What is the best way to force an Application Start when an Application Pool is recycled?

I'm wondering if there is a way to automagically fire off an Application Start for a web site/application whenever the Application Pool for that site is recycled? Are there any canned solutions for ...
2
votes
3answers
174 views

How to recycle my asp.net web application in production server?

I have made changes to my global.asax file so i want to recycle my web application to make the changes work. How to safely recycle my asp.net web application in production server? Any ideas..
2
votes
1answer
2k views

Stop IIS 7.5 Application Pool Recycling

How do stop application pools from recycling in IIS 7.5? I have configured the following settings: ProcessModel -> Idle Time-out (minutes) = 0 Recycling -> Regular Time Intervals (minutes) = 0 ...
2
votes
2answers
650 views

Are there any guarantees about when IIS might recycle while processing a 1-way WCF operation?

Background This question is in two parts. I have a one-way WCF operation hosted in IIS 6. The following is my understanding of how this works: _1. IIS receives a request. _2. IIS sends an ...
1
vote
1answer
13 views

Application_End being called too early/frequently

I am using a temporary database in a project that is disposed on Application_End: protected void Application_End() { if (_db != null) _db.Dispose(); } The problem is that Application_End seems ...
1
vote
1answer
418 views

IIS application pool recycling and “shutdown time limit” role in overlapping

When recycling happens, I want to move all new request to new w3wp (this is done automatically) and leave the previous w3wp to exit when it gets idle (whatever time it takes). There's a shutdown time ...
1
vote
1answer
395 views

Android - Recycling listview elements automatically?

I created a listview that has a custom SimpleCursorAdapter. I want to place a header in the first element in the list. 8 views fit on the screen at a time. When I scroll down to the ninth view, the ...
1
vote
3answers
148 views

temporarily prevent a UITableViewCell from being recycled

My UITableViewCells can accept input of data. While working in one cell, it would be perfectly natural for the user to want to scroll up, check something in another cell, then return to the first ...
1
vote
3answers
261 views

ByteBuffer recycling class

I'm wonder how I'd code up a ByteBuffer recycling class that can get me a ByteBuffer which is at least as big as the specified length, and which can lock up ByteBuffer objects in use to prevent their ...
0
votes
1answer
84 views

Recycling views, listview inside scrollview

I am aware of recycling of views in LiveView, I am also aware that we cannot have a listview as a child of scroll view, which just scrambles the scrolling up. I know the work around of using ...
0
votes
1answer
42 views

How to handle mobile number recycling by telephone companies?

I need to implement one user ID for one user. After looking around, closest I can see is using mobile phone numbers to text. Assuming this is best available method How to handle mobile number ...
0
votes
0answers
180 views

how to recycle bitmaps properly?

I have encountered an Out Of Memory exception. Than I tried to use recycle as in the code. Now I am facing a trying to use recycled bitmap exception. How can I recycle properly? This should only ...
0
votes
1answer
55 views

App Pool recycled because “Overwhelming Change Notification”

MY app pool has been recycling on its own recently because "Overwhelming Change Notification" on a folder which only has images. I didnt think that .Net would be dynamically compiling images. Can ...
0
votes
0answers
130 views

android: ListView and complex rows

I'm trying to implement an EPG app and I've been trying to figure out which widget would be best suited to hold a really large amount of data (we're talking 9k channels * 168 hours worth of programs). ...
0
votes
1answer
410 views

IIS 7.0 Application Pool Recycling log files

Which event log files does the IIS 7.0 Application Pool Recycling log to? I want to check out at what time the default app pool automatically recylces.
0
votes
2answers
645 views

What is worker process recycling…?

I would like to know what is exactly worker process recycling? What exactly it does at the time of worker process recycling? Worker process resides in application pool and can be configured through ...
0
votes
2answers
653 views

Does recycling the IIS7 application pool kill any currently executing requests?

Does recycling the IIS7 application pool kill any currently executing requests? Or does it wait for all requests to complete (like a drain-stop)? I don't want the recycling rules to cause ...
0
votes
0answers
51 views

Object Recycling in case of failover

Below is scneario for my problem. Please provide your inputs Environemnt details - Windows Service, C# framework 2.0 I have some third party tool which gives me DLL through which i create it's ...
0
votes
2answers
125 views

Recycle Application Mod_Mono 2.8

I have a CentOS 5.x server running Mono 2.8.1 and mod_mono 2.8 with apache2. Every time I deploy a site from visual studio 2010 to my server by ftp, and navigate to the site, I get a 404 not found ...
0
votes
3answers
1k views

Subclassing SimpleCursorAdapter to include convertView for memory conservation

I've been scouring throug the examples and tutorials but I can't seem to get my head around how to handle recycling within a subclassed SimpleCursorAdapter. I know that for regular ArrayAdapters you ...
0
votes
1answer
274 views

Wrong selection in ListBox with VirtualizationMode=“Recycling” and SeclectionMode=“Extended”?

I have a really strage behaviour. I have a ListBox in the View with a DataTemplate for its items including ViewModels. I bind the IsSelected to my ViewModel and use SelectionMode="Extended". ...
0
votes
1answer
1k views

Wpf item container recycling

I want to implement a custom canvas that recycles containers when used as an ItemsPanel. So I derived from VirtualizingPanel and override the ArrangeOverride and MeasureOverride. I am doing the ...
0
votes
4answers
143 views

Determinate when an object not used by any other threads without lock?

I implementing a high performance thread safe component, using no lock statements, only volatile and Interlocked are used for performance reasons. I have volatile reference-type member in a class, ...
0
votes
1answer
475 views

Silverlight VirtualizingPanel recycling containers display wrong content

I recently wrote an implementation of a VirtualizingWrapPanel that recycles containers as they scroll into and out of view. On occasion I've noticed that the content rendered by the control is ...
0
votes
2answers
579 views

IIS 6.0 recycle overlapping delay

Is it possible to add delay in overlapping iis 6.0 recycling? for example iis does not shutdown the old pool for 2 hours even the new app pool is live and processing requests. I`ve got sometimes a ...
0
votes
2answers
493 views

Recycling Options for ASP.Net Application State Object

What are the options for recycling the ASP.Net application state object? I'm using that object to store queues of database connections for a web serviced based data access layer. I'm concerned that ...
0
votes
1answer
1k views

How can I overcome a slow loading application with several app pools in IIS 7?

How can I overcome a slow loading application with several app pools in IIS 7 ? And not have requests wait for the server to load (in case of recycling) and create a queue. But have the server loaded ...
0
votes
4answers
2k views

asp.net WCF service slow… will disabling asp.net app recycling help?

I have a WCF service that requires a certain response time (under 1 minute). My problem is that every so often, most often in the mornings the service takes a long time to respond (sometimes over 2 ...