Q: How to disable cache for a single portlet ?

Due to performance reasons I need to set the full page cache. But I have just one custom portlet on the home tab page which will count the logins. But the cache will prevent this portlet from getting the right value out of the DB. It would be pretty sad when I have to disable the full page cache because of this single portlet. I know that there's a way to set cache calls on portlet level. Can anyone shed a light on it. Thanks.

Hi Amjad,
I want to remove cache completely for a portlet. Is there any easy way of doing this. I tried to disable from Administer --> Cache. No luck.
I want to load the page every time from server. Please help me.
Thanks
Satyapal

Similar Messages

  • How to disable cache for a single query ?

    Hello BW Experts,
    I am running a Bex query. since the cache is not getting cleared it shows me wrong results. how to disable the cache settings for a single query ?
    are these settings different if you are running query using a web template..
    Please suggest.
    Thanks,
    BWer

    check also this post:
    Re: Query cache question

  • How to disable iMessage for a single contact?

    Hello apple communites, I have a simple and hopefully simple to answer question..
    I am curious as to how to disable iMessaging for a single contact.  My sister when she got her phone number originally had an iPhone, she has since gotten an android and kept the same phone number.  However I am running into issues with text messages to her, my phone still thinks she has an iPhone and continues to send every text as an iMessage, resulting in a failed message.  I can easily hit the "send again as a text message" option and the message/picture sends as normal.  I however find this a bit fustrating, and have tried everything I can think of to attempt to disable this.  However all the online tutorials I can find regarding disabling iMessage turns the feature off completly, I don't wish to do that. 
    I have attempted to completely delete, (including all existing all texts and call history), and then re-add the contact, but that does not work either, my iPhone still attempts to send messages to my sister as an iMessge. Any help, if any, would be appreciated. Thanks in advance.

    Your sister needs to disable iMessage on her iPhone if the iPhone is still available if she hasn't already done so.
    If she has, does she have iMessage enabled with the same Apple ID on another iOS device or on a Mac as was used to activate iMessage on her iPhone?

  • How to disable cache for a particular Report in obiee 10g?

    HI
    My name is Rani .Learning obiee10g ifaced 1 interview in that they asked me like how u disable cache for a particular report?

    In the advanced tab of the report, under prefix you need to mention:
    SET VARIABLE DISABLE_CACHE_HIT=1;
    Refer below link
    http://tipsonobiee.blogspot.com/2009/06/step-by-step-to-bypass-all-caches.html
    Thanks

  • How to disable caching for pcui applications

    Somehow the PCUI applications are cached and when we go to some opportunity and come back to the previous one,
    we can still see the changed data which is not actually saved to the Box but if we refresh the page it will go off.
    If we click on save, and if it has some error ,it wont save the opportunity but the changed data remains in the page something like Work protect in Portal.Couldnt find any options in portal and disabling cache for Iview didnt help.How can we disable the PCUI or Sever cache so that the unsaved data goes off..
    George

    Hello George,
    This can be done in two ways, one you can use transaction CRM_BSP_STATE_
    ERASE and delete all the previous states.
    Otherwise please append crm_bsp_restore=FALSE in the URL. This is
    explained in SAP Cookbook. Please have a look at the same. Kindly let
    me know for more information on the same.
    This issue  happens
    because of state manager which saves the state for individual
    application and individual user . This can be switched off by adding
    a URL parameter "CRM_BSP_RESTORE=FALSE" in the query string.
    Kindly please reffer the cook book for further  detail.
    Can you please try this & check if this helps.
    Thanks & Regards,
    Bhavya

  • How to disable Soundcheck for a single Album

    Hello,
    Soundcheck option in Preferences works pretty good for me, since I shuffle from classical to metal.
    But, inside a single album, say, an Opera which is meant to be fully played w/out pauses, I don't want the volume to be leveled throug Pianissimo and Forte tracks.
    Question:
    Is there any way to disable Soudcheck for a single Album so iTunes does NOT calculate peek levels on its tracks and does not set gain/loss accordingly?
    Or do I need to turn off Soundcheck on the iPod when I want to listen to that particular Album?
    I have tried "Volume level" slider but it sets the overall volume gain of the Album and not the relative level between tracks. Also the "pauseless" option (sorry, I use a localized version) is no solution.
    TIA

    Is there any way to disable Soudcheck for a single Album
    No.
    Or do I need to turn off Soundcheck on the iPod when I want to listen to that particular Album?
    Yes.

  • How to Disable cache for an especific Site??

    How i can disable in the CE 507 the Cache for one Web Site???

    The reply at the link says to configure a rule for "no-cache". This will not prevent the CE from making the request, it only tells the CE to not Cache it.
    Reading the question, I am not sure of exactly what the request is, but if the goal is to have the client go directly to the server, there are multiple ways to do this.
    If you want the client to make the connection to the site, you can you a redirect list on the WCCP router
    In the following example, traffic to 172.18.124.193 will not be redirected to the CE, but will go directly to the server.
    router# configure terminal
    router(config)# ip wccp web-cache redirect-list 120
    router(config)# access-list 120 deny ip any host 172.18.124.193
    router(config)# access-list 120 permit ip any any
    Or, you can create a static bypass entry on the CE using the bypass command. Bypass, like the router redirect list, requires the use of WCCP.

  • How to disable cache for the Dashbaord Prompt in OBIEE11G

    Hi Friends,
    I have a write back table with column a,b,c,d in the OBIEE. I am using column c as dashboard prompt for this report. I want to by pass the cache for the report as well as Prompt. I followed the following blog
    http://tipsonobiee.blogspot.com/2009/06/step-by-step-to-bypass-all-caches.html
    I was successful in bypassing the report cache...
    Its not working for dashbaord prompt... Let me know if you have any other ways to achieve this.
    Thanks
    Venkat

    Try to convert the prompt as SQL and use the same
    set variable DISABLE_CACHE_HIT=1 followed by your prompt query at 2nd line.
    ex: SET VARIABLE DISABLE_CACHE_HIT=1;SELECT Year FROM Day
    If helps mark
    Edited by: Srini VEERAVALLI on Apr 8, 2013 11:20 AM

  • How to invalidate cache for a single item?

    I m trying to invalidate cache for a particular item in the repository.
    I dont want to invalidate the whole cache.
    Is there a way to do that through dyn/admin?
    TIA

    You can create own component in dyn/admin to do this.
    1. Create a global component with the following properties
    /atg/dynamo/service/GSAInvalidatorService
    [repository of item to invalidate]
    [itemDescriptor]
    [repositoryId]
    2. Create method invalidateCache
    getGSAInvalidatorService().invalidate(getRepository(), getItemDescriptor(), getRepositoryId());
    or, this should work as well
    ItemDescriptor someItemDescriptor;
    someItemDescriptor.removeItemFromCache(getRepositoryId());
    Maybe try them both to see what works for you.
    -Michael

  • How to disable cache implementation in 8.1 SP6 for entity beans

    How to disable cache implementation in 8.1 SP6 for entity beans
    In our production environment, we want to disable cache implementation for entity beans. We are using weblogic 8.1 SP6.
    Weblogic cache implementation has been causing many cachefull exceptions so we want that it fetches the data from database everytime instead of cache.

    Check the "max-beans-in-cache" setting in your weblogic-ejb-jar.xml. The cache full exception, means that a new bean could not be created because of this cache being full.
    Nothing to do with fetching from the database directly.
    If you really want direct fetches then do not use beans at all. Consider using direct JDCB/SQL calls (without a entity bean) to fetch huge data.
    Let's again review your application based on the below explanation before making a decision on which configuration change to perform:
    If you truly have many ejbs simultaneously enrolled in transactions, then yes, the cache must be big enough to hold all the instances.
    Your cache must have a max size large enough to handle your peak simultaneous transaction load.
    Also, try to ask the following query to your application developer. Does every user actually have to have more than one bean in the cache ? Are many of these values read-only reference values that are not updated ?
    SOLUTION CHOICE:
    1. If you are testing with more number of users simultaneously, then you will need to increase the "max-beans-in-cache" setting in your weblogic-ejb-jar.xml to match the load.
    2. If you have few users but still seeing a lot of beans, then consult with your application developer and try to ask the above questions (Does every user have more than......) and based on that try to redesign/tune your application to make it an effective Entity bean model.
    3. If you have queries where huge result sets are returned, consider using plain/direct JDB/SQL calls.
    Arun

  • How to disable click for open a app mobile? i have picture.

    how to disable click for open a app mobile?
    How i do?
    why adobe captivate need to click for open app.
    i need to open auto.
    thank you

    Swiping down from the midle of the screen will open the search window on its upper section.

  • How to disable debugger for sapscript forms.

    How to disable debugger for sapscript forms.
    Once activated in se71-Utilities-Activate debugger I do not know how to disable it

    Thank you Rich
    I assigned you points for good answer on my preavious mail)
    . Actually my real problem is a transported the SAP script form “znalepke2” , printer definition ”nale”
    and device type “zststartsp” of a thermal printer.
    On original system (ak1) the printout is ok but on target system(ak2)
    not.
    Lateron I transported also :
    R3TR SCPD 1403(as the device type uses this character set)
    R3TR TABU TSP08 (All entries)
    R3TR TABU TSP1D(All entries)
    R3TR TABU TSP1T(All entries)
    I used also report  RSTXSCRP to traport form and device types. L
    Lately I discovered that when I performe printout preview I get also eronneous printout If I ssue an printout preview in language "EN" on system "ak1"(only on system ak1 and form preview in "SL" is oK. What steps you suggest me to solve the prolem
    Thank you in advance

  • How to Disable caching of all SSL pages?

    May anyone can help me, how to Disable caching of all SSL pages in an web application?
    Thanks in advance.
    Balamurugan.K

    sabre150 wrote:
    kajbj wrote:
    It doesn't matter that you are using SSL if I understood your question correctly. I'm not certain but I think it does matter. As I understand it, no SSL/HTTPS pages should be cached since this could represent a security weakness. I was a bit vague. I meant that it doesn't matter what he is using under the hood since he isn't doing any "programming" if he's only serving pages. Everything should be related to configuring the server correctly, and/or using the correct header directives (not sure since I'm not a web developer)

  • How to disable IPv6 for loopback adapter (lo0)

    I was wondering if anyone knows how to disable IPv6 for the loopback (lo0) adpater. I know how to do it for other adapters using the Network preferences pane, but lo0 doesn't appear there...
    Thanks,
    - alan

    I need to temporary disable ipv6 address of lo0 (which by the way is not 127.0.0.1 but ::1) for testing development purpose..

  • How to disable iMessage for certain contacts

    I was wondering how to disable iMessage for certain contacts!

    Try deleting the phone number from the persons contact and then re-entering it as a new number.
    You don't have to delete the entire contact.
    Worked for me.

Maybe you are looking for

  • HP Pavilion dv7-6c95dx Windows 7 x4 Can't Find Hard Drive

    I have a HP Pavilion dv7-6c95dx. I am putting in a new hard drive. I can't get Windows 7 x64 to recognize it during the install. I have tried the Intel Chipset drivers from the HP download site for my laptop. I have also tried the x64 drivers from th

  • Why is my network extender flashing red and pink?

    hi, I have had my Verizon extender for a while, I bought a new Motorola modem/router connected them up and now my network extender isn't blue like it was before. the system band is flashing red and the gps band is solid pink. I have unplugged it more

  • Moving files to Windows Media Player

    how do I move music from I-tunes library to Windows Media playlists? It used to be drag and drop.

  • Library Backup to DVD option missing? Or am I blind?

    I just finished adding more music to my iTunes library, and I wanted to create a backup disc for the songs I recently added. However for some odd reason, I see no "Backup to CD/DVD" option under File >Library> Backup. Am I going blind, or was somethi

  • How do you update a Windows 8.1 with latest Apple drivers?

    I've got Windows 8.1.1 on my mid-2012 MBP using Bootcamp 5.  I see that there is a 5.1 Bootcamp for Windows 8.1 so I assume it contains updated drivers. Is there documentation available about updating an existing Bootcamp and W8.1 installation?