Asp 2.0: Cache Items Expiring in under a minute when set to 12 hou

G

Guest

On an xp machine, the caching works as expected. I have deployed to a win2k
server, and an item I add to the cache expires almost immediately some times
and in under a minute in other times. The aspnet_wp process is not restarting
during this time, and there are no other requests, so nothing should be
clearing this out. I have added a CacheItemRemovedCallback which writes debug
info out to a DefaultTraceListener, but no output shows up on the win2k
machine, but works as expected on the xp machine.

Caching code:

Cache.Insert(key, documents, null, Cache.NoAbsoluteExpiration,
TimeSpan.FromHours(12), System.Web.Caching.CacheItemPriority.Default,
DocumentsRemovedCallback);
 
K

Kevin Yu [MSFT]

Hi Adam,

We have reviewed this issue and are currently researching on it. We will
update you ASAP. Thanks for your patience!

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
S

Steven Cheng[MSFT]

Hi Adam,

See you again. Seems you've encountered another problem on your .net 2.0
deployment server ,yes? As for the caching expiration problem you
mentioned, I'm thinking it may related to the object's size you store in
the cache collection. What's the "documents" objects you stored and are
they of large size ? I'd suggest you also tries storing some small objects
with long period expiration to see whether it will also suffer this problem.

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)






--------------------
| Thread-Topic: Asp 2.0: Cache Items Expiring in under a minute when set to
12 hou
| thread-index: AcXm2YlgKw7h046lSNqgxEut1fz57A==
| X-WBNR-Posting-Host: 63.66.47.208
| From: "=?Utf-8?B?QWRhbQ==?=" <[email protected]>
| Subject: Asp 2.0: Cache Items Expiring in under a minute when set to 12
hou
| Date: Fri, 11 Nov 2005 08:04:03 -0800
| Lines: 20
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGXA03.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:357398
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| On an xp machine, the caching works as expected. I have deployed to a
win2k
| server, and an item I add to the cache expires almost immediately some
times
| and in under a minute in other times. The aspnet_wp process is not
restarting
| during this time, and there are no other requests, so nothing should be
| clearing this out. I have added a CacheItemRemovedCallback which writes
debug
| info out to a DefaultTraceListener, but no output shows up on the win2k
| machine, but works as expected on the xp machine.
|
| Caching code:
|
| Cache.Insert(key, documents, null, Cache.NoAbsoluteExpiration,
| TimeSpan.FromHours(12), System.Web.Caching.CacheItemPriority.Default,
| DocumentsRemovedCallback);
|
|
|
| --
| Adam Tuliper
| http://www.secure-coding.com
|
|
 
G

Guest

Kevin, has there been any update on this issue. I'm encoutering a very
similar situation on a windows 2000 development box.

thanks,
Paul
 
G

Guest

Hi Steven,
The size of the document is very small, I doubt in this case its related to
that as sometimes the exact same document stayts around (in all cases Im
seeing success and failure with the same info in the cache). It's a class
that serializes to probably under 1k.
Seems an exception occuring can possibly clear the cache, its being
investigated now at:
http://lab.msdn.microsoft.com/Produ...edbackid=7e050060-7c9e-410c-9c01-0279752cd1a0

Thanks for the response though
 
S

Steven Cheng[MSFT]

Thanks for your further followup and the update Adam,

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)

--------------------
| Thread-Topic: Asp 2.0: Cache Items Expiring in under a minute when set to
12
| thread-index: AcX3S+c3QQJCj8+CTtaMR9OshDYObw==
| X-WBNR-Posting-Host: 63.66.47.208
| From: "=?Utf-8?B?QWRhbQ==?=" <[email protected]>
| References: <[email protected]>
<[email protected]>
| Subject: RE: Asp 2.0: Cache Items Expiring in under a minute when set to
12
| Date: Fri, 2 Dec 2005 06:23:02 -0800
| Lines: 95
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250
| Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTNGXA03.phx.gbl
| Xref: TK2MSFTNGXA02.phx.gbl
microsoft.public.dotnet.framework.aspnet:362296
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Hi Steven,
| The size of the document is very small, I doubt in this case its related
to
| that as sometimes the exact same document stayts around (in all cases Im
| seeing success and failure with the same info in the cache). It's a class
| that serializes to probably under 1k.
| Seems an exception occuring can possibly clear the cache, its being
| investigated now at:
http://lab.msdn.microsoft.com/ProductFeedback/viewfeedback.aspx?feedbackid=7
e050060-7c9e-410c-9c01-0279752cd1a0
|
| Thanks for the response though
|
| --
| Adam Tuliper
| http://www.secure-coding.com
|
|
| "Steven Cheng[MSFT]" wrote:
|
| > Hi Adam,
| >
| > See you again. Seems you've encountered another problem on your .net
2.0
| > deployment server ,yes? As for the caching expiration problem you
| > mentioned, I'm thinking it may related to the object's size you store
in
| > the cache collection. What's the "documents" objects you stored and are
| > they of large size ? I'd suggest you also tries storing some small
objects
| > with long period expiration to see whether it will also suffer this
problem.
| >
| > Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| >
| >
| >
| >
| >
| >
| > --------------------
| > | Thread-Topic: Asp 2.0: Cache Items Expiring in under a minute when
set to
| > 12 hou
| > | thread-index: AcXm2YlgKw7h046lSNqgxEut1fz57A==
| > | X-WBNR-Posting-Host: 63.66.47.208
| > | From: "=?Utf-8?B?QWRhbQ==?=" <[email protected]>
| > | Subject: Asp 2.0: Cache Items Expiring in under a minute when set to
12
| > hou
| > | Date: Fri, 11 Nov 2005 08:04:03 -0800
| > | Lines: 20
| > | Message-ID: <[email protected]>
| > | MIME-Version: 1.0
| > | Content-Type: text/plain;
| > | charset="Utf-8"
| > | Content-Transfer-Encoding: 7bit
| > | X-Newsreader: Microsoft CDO for Windows 2000
| > | Content-Class: urn:content-classes:message
| > | Importance: normal
| > | Priority: normal
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| > | NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250
| > | Path: TK2MSFTNGXA02.phx.gbl!TK2MSFTNGXA03.phx.gbl
| > | Xref: TK2MSFTNGXA02.phx.gbl
| > microsoft.public.dotnet.framework.aspnet:357398
| > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| > |
| > | On an xp machine, the caching works as expected. I have deployed to a
| > win2k
| > | server, and an item I add to the cache expires almost immediately
some
| > times
| > | and in under a minute in other times. The aspnet_wp process is not
| > restarting
| > | during this time, and there are no other requests, so nothing should
be
| > | clearing this out. I have added a CacheItemRemovedCallback which
writes
| > debug
| > | info out to a DefaultTraceListener, but no output shows up on the
win2k
| > | machine, but works as expected on the xp machine.
| > |
| > | Caching code:
| > |
| > | Cache.Insert(key, documents, null, Cache.NoAbsoluteExpiration,
| > | TimeSpan.FromHours(12), System.Web.Caching.CacheItemPriority.Default,
| > | DocumentsRemovedCallback);
| > |
| > |
| > |
| > | --
| > | Adam Tuliper
| > | http://www.secure-coding.com
| > |
| > |
| >
| >
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,756
Messages
2,569,533
Members
45,007
Latest member
OrderFitnessKetoCapsules

Latest Threads

Top