Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6876001
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:25:25+00:00 2026-05-27T04:25:25+00:00

How to clear pageFlowScopes and view caches from session when we are sure its

  • 0

How to clear pageFlowScopes and view caches from session when we are sure its no longer required?

Following clears pageFlowScope map in current request context

    RequestContext requestContext = RequestContext.getCurrentInstance();
    requestContext.getPageFlowScope().clear();

But if I dump http-session attributes I still see many instances of PageFlowscopes in the session

org.apache.myfaces.trinidadinternal.application.PageFlowScope.ois6p8lk1 
org.apache.myfaces.trinidadinternal.application.PageFlowScope.ois6p8lk2 
org.apache.myfaces.trinidadinternal.application.PageFlowScope.ois6p8lk3 

and view caches as well

org.apache.myfaces.trinidadinternal.application.VIEW_CACHE.1qvzgdgkw
org.apache.myfaces.trinidadinternal.application.VIEW_CACHE.2qvzgdgkw
org.apache.myfaces.trinidadinternal.application.VIEW_CACHE.3qvzgdgkw

Obviously if I clear session attributes it will all go away but I don’t want to do that, Is there any other way ?

Using

  • trinidad-api-1.0.10.jar
  • myfaces-impl-1.1.5.jar

EDIT

Also observed following attribute is kept in session forever, and the content grows over time

org.apache.myfaces.trinidadinternal.Change
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T04:25:26+00:00Added an answer on May 27, 2026 at 4:25 am

    PageFlowScope

    If not planning to use multiple pageflowscopes following entry in trinidad-config.xml can be altered

    <page-flow-scope-lifetime>1</page-flow-scope-lifetime>
    

    This will control number of org.apache.myfaces.trinidadinternal.application.PageFlowScope kept in session.


    VIEW_CACHE

    If not planning to use VIEW_CACHE following init params in web.xml can be configured to a minimal value.

    <context-param>
        <param-name>org.apache.myfaces.trinidad.CLIENT_STATE_MAX_TOKENS</param-name>
        <param-value>1</param-value>
    </context-param>    
    
    <context-param>
        <param-name>
            org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION
        </param-name>
        <param-value>1</param-value>
    </context-param>
    

    This will keep control over number of org.apache.myfaces.trinidadinternal.application.VIEW_CACHE kept in session


    trinidadinternal.Change

    I couldn’t find a way to to avoid this.


    Ended up using following method to cleanup

    @SuppressWarnings("unchecked")
    public static Map<String, Object> getSessionMap() {
        FacesContext context = FacesContext.getCurrentInstance();
        return context.getExternalContext().getSessionMap();
    }
    
    
    private void clearMyfacesSessionAttributes() {
        RequestContext requestContext = RequestContext.getCurrentInstance();
        requestContext.getPageFlowScope().clear();
        Map<String, Object> sessionMap = getSessionMap();
        Set<Map.Entry<String, Object>> entrySet = sessionMap.entrySet();
        for (Map.Entry<String, Object> entry : entrySet) {
            String key = entry.getKey();
            if(key.contains("org.apache.myfaces.trinidadinternal.application.VIEW_CACHE")
                    || key.contains("org.apache.myfaces.trinidadinternal.application.PageFlowScope")
                    || key.contains("org.apache.myfaces.trinidadinternal.Change"))
            {
                sessionMap.remove(key);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Pretty clear from the title itself, what is meant by porting an application X
Collection.clear() will delete children whenever Session flushes. What about OneToOne? Setting to null is
I'm not clear on the differences between the current version of Ruby (1.8) and
Its clear to me that I can customize the behavior of syncing models and
Not clear what is going on: I have the 2 following lines that works
I am still not clear in this: I want to fetch code from opensource
please clear the concept of view controller and ModelViewController
I have a clear button which seems to work..but actually its not. When I
I often want to clear the session store in Rails, in particular, the default
I am trying to clear missed call notifications from status bar programmatically but couldn't

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.