Loading time differences between Flex1 Flex2 ?

hi all,
we have upgraded our Portal system up to 7.01 SP5 . now all our Visual Composer Modells will be compiled with Flex2 and they are so painfull slow. first the initilizing phase took much more longer then Flex1 compiled modells. if this phase is finished, i see my layout but till i can use it, it tooks another 15-30 seconds.
we also use the "optimize for speed" option in VC but nothing happens. we also tried to enable and disable the Option "enable flex controls for portal theme".  same result painfull slow.
the same Modell is 10 times faster in Flex1 then the Flex2 compiled one.
is there any workaround to get it faster ?
thx for your help
Tony Wienhold
UPDATE:
i made a small check on the iexplorer.exe in taskmanager when he is loading the modell.
the system makes crazy stuff with the iexplorer process. 50%CPU ussage, seems to me OK,  but it takes 50 sec for the whole loading. IE is frozen at this time and he blows up the MEM Usage for the process from 150000 MB  up to 1150000 MB .
what is he doing ? 1GB Mem usage more ? can someone confirm this behavior ?
after these 50 sec only the layout is fully loaded.  not till then i can start to enter some variables  or something like that.
Edited by: Tony W on Nov 20, 2009 5:02 PM

any idea's ?

Similar Messages

  • Page load time differences between IE and Firefox

    Hello all,
    I have a problem with page loading time in IE 8. My page contains tabular form, classic report and some other items. I use some javascript code(placed in HTLM Header section) and also dynamic actions. When I try to display the page in IE I have to wait for 40 seconds (100 rows in tabular form). I realized that the performance is dependent on the number of displayed rows in the tabular form. But decrease the number of visible rows, using pagination, is not an option, because all needed rows should be visible for the users. During the tests I have tried to remove all the JS code and disable all the dynamic action, but the loading time was more or less the same.
    When I try to run the same page in FireFox then it is displayed in 4 seconds!
    I have already try to search some tips or advices how to speed up the page loading, but only what I have found out is, that every web browser is different. The javascript is handled differently, page rendering is done differently and so on.
    Maybe there is something what I have missed, and you experts can help me. Is there anything general what I should check or change to speed up the loading time in IE?
    Thanks in advance!
    Jiri
    APEX v. 4.2.1.00.08
    IE 8.0.7600.16358
    FF 19.0.2

    Thanks Denes for your reply.
    I use HttpWatch tool to measure the loading times. Reports are mostly the same for IE and FF. I can see from the report, there is three times shown error 404 Not Found for the items below.
    http://......./images/sRegion-Body.png
    http://......./images/sRegion-Bottom.png
    http://......./images/sReportBG-Standard.png
    The last action which caused 404 error started 2 seconds after the page was asked to refresh. The next action http://......../i/libraries/jquery-ui/1.8.22/ui/i18n/oracle/jquery.ui.datepicker-cs.js started after 38 seconds (hanging in the same place for 36 seconds). Does it mean that the problem is caused by http://......./images/sReportBG-Standard.png action which returns 404 error?
    How can I add the missing images?
    -Jiri

  • How to measure time difference between zero crossing of a sine wave and rise time of a pulse on a same graph?

    I have a 50Hz sine wave and a pulse signal on a same graph. The phase difference between two is between 0-90 degrees.
    Now I need to calculate the time difference between (when the sine wave crosses zero volts) and (when the pulse rises). The frequency will stay approximately same for both signals.
    The application is for a three phase generator. In simple words, when the time difference between the zero-crossing of sine wave and the pulse rises increases, that means that the load on the generator has increases.
    I am a beginner user of LabView (version 9, 2009), maybe it is a very simple problem but I've been pulling my hair out for the last few days and coudln't figure anything out. Any help would be greatly appreciated. I am using DAQ USB-6008 to measure these voltages and pulse from the generator and a sensor
    I have attached a jpg (a graph that i just made with excel to explain). The time 't' is what I am trying to measure
    Cheers
    Awais 
    Message Edited by awais.h on 03-30-2010 11:20 PM
    Message Edited by awais.h on 03-30-2010 11:21 PM
    Solved!
    Go to Solution.

    Hi
    Thanks for the code but I'm afraid it won't work. Like you said the probability of choosing a value that is on both graphs may not happen. This is something that I would like the code to do automatically.
    But I did use the previous code posted and made some modifications to it and it seems to work perfectly. Now the next thing is to be able to get just that one value that tells you the first time difference.
    Here is what I get using that code.
    As you can see from the t Values. I only need the one that is highlighted. If there is a way to filter out the rest it would be great.
    I was thinking of a while loop and as soon as the value is higher than 3E-5 it would store the number and stop the loop, but I'm not too familiar with arrays in labview.
    Here is the the code modified.
    As you can see, it wasn't that big of a modification and it still is your code.
    I will keep trying.
    Thanks for the help
    Attachments:
    FinalShockSpeed.vi ‏55 KB

  • How to calculate the % of time difference between different state

    Hi there,
    The below query returns the follwoign outptut. I need to calculate the % of time period that a specific state ( state ex: open or closed or all report )exists.
    I have to find the time difference between the 2 states . How could I do that ?
    The first row shows null for the previous state . How could get actual previous state for the first row?
      SELECT si.station_name,
                    vppstation.avi_control_state_code.STATE_SHORT_NAME,
                    ash.state_id ,
                    lag(ash.state_id) over (order by ash.STATE_EFF_DATE desc) previous_state,
                    TO_NUMBER(TO_CHAR(ash.state_eff_date, 'SSSSS')) "periods in sec",
                    TO_CHAR(ash.state_eff_date, 'dd-mon-yyyy hh24:mi:ss am') "Date"
               from vppstation.avi_state_history ash
    left outer join vppstation.avi_control_state_code
                 on ash.state_id = vppstation.avi_control_state_code.state_id
    LEFT OUTER JOIN vpproadside.stations_installed si  
                 ON ash.station_id = si.station_id               
              where ash.state_eff_date >= to_date('28/02/2010', 'dd/mm/yyyy')
                and ash.state_eff_date <= to_date('03/03/2010', 'dd/mm/yyyy') ;
           group by si.station_name
                         ash.state_id
           order by ash.state_eff_date asc ;
    STATION_NAME                   STATE_SHORT_NAME STATE_ID               PREVIOUS_STATE         periods in sec         Date                   
    IRDNCST02                      Open             1                    NULL                  85166                  01-mar-2010 23:39:26 pm
    IRDNCST02                      All Report       3                      1                      85159                  01-mar-2010 23:39:19 pm
    IRDNCMT01                      Closed           2                      3                      81376                  01-mar-2010 22:36:16 pm
    IRDNCST02                      Open             1                      2                      78723                  01-mar-2010 21:52:03 pm
    IRDNCST02                      All Report       3                      1                      76023                  01-mar-2010 21:07:03 pm
    IRDNCMT01                      Open             1                      3                      55922                  01-mar-2010 15:32:02 pm
    IRDNCMT01                      Closed           2                      1                      54931                  01-mar-2010 15:15:31 pm
    IRDNCHA01                      Closed           2                      2                      41291                  01-mar-2010 11:28:11 am
    IRDNCAS01                      Open             1                      2                      38847                  01-mar-2010 10:47:27 am
    IRDNCAS01                      All Report       3                      1                      37947                  01-mar-2010 10:32:27 am
    IRDNCST02                      Open             1                      3                      35332                  01-mar-2010 09:48:52 am
    IRDNCST02                      All Report       3                      1                      32632                  01-mar-2010 09:03:52 am
    IRDNCST02                      Open             1                      3                      31502                  01-mar-2010 08:45:02 am
    IRDNCST02                      All Report       3                      1                      28802                  01-mar-2010 08:00:02 am
    IRDNCHI01                      Open             1                      3                      25368                  01-mar-2010 07:02:48 am
    IRDNCHI02                      Open             1                      1                      23939                  01-mar-2010 06:38:59 am
    IRDNCMT01                      Open             1                      1                      20696                  01-mar-2010 05:44:56 am
    IRDNCCH02                      Open             1                      1                      13452                  01-mar-2010 03:44:12 am
    Edited by: Indhu Ram on Mar 11, 2010 1:34 PM
    Edited by: Indhu Ram on Mar 11, 2010 2:20 PM

    If you look at the table which is output of the given query , there is column called "STATE_ID" It shows the current state ie open or closed or all report.
    The column 'PREVIOUS_STATE' shows the state before the current state. .In the table in 2nd row in previous_state column there is state_id = 1 (open)which is the state before 'all report state'

  • Execution time difference between SELECT & UPDATE statement in JDBC Sender.

    Hi Experts,
    In my scenario, I have used the JDBC Sender Adapter with the SELECT and UPDATE statement.
    Now the problem is in between the execution of Select and update statement, few more entries are coming in the same DB Table.
    So result of this is updation take place for those entries which are not even picked up by the select statement.
    Can we avoid this execution time difference between the SELECT & UPDATE statemet on JDBC Sender side???
    Thanks & Regards
    Jagesh

    Hi
    Use serializable option in additional parameters, now all new entries would also be updated.

  • How can I measure the time difference between spikes (interspik​e intervals)

    I have used NI USB-6008 (DAQ) to sample a continous signal, after sampling I compared the amplitude of the resulted signal with a value. If the amplitude is greater than a specific value (threshold) then it can pass. Now I want to measure the time difference between the resulted samples. The samples look like spikes. (May be if I trigger a timer, then I can measuer the time difference, but I have not seen such a timer). 
    Thanks in advance,
    Saraydin

    Oops just occured to me that you are using a 6009 which is not very fast, 48ks/sec, this will not get you very much time resolution and you could have issues seeing much of a 50 us sample.  Another approach is to use the counter but you would have to preprocess the spikes to generate a trigger for the counter.
    Paul
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • How to calculate the Time difference between 2 dates

    HI All,
    I am using HR_hk_diff_btw_2_dates to calculate the employee service dates.
    For that i  am inputing his hire date and Term dates and Output format as '05' i am getting output perfectly....
    But problem is  whe i am inputting the employee hire date is Dec 1 2007 and Term date is
    March 31 2009 It is coming as 1 year 3 months  31 days instead of 1 year 4 months directly .......How could we make it make last date also working day and get the O/p as 1 year 4 months ?Please Advice..
    Regard
    sas

    1. FM for difference betwwen two times:SCOV_TIME_DIFF
    Import parameters               Value
    IM_DATE1                        2008-01-01
    IM_DATE2                        2008-01-01
    IM_TIME1                        10:00:00
    IM_TIME2                        11:30:00
    Export parameters               Value
    EX_DAYS                         0
    EX_TIME                         01:30:00
    2. SD_CALC_DURATION_FROM_DATETIME : Finds the difference between two date/time and report the difference in hours
    L_MC_TIME_DIFFERENCE : Finds the time difference between two date/time

  • How to measure time difference between two continous encoder pulse (PULSE A & PULSE B)

    im trying to figure out the time difference between two square
    wave pulse (PULSE A and PULSE B) from an encoder. I tried to modify many code but fail to capture thephase difference  for each pulse. the
    pulse only rise to 5V and fall to 0V like normal square wave pulse
    can you and all of experts here help me out with this?
    my problem
    1) Encoder pulse are continous (pulse A and pulse B)
    2) Square wave pulse have "0V" and "5V" please rapidly
    if possible someone show me correct method , Im using LABVIEW 7.1 and Hardware NI SCOPE (PCI 5102)
    your advice are highly appreciated
    among my idea as in attachment , but I failed to get it
    Attachments:
    Need to Get this wave.JPG ‏34 KB

    Hi Amirul,
    Check the attached JPG file. i think this will be use full to you
    Regards,
    Santhosh M

  • Time difference between the Identity system and Access System: OAM

    I was installing OAM. Performed the below steps.
    -installed identity server
    -installed webpass
    -setup of identity system console
    -installed policy manager
    -setup of access system console
    The above steps were successfull. Then when i was logging into Access system console, i am getting the below error:
    Error:there was a problem obtaining the userid. One possible reason for this is a time difference between the Identity system and Access systems (Policy Manager and Access system console).+
    The Identity Server, WebPass and Policy Manager are installed on the same machine.
    Userdata repository: OVD 10.1.4.3
    Policy and Config Data Repository: OID 11.1.1.3
    OAM: 10.1.4.3
    Windows2008 - 64bit
    Found document in metalink similar to this issue. suggested to change ldapmaxofreties. but didn't help.
    Any idea on this error. Please Advise.
    Thanks in advance.

    Try this::
    Check Time Difference Between Identity and Access Manager Systems
    Check the logfile in the Access Manager install directory. The default location is <$AMinstall_dir>/access/oblix/logs/oblogfile.
    If the file exists and it contains following line "skew = slack = " that means the Identity and Access Manager Web Servers are on different machines and have not synchronized time within a minute.
    Either synchronize times between the two machines within a minute's accuracy or you can increase the slack by modifying these two files: <$AMinstall_dir>/access/oblix/apps/common/bin/oblixbaseparams.lst: loginslack: <$IMinstall_dir>/identity/oblix/apps/common/bin/oblixbaseparams.xml: loginslack: where numofseconds is more than skew found in the oblogfile.
    For example, if you have following line in oblogfile "skew = 121 slack = 60", set numofseconds in the two parameter files to 130. After doing this, Stop the Identity Manager Web Server. Then stop the Identity Server. Start the Identity Server.
    Then start the Identity Manager Web Server. Start a new browser session and see if you get the same error.

  • Time difference between Mac & Windows

    I have just successfully installed Windows XP SP2 using boot camp. But the clock in Mac and Windows are always different, for example, if i am running Mac and time is 4.00 p.m; then I restart in Windows, the time in Windows now is 8.00p.m. If then I changed time in Windows and restart again in Mac, the clock in Mac is 12.00p.m (4 hours late). I have tried several times but it stays the same. Is there anyone having the same problem as mine?
    ah, 1 more small thing, when using Windows, which button in Mac keyboard is for printscreen? In the manual for Bootcamp, it is said that using fn+f11 but it doesn't work???

    autumn_fail:
    For Print Screen try using Fn-Shift-F11 combination. Also read *[_This Article_|http://support.apple.com/kb/HT1220]*.
    As far as your question on the Time difference between Windows and OSx, this is a known issue with Windows and OSx running on a mac. This has to do with how both Operating Systems set the time. One way to handle this is to run time preferences as soon as you log into OSx (after logging out of Windows). Its a pain nonetheless.
    Please *[_Click Here_|http://discussions.apple.com/thread.jspa?messageID=7965906&#7965906]* for more information on this subject.
    Axel F.

  • How to find out time difference between 2 consecutive characters coming in

    Hi
    Data is coming on serial port and m taking this data in a input stream.I need to know the time difdference between consecutive characters.Any ideas?

    What do you mean? If you meassure the time between two characters, you want to calculate how accurate it is? First you would need to find out how accurate the System.currentTimeMillis is on the platform you run on. That may be easy
    long start = System.currentTimeMillis();
    long end;
    while ((end = System.currentTimeMills()) == start);
    long delta = end - start;But sometimes (on win98) it reports 50, other times 60. So its not quite accurate. But you could redo that test a couple of times and take the avg or the max.
    Then if you get a time difference of 0ms between two characters, you know it will be somewhere 0 and 60ms. If you get 60ms between two characters, you know it will be somewhere between 0 and 120 ms. It's +/- delta seconds accurate.
    Would this be a way to calculate the percentage accuracy: 100.0-100.0*delta/(time+delta)
    Still better to meassure the time over more than just 2 characters unless it is a very slow stream.

  • Time differences between camera and iMovie

    Hi,
    When I import footage from my Mini-DV camera into iMovie I am seeing a difference between the time displayed on the tape and time displayed in iMovie. The camera says 48 seconds while iMovie says 44 seconds. I thought that it might be related to the framerate of the video in iMovie, but I have changed this to 25 fps which matches the video camera and am still seeing a different time. The framerate needs to be perfect as the footage is going to be shown side-by-side with a animated graph which builds with time.
    Does anyone have any idea what could cause this time difference?
    Thanks

    < scratching head > we had something about a NTSC/PAL issue.. hmm.. ?
    if possible, open an existing PAL project (window titles says DV-PAL), save it under a diff. name, import into that project, delete the not wanted parts..
    another option is, quit iMovie, delete ~/Library/Preferences any com.apple.iMovie.plist file.. relaunch iM.. that 'resets' iM... sometimes, it starts to stumble..

  • Time difference between to times

    I'm trying to create an sign in and sign out sheet that enters the daily time and date you sign in. I also want when I leave for the end of the day it enters the time when out clock out. I want it to calculate the total hours worked, for example: if I
    sign in at 7:00 I get off at 3:30, because I get 30 minutes for lunch. I'm new to SharePoint and don't know how to get it started. Thanks

    you can create a calculated/computed column to determine the difference between two dates (just use =[EndDate]-[StartDate])... but there is nothing in SharePoint that takes into account who will "get 30 minutes for lunch", or how those business
    rules would work.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Time difference between one Ext Trig and multiple secondary triggers ?

    An external device generates a 100 Hz square wave (primary). During
    each 10 msec period, another device (secondary) generates multiple
    pulses at random times. I want to determine the time, with respect to
    each primary waveform's leading edge, when each and every of the
    secondary pulses occurs. Not just the first secondary pulse.
    Count Buffered Edges.vi example records times when multiple secondary
    pulses occur, but there does not seems to be a way to set the counter
    value to zero by the primary pulse (especially on STC cards).
    The TIO example Two Edge Separation.vi only measures time between the
    primary pulse and the first secondary pulse, not all secondary pulses.
    The TIO Measure Position.vi fo
    r encoder use mentions using the Z-index
    on the gate pin to initialize the count value. Is there a way to
    combine this with ability to record multiple buffreed time differences
    I envision each 100 Hz leading edge resetting a counter (which is
    counting a high frequency time base) to zero. Then each secondary
    pulse latches that counter's value into memory.
    For each count latched by the secondary pulses, it is not necessary to
    know within which specific primary period it belonged to.
    An alternative is to use two of the Count Buffered Edges.vi and record
    the times of both primary and secondary pulses and take their time
    difference in software.

    Answered on another thread...
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HFORCEKWTID=75037:5&HOID=5065000000080000009EA20000&HExpertOnly=&UCATEGORY_0=_32_%24_12_&UCATEGORY_S=0
    Ron

  • Time difference between local time and server time

    Hi Guys,
    I am currently experiencing a time difference of 40 minutes between the local time and the current server time.
    The local time seems to be 40 minutes slower than my current time.
    Path for Local Time : CMC -> home -> servers -> input.file repository sever -> metrics tab.  (Under the category of Installed on machine peacok, there is a local time.
    Question is how can i sync the local time with my current server time?
    Let me know if more info is required.
    Rgds
    Collin

    Hi Collin,
    Under  CMC >Home >Input FRS , the local time shown is current time of BO Server.
    Since CMC is web-based, any date, time value will be coming from BO Server box.
    u2022     In case your system and BO server is in same time zone  then update the date-time of BO Server
    u2022     In case your system and BO server is in different time zone then check with IT team to figure out the BO Server will be maintained in which time zone.
    u2022     If current requirement is specific to some report then you can add 40 min in all date value in report to get the desired result.
    Thanks,
    Sushil

Maybe you are looking for

  • Unable to send mail on ipad

    I am unable to send email to a specific address from my iPad. I can send from iPhone and iMac this address. Any ideas.  Just updated all mobil devices to iOS 7.0.6 but the problem still exists.

  • Rman Duplicate database synchronization problem

    Hi I have the Oracle database 9.2.0.1.0 .I've created Duplicate database on another computer with the same structure and Oracle 9.2.0.1.0 too. Now, I want to synchronize my duplicate by primary database, and I copied backup of all datafiles & archive

  • Do I use iWeb or use a service to maintain a web site?

    Do I use iWeb or use a service to maintain a web site? I've been doing content, not design or posting. I have a website established and managed by a web creation and support firm. It is SigEpDavidson.org The firm proposed the design. Content is 100%

  • Pasting Into Successive Keyframes

    I like to keep my timelines compact, so I often have several graphics in a single layer. Let's imagine that I have a series of five keyframes, with four shapes in each one. Over the course of those five keyframes, one of the four shapes changes into

  • Logging on remotely to a Windows PC; anti-virus needed?

    I have always been told that I don't need any anti-virus with a Mac; so I only have ClamXav (as recommended on this forum). However I am now working from home by remotely logging on to my work PC, via Java. The work PC is Windows, & I'm wondering if