How to speed Portal's refresh rate?

Dear All,
When I develop the portal application with some page modified,
it seems that portal server has cached the old pages somewhere
so that I can not see the new one immediately.
Even I delete the __xx.java and __xx.class in WEB-INF directory of the
application
and clean up the temporary files browser uses locally.
How can I speed the refresh rate?
Clean some files somewhere else?
Or is there any configuration turning?
Alan.

Alan,
Making a few guesses:
(a) Did your page change involve changing the page aggregation via EBCC?
If so, did you sync the data to the WLP?
(b) If not, check the following session-parameter in weblogic.xml:
          <jsp-param>
               <param-name>pageCheckSeconds</param-name>
               <param-value>5</param-value>
          </jsp-param>
If you don't find this parameter, add this within the "jsp-descriptor"
element and restart the server. Use an appropriate value (say 5 sec).
I don't think browser cache has anything to do because, by default, WLP
sets Cache-Control HTTP tag to not to cache content on the client side.
Sincerely,
Subbu
Alan Liu wrote:
Dear All,
When I develop the portal application with some page modified,
it seems that portal server has cached the old pages somewhere
so that I can not see the new one immediately.
Even I delete the __xx.java and __xx.class in WEB-INF directory of the
application
and clean up the temporary files browser uses locally.
How can I speed the refresh rate?
Clean some files somewhere else?
Or is there any configuration turning?
Alan.

Similar Messages

  • How to change the UWL refresh rate for all portal users.

    Hi Portal Experts,
    How to change the UWL refresh rate for all portal users?
    Users can individually change the refresh rate through "Personalise View" in UWL.But we want this to set it for all users(we have 10k portal users).
    It was defaultically set to 5 mins for all users.How to change this to 20 mins.
    Thanks
    Sony.

    1.      Launch the UWL iView configuration page.
    You can access the iView from the UWL administration pages (System Administration ® System Configuration). Navigate to the property editor as follows:
          From the Universal Worklist Systems, choose the system for which you want to edit the properties.
        Choose Edit.
    may be you can get clear help from below help file
    http://help.sap.com/saphelp_nw04s/helpdata/en/eb/101fa0a53244deb955f6f91929e400/frameset.htm
    regards
    nagaraju

  • How Can I change my refresh rate to 75hz for on LCD using 91.47 drivers?

    HI,
    I use a 19" LCD and have always changed my refresh rate to 75hz to avoid ghosting in games like fifa 06 (60hz causes a nasty ghost on my 8ms panel).  I have been using the 81.98 drivers and could create an override to use 75.   The new driver will allow me to change the refresh rate to 75, but will not let me use it - I get the message "The custom resolution cannot be added".   I have coolbits2 installed.  Is there a registry setting that I can add to allow me to change the refresh rate?  If not, I'll just go back to the 81.98.  I am also using the DVI connection.
    Thank you,
    * This is on my Sli PC in my sig. *

    I know that on my particular LCD monitor, if I go above the recommended rates, then the screen will just go black and won't let me see anything.  Usually it displays a message telling me that it cannot display.  I think it especially does this with the DVI connection.
    You may have tried it allready, but just make sure that in your display properties you have unchecked the option to only display resolutions allowed by the monitor.
    You may also want to try and see if it will let you do it with a VGA connection instead of the DVI.
    Otherwise, you just may have to go back to the earlier driver.

  • How do i change my refresh rate

    hi all i have a new Imac i need to change my refresh rate , i have looked in system prefernces etc

    There is 3rd party software like Switch ResX that lets you set custom resolutions and refresh rates. I run my 15" rMBP at 48Hz since I edit and watch nearly everything 24fps and it helps reduce GPU strain. I can also set external displays to custom resolutions that they may not support officially, for example my LCD TV supports 48Hz in addition to 24, 50, 60Hz, etc.

  • How do I increase the refresh rate provided by the Tag Engine?

    Good Day,
    Part of an application I've designed reads in various analog inputs from various sources (3 serial, a handful from the NI-6229 and some temps from the USB-9211A).  My Labview software (LV v7.1) is set to read in the values at 8 Hz (every 125ms).  Though when running, the Tag Engine online provides updated information about once a second (for the both the NI inputs and the serial inputs which have been setup to be read throug the Tag Engine aswell).  When going in the tag configurator, the groups that the channels are part of is set up with "Update Rate (secs)" = 0.20s by default.  I don't even get that.  Just a bout once/sec.
    I've tried looking through MAX a bit but can't seem to find anything there myself.
    Any ideas would be much appreciated.
    Sean

    Khalid,
    Right at this time, I don't have the ability to throw an indicator into the code and run it to display as the stand is currently running clearing out a backlog that occurred over the last couple weeks.  That's why I had loaded the tag monitor while they run, and could see there that the values updated (and were timestamped) about every second.  I may try getting in there to accomplish what you suggest when they should be shutting down in about an hour and a half (if below doesn't work).  Does the tag monitor not update whenever there is a value change (and update the timestamp accordingly)?  That's what I understood from what I've read about it.
    I think you may have pegged it though on how the server was configured.  I went into the server explorer and found a setting under LookoutOPCServer->Properties->Groups titled "Update Rate (msec)" which is currently set to 1000.  I'm going to try this out and will repost afterwards (hopefully when it works ).
    Thank you much (again) for your valueable time,
    Sean

  • How to speed up fast refresh of materialized view without primary key

    Thought I'd share this info, as I couldn't find anything on here to help me diagnose the issue:
    I had a materialized view that was taking longer to perform a fast refresh than it took to perform a complete refresh. My mview had no primary key, as the base table had no primary key.
    I created a trace file for the session and saw references to a column M_ROW$$ in my mview. Nowhere in the data dictionary could I find a reference to the m_row$$ column in my mview, but apparently it exists and is created automatically. After creating the index below, the fast refresh took 6 minutes to add 500k rows to the materialized view. (versus 4+ hours without the index) When I looked in the trace file, I noticed that for each row in the mview log, it first tries to update the mview with an UPDATE statement, then it performs an insert of the new data. Seems like it should be able to determine whether to perform an update or insert based on the DMLTYPE$$ column of the mview log. What was killing my performance was the UPDATE phase. Since I had no primary key on the mview, and no index on the m_row$$ column, the UPDATE phase was performing a full table scan of my mview for every row in the mview log. I was expecting it to be smart enough to only perform inserts, as the only transactions against the base table were inserts.
    In summary: If you have a materialized view without a primary key, create an index on the m_row$$ column of the mview, even though no such column displays in the data dictionary.
    ex:
    CREATE MATERIALIZED VIEW mv_minidrr ...
    CREATE INDEX pk_mv_minidrr ON mv_minidrr(m_row$$) ...

    Well, there indeed is a column called M_ROW$$
    Your MLOG$_EMP is nothing but the materialized view log on the base table.
    SQL> create  materialized view log on emp with rowid ;
    Materialized view log created.
    SQL> create materialized view emp_mview refresh fast on demand with rowid as select * from emp ;
    Materialized view created.
    SQL> desc mlog$_emp
    Name                                                  Null?    Type
    M_ROW$$                                                        VARCHAR2(255)
    SNAPTIME$$                                                     DATE
    DMLTYPE$$                                                      VARCHAR2(1)
    OLD_NEW$$                                                      VARCHAR2(1)
    CHANGE_VECTOR$$                                                RAW(255)
    SQL> select table_name, column_name from user_tab_columns where column_name = 'M_ROW$$' ;
    TABLE_NAME                     COLUMN_NAME
    MLOG$_EMP                      M_ROW$$
    1 row selected.
    SQL>

  • How to change screen refresh rate in windows 7sp1 and windows 8.1 iso image using dism

    sir when i install windows 7sp1 and windows 8.1 then after the completion of setup when first time windows boots up then task bar is not shown and display is not clear and when i check under monitor settings the screen refresh rate is 60 Hertz and when i
    set the screen refresh rate from 60 Hertz to 75 Hertz, then everything is OK, plz tell me why this happens?
    why windows 7 sp1 and windows 8.1 automatically sets the screen refresh rate to 60Hertz instead of 75Hertz.
    how can i set screen refresh rate 75 Hertz permanently in iso image using DISM ?

    That is not a function of DISM. Resolution and refresh rate capabilities can be determined by multiple causes. Drivers are one, another is that most modern displays will report their capabilities to Windows.
    You can specify display settings with an answer file however:
    <Display>
    <HorizontalResolution>640</HorizontalResolution>
    <VerticalResolution>480</VerticalResolution>
    <ColorDepth>16</ColorDepth>
    <RefreshRate>60</RefreshRate>
    </Display>
    http://technet.microsoft.com/en-us/library/ff716344.aspx

  • Changing refresh rate blanks screen indefinitely

    Hi all,
    I'm new to the mac world and I was exploring OSX upon bringing my new Mac Pro home.
    I have an old 17" Benq LCD monitor (upgrading soon) that I had hooked up using the analog to DVI adapter. I've heard that LCD's usually always are set at 60Hz but stupid me had to try other refresh rates. I set the refresh rate to 80Hz and the screen went blank and a box came up stating the refresh rate was "out of range".
    I thought that it would automatically revert a la XP but after 5 minutes nothing. So in the meantime I just swapped to a different video output on the video card.
    Could someone please tell me how I can revert the refresh rate to 60Hz so that DVI output can be utilized.
    Thanks for reading!
    Cheerz,
    Flu
    Mac Pro Quad   Mac OS X (10.4.10)  

    Use the "Gather Windows" button in the "Display" pane of "Displays" System Preference. You can change setting for both displays from one display. You can also check "Show displays in menu bar" to get control of both displays.
    Resetting PRAM, or a Safe Boot might help.
    <http://docs.info.apple.com/article.html?artnum=107393>

  • Refresh rate

    How do you change the refresh rate on an apple monitors?
    I went into the system preferences under displays the refresh rate button was there but not lit up.
    I need to see what my refresh rate is and how to change it.

    60 Hz is the standard for LCDs and can't be changed.

  • Increase refresh rate of my LCD display

    Hey hey hey. How can I increase the refresh rate available for my LCD display? Should I increase the refresh rate? I cannnot find where to change it.

    There are different refresh rates that you can set, but I agree, 60 should be adquate. You can check this under Control Panel, Display, Settings, Then Click on Advanced, then Monitor. There you will see the refresh rate. Unclick the "Hide modes..." and you will see other rates which may not be able to be applied to your machine.

  • MacBook Pro Screen Refresh Rate

    I got one of the new santa rosa 15-inch macbook pros with a glossy display about 3 weeks ago. When i play games or look at display settings, i can't change the screen refresh rate. For example, in battlefield 1942, in the display settings i get a rate of "0"for my built in display! Not "60", or "75", just "0". Also, in the display preferences tab in system preferences, there in no refresh rate to set, but all other displays i connect have a refresh rate setting. How to i change the refresh rate of my built in display?

    as far as i'm aware, LCD displays do not have a refresh rate per-se
    the reason is because refresh rate is a term applied to Cathode Ray Tube monitors (read that as your standard computer monitor, not an LCD one) and in particular the refresh rate is how many times the gun in the monitor rasters a horizontal line onto the screen in one second.
    with LCD displays, because they don't use a gun and are not based on CRT technology, they don't have a refresh rate
    i could be wrong though, but i'm sure i read somewhere about this

  • 17" crt monitor, but not all refresh rates showed

    Its a duplicate from this thread:
    http://bbs.archlinux.org/viewtopic.php?id=89220
    But this is the right subforum.
    Only some refresh rates are displayed as an option.
    Look xrandr:
    $ xrandr
    Screen 0: minimum 320 x 175, current 1280 x 1024, maximum 1600 x 1200
    default connected 1280x1024+0+0 0mm x 0mm
    1600x1200 50.0 56.0
    1400x1050 51.0 57.0
    1280x960 52.0
    1024x768 53.0 61.0 62.0 63.0 64.0
    800x600 54.0 67.0 68.0 69.0 70.0 71.0 72.0
    640x480 55.0 76.0 77.0 78.0 79.0
    1280x1024 58.0* 59.0
    1152x864 60.0
    896x672 65.0
    832x624 66.0
    720x400 73.0
    640x512 74.0 75.0
    640x400 80.0
    640x350 81.0
    576x432 82.0
    512x384 83.0 84.0 85.0 86.0 87.0
    416x312 88.0
    400x300 89.0 90.0 91.0 92.0 93.0
    360x200 94.0
    320x240 95.0 96.0 97.0 98.0
    320x200 99.0
    320x175 100.0
    The weird value rates are fault of the nvidia driver telling jokes.
    But how can i have more refresh rate in 1280x1024 than 1280x960? My monitor is a standard 4:3 crt.
    I tried disabling EDIDs and specifying the sync values according to the monitor.
    The monitor is a samsung syncmaster 700p.
    Any ideas? Thanks in advance.
    HEre is my xorg.conf:
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder58) Wed Dec 9 16:34:26 PST 2009
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    EndSection
    Section "Files"
    EndSection
    Section "Module"
    # Load "drm"
    Load "dbe"
    Load "extmod"
    Load "type1"
    Load "freetype"
    Load "glx"
    # Load "dri"
    EndSection
    Section "ServerFlags"
    Option "DontVTSwitch" "no"
    EndSection
    Section "InputDevice"
    # generated from data in "/etc/conf.d/gpm"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol"
    Option "Device" "/dev/input/mice"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 30.0 - 85.0
    VertRefresh 50.0 - 160.0
    # Option "DPMS"
    Option "UseEDID" "false"
    Option "IgnoreEDID" "true"
    Option "ModeValidation" "NoEdidModes"
    EndSection
    Section "Device"
    # Driver "radeonhd"
    # Option "AccelMethod" "exa"
    # Option "DRI" "on"
    # BusID "PCI:1:5:0"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    Option "UseEDID" "false"
    Option "IgnoreEDID" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "nologo" "true"
    SubSection "Display"
    Depth 24
    Modes "1600x1200" "1400x1050" "1280x960" "1280x960@75" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection

    I see you have a nvidia card. For nvidia users xrandr displays wrong value. If you want to check exactly what you're running, search some of the monitor options, it should have it in there. Also use the nvidia-settings, but for me at times it too reported wrong refresh rates.

  • X800PRO TD256, monitor refresh rate override

    I would like to know how to override the monitor refresh rate on x800 like in forceware drivers. Thanks
    OK, just installed the Omega drives with multires and it works!

    use the window options that allow you to adjust the refresh rate

  • SNMP refresh rate

    Hi all,
    Sorry if I break any board ettiquette, this is my first time posting here.
    We are running the oracle SNMP agent with the orainit mib on SUN Solaris UNIX 2.7, along with the Oracle 8i database.
    I need to find out how to decrease the info refresh rate of the database SNMP info. The normal operating system SNMP info updates constantly, but it looks like Oracle caches the info for about 30 seconds. Even with high load, we cant get the info to update any faster.
    Ive been all over this site, and all through the Oracle SNMP docs and have yet to find anything.
    Thanks for any help you can provide,
    Fred Costello

    I think the other poster was meaning what is the response time of the LCD in milliseconds.
    A note about response times, they are generally bogus when it comes to picture quality because they are measured differently by each manufacturer. The general use of the LCD needs to be taken into consideration. I have had no issues with ghosting in movies or anything I have done, but I don't do extreme gaming either. The response time is good enough for about anything a person might do with the computer, this shouldn't be a deciding factor on whether or not to purchase the machine.

  • Refresh rate in portal

    hi all
    i need your help to give me the solve of my issue
    i need to increase the refresh rate of portal
    10g on unix 5.10
    MANY THANKS

    Sounds like an interesting feature. What is the 'refresh rate' of Portal ?

Maybe you are looking for