This is happening with the Admin user, immediately upon login, so it's
trying to load the default panes/portlets that the Admin user has in the
profile (I haven't changed that profile).

I'm only assuming the cache miss is my problem because that's all I see
in the log (I've got debug logging turned on). The cache miss is the
last entry in the log until I see 

[Tue Dec 17 17:10:56 CST 2002] -- DEBUG -- RegistryWatcher: Saving dirty
fragments.
[Tue Dec 17 17:10:56 CST 2002] -- DEBUG -- RegistryWatcher: Checking for
updated files.

which doesn't seem to be associated with the problem.

On Tue, 2002-12-17 at 11:01, David Sean Taylor wrote:
.
> >
> >
> Do you know which portlet it is?
> You can turn off expiration on the portlet.
> Its not clear to me why you think that the portlet expiring has anything to
> do with Jetspeed becoming 'unresponsive'.
> Is this always the last message logged?
> 
> [Tue Dec 17 16:47:58 CST 2002] -- INFO -- cache miss, object expired:
> 207822763user/admin/html/default.psml/321
> 
> 
> JetspeedPortletCacheService.java:
> 
>     /**
>      * Retrieves a Cacheable object from the cache.
>      *
>      * @param handle the identifier of the object we wish to retrieve
>      * @return the cacehd object or null if not found
>      */
>     public Cacheable getCacheable( String handle ) {
> 
>         CachedObject obj = null;
> 
>         try {
>             obj = GlobalCache.getObject( handle );
>         } catch (ObjectExpiredException e) {
>             Log.info( "cache miss, object expired: " + handle );
>         }
> 
>         if ( obj == null ) {
>             //Log.info( "cache miss: " + handle );
>             return null;
>         } /*else {
>             Log.info( "cache hit: " + handle );
>             } */
> 
>         return (Cacheable)obj.getContents();
> 
>     }
> 
> 
> 
> --
> To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
> 



--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to