Any performance considerations with FABridge?

Hi, I've put together my first Flash / Ajax application using
FABridge, which looks an exciting new technology. So far, my trials
suggest I can create any number and type of Flash controls
dynamically from Javascript......however, can anyone from Adobe
advise what the performance difference is between a dynamically
generated Flash application and a compiled .swf file and whether
performance should be similar in a production environment ? - do
they recommend a limit on the number or type of Flash controls
which are created dynamically from Javascript?
Thanks

are you sperak turkish

Similar Messages

  • There is any Performance problem with Creation of many Y or Z  Programs.

    HI,
    There is any Performance problem with Creation of many Y or Z  Programs. plz give clarity regarding this to me......
    regards
    ganesh

    Ganesh,
    Can you please mention the context and the purpose of creating these custom program.  And application are you referring to?
    Regards,
    Rohit

  • Any performance drop with a retina display?

    Hi!
    I'd love to buy a Macbook Pro 15" Retina Display but knowing that retina renders a very higher resolution, is there any performance drop in comparison with a normal Macbook Pro?
    I'm a developer and I wonder if a Retina display would be a good idea? Is it softer for the eyes?
    Thanks!

    I use my 4-month old, 2012 Retina Macbook Pro for music applications, presentations, and graphic design.
    This computer is leaps & bounds above the competition in performance and convenience.  I expect it to last me a very long time!
    On that note, keep in mind some of the new Oct. 2013 15" rMBP's do not have an NVIDIA Graphics Card.  In my opinion, having this component in the computer is crucial as a developer!
    If I were you, I'd shop for a refurbished 15" rMBP, as I did.  As I see it, I saved $500+ getting a brand new state-of-the-art computer in a different type of box.

  • Performance considerations with mapping outside the BPE

    Hello together,
    we have an Integration Process with 2 more or less complex transformations steps (i.e. Message Merging).
    Since the overall performance is rather poor, we consider to let the mapping take place outside the IP. This
    means we would have no more transformation step within our IP. Instead we use Interface-Mappings between
    the abstract an the Inbound-Interfaces.
    Does anybody know  whether this approach leads to any significant performance advantages or not?
    Regards Gunnar

    The design with mapping outside BPM is always better in terms of performance.
    Regards,
    Prateek

  • XML Embedded in Stored Function - Performance Considerations

    A developer in my company approached us with a question about performance considerations while writing stored procedures or functions that embed XML.
    The primary use for this function would be to provide a quick decision given a set of parameters. The function will use the input parameters along with some simple calculations and DB lookups to come up with an answer. These parameters will be stored in the database. Potentially even more parameters that are currently represented in the xml will be available in the DB and therefore could be looked up by the function.
    My biggest question is if this way of using XML as an input parameter introduces any performance considerations or concerns for storage/bandwidth etc.
    Thank you
    Edited by: user8699561 on May 19, 2010 9:24 AM

    user8699561 wrote:
    A developer in my company approached us with a question about performance considerations while writing stored procedures or functions that embed XML.
    The primary use for this function would be to provide a quick decision given a set of parameters. The function will use the input parameters along with some simple calculations and DB lookups to come up with an answer. These parameters will be stored in the database. Potentially even more parameters that are currently represented in the xml will be available in the DB and therefore could be looked up by the function.
    My biggest question is if this way of using XML as an input parameter introduces any performance considerations or concerns for storage/bandwidth etc.
    Thank you
    Edited by: user8699561 on May 19, 2010 9:24 AMStorage/bandwith will be determined regarding the size of the XML doc, but there are ways to minimize those to the minimum (binary XML support in JDBC eg.). Performance overhead in general...eh..."it depends" (how you set it up)...

  • Performance Impact with OR concatenation / Inlist Iterator

    Hello guys,
    is there any performance impact with using OR concatenations or some IN-Lists?
    The function of both is the "same":
    1) Concatenation (OR-processing)
    SELECT * FROM emp WHERE mgr# = 1 OR job = ‘YOURS’;- Similar to query rewrite into 2 seperate queries
    - Which are then ‘concatenated’
    2) Inlist Iterator
    SELECT * FROM dept WHERE d# in (10,20,30);- Iteration over enumerated value-list
    - Every value executed seperately
    - Same as concatenation of 3 “OR-red” values
    So i want to know if there is any performance impact if using IN-Lists instead of OR concatenations.
    Thanks and Regards
    Stefan

    The note is very misleading and far from complete; but there is one critical point of difference that you need to observe. It's talking about using a tablescan to deal with an IN-list (and that's NOT "in-list iteration"), my comments start by saying "if there is a suitable indexed access path."
    The note, by the way, describes a transformation to a UNION ALL - clearly that would be inefficient if there were no indexed access path. (Given the choice between one tablescan and several consecutive tablescans, which option would you choose ?).
    The note, in effect, is just about a slightly more subtle version of "why isn't oracle using my index". For "shorter" lists you might get an indexed iteration, for "longer" lists you might get a tablescan.
    Remember, Metalink is not perfect; most of it is just written by ordinary people who learned about Oracle in the normal fashion.
    Quick example to demonstrate the difference between concatenation and iteration:
    drop table t1;
    create table t1 as
    select
         rownum     id,
         rownum     n1,
         rpad('x',100)     padding
    from
         all_objects
    where
         rownum <= 10000
    create index t1_i1 on t1(id);
    execute dbms_stats.gather_table_stats(user,'t1')
    set autotrace traceonly explain
    select
         /*+ use_concat(t1) */
         n1
    from
         t1
    where
         id in (10,20,30,40,50,60,70,80,90,100)
    set autotrace offThe execution plan I got from 8.1.7.4 was as follows - showing the transformation to a UNION ALL - this is concatenation and required 10 query block optimisations (which were all done three times):
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=20 Card=10 Bytes=80)
       1    0   CONCATENATION
       2    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (Cost=2 Card=1 Bytes=8)
       3    2       INDEX (RANGE SCAN) OF 'T1_I1' (NON-UNIQUE) (Cost=1 Card=1)
       4    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (Cost=2 Card=1 Bytes=8)
       5    4       INDEX (RANGE SCAN) OF 'T1_I1' (NON-UNIQUE) (Cost=1 Card=1)
       6    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (Cost=2 Card=1 Bytes=8)
       7    6       INDEX (RANGE SCAN) OF 'T1_I1' (NON-UNIQUE) (Cost=1 Card=1)
       8    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (Cost=2 Card=1 Bytes=8)
       9    8       INDEX (RANGE SCAN) OF 'T1_I1' (NON-UNIQUE) (Cost=1 Card=1)
      10    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (Cost=2 Card=1 Bytes=8)
      11   10       INDEX (RANGE SCAN) OF 'T1_I1' (NON-UNIQUE) (Cost=1 Card=1)
      12    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (Cost=2 Card=1 Bytes=8)
      13   12       INDEX (RANGE SCAN) OF 'T1_I1' (NON-UNIQUE) (Cost=1 Card=1)
      14    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (Cost=2 Card=1 Bytes=8)
      15   14       INDEX (RANGE SCAN) OF 'T1_I1' (NON-UNIQUE) (Cost=1 Card=1)
      16    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (Cost=2 Card=1 Bytes=8)
      17   16       INDEX (RANGE SCAN) OF 'T1_I1' (NON-UNIQUE) (Cost=1 Card=1)
      18    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (Cost=2 Card=1 Bytes=8)
      19   18       INDEX (RANGE SCAN) OF 'T1_I1' (NON-UNIQUE) (Cost=1 Card=1)
      20    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (Cost=2 Card=1 Bytes=8)
      21   20       INDEX (RANGE SCAN) OF 'T1_I1' (NON-UNIQUE) (Cost=1 Card=1)This is the execution plan I got from 9.2.0.8, which doesn't transform to the UNION ALL, and only needs to optimise one query block.
    Execution Plan
       0      SELECT STATEMENT Optimizer=ALL_ROWS (Cost=3 Card=10 Bytes=80)
       1    0   INLIST ITERATOR
       2    1     TABLE ACCESS (BY INDEX ROWID) OF 'T1' (Cost=3 Card=10 Bytes=80)
       3    2       INDEX (RANGE SCAN) OF 'T1_I1' (NON-UNIQUE) (Cost=2 Card=10)Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk

  • Performance Consideration when updating NX-OS?

    Is there any performance consideration on the SAN switches we need to monitor prior to updating NX-OS?

    if it's a non-disruptive upgrade then you never lose FC connectivity. Always read the release notes for the version you are upgrading to make sure there are no surprises (hardware support ..etc)
    @dynamoxxx

  • Performing Live with Logic Pro - any tips?

    Hello to everyone on this forum,
    I only recently joined, but have been using Logic ever since I learned to engineer my own music.
    I was wonderring if anyone here performing live with Logic?
    I have been using this programm since version 4 and ever so happy with it as far as the recording in the studio is concerned. However the time has come to try and play it all out live.
    Many of my friends suggested Ableton Live. I went ahead and purchased it. But to my great disappointment the midi section of Live is far from perfect. I couldn't get a simple task of changing programs and banks to be communicated to the external modular properly and after a week of frustration I am back on Logic's case.
    Majority of my songs up till recent have all been written with audio files, where Ableton would be very useful, but all the new stuff is using the midi. So I am in split minds about the situation.
    I am not quite sure how to set up a live performance of a few songs in Logic. Any tips here would be appreciated!
    Also do any of you use Ableton and Logic at the same time on stage? Is it safe on one computer? I mean how likely is it to crush during the show?
    Much respect to all in the know.
    Natalia
    imac G5   Mac OS X (10.4.7)   LogicPro7.1/Saffire/Midisport2X2/NordG2Modular/KorgER1/EA1/Novation SL37

    If you do a search on this forum for this very topic, you should find your answers there. Hope this helps!
    X
    and welcome to the forum!

  • Are there any known issues with Adobe Edge Animate and Yosemite? Experiencing performance issues since upgrading OS

    Are there any known issues with Adobe Edge Animate and Yosemite? Experiencing performance issues since upgrading OS. Animation I was working on that had been performing in browser fine suddenly stopped working, and was not related to any action I had done at that point. Also was working in it today and program stopped responding to key board short cut commands.

    I am having a whole slew of odd interface problems with a fresh 2014.1.1 on a fresh macbook pro with latest Yosemite. Program locks up, cursor selections don't show, things disappear. I have a mac mini also and the program runs fine on it. Is there possibly something related to the solid state hard drive in new macs?

  • DBCC SHRINKFILE with NOTRUNCATE has any performance impact in log shipping?

    Hi All,
    To procure space I'm suggested to use below command on primary database in log shipping and I just want
    to clarify whether it has any performance impact on primary database in log shipping and also is it a recommended practice to use the below command
    in regular intervals in
    case the log is using much space of the drive. Please suggest on this. Thank You.
    "DBCC
    SHRINKFILE ('CommonDB_LoadTest_log', 2048, NOTRUNCATE)"
    Regards,
    Kalyan
    ----Learners Curiosity Never Ends----

    Hi Kalyan \ Shanky
    I was not clear in linked conversation so adding some thing :
    As per http://msdn.microsoft.com/en-us//library/ms189493.aspx
    ----->TRUNCATEONLY is applicable only to data files. 
    BUT
    As per : http://technet.microsoft.com/en-us/library/ms190488.aspx
    TRUNCATEONLY affects the log file.
    And i also tried , it does works.
    Now Truncateonly : Releases all free space at the end of the file to the operating system but does not perform any page movement inside the file. The data file is shrunk only to the last allocated extent. target_percent is ignored if specified
    with TRUNCATEONLY.
    So
    1. if i am removing non used space it will not effect log shiping or no log chain will broke.
    2. If you clear unsued space it will not touch existing data. no performance issue
    3. If you clear space and then due to other operation log file will auto grow it will put unnecessary pressure on database to allocate disk every time. So once you find the max growth of log file let it be as any how again it will grow to same size.
    4. Shrinking log file is not recommeded if its again and again reaching to same size . Until unless you have space crunch
    Thanks Saurabh Sinha
    http://saurabhsinhainblogs.blogspot.in/
    Please click the Mark as answer button and vote as helpful
    if this reply solves your problem

  • Performance concern with directory server implementation

    performance concern with directory server implementation
    I first posted this at metalink forum, and was suggested to post it here instead.
    Hi,
    I'd like to get any feedback regarding performance of oracle directory server implementation. Below is what I copy&patested from 9i Net Services Administrator's Guide, I found no 'directory server vendor documentation', so anything regarding this is welcome too.
    Performance
    Connect identifiers are stored in a directory server for all clients to access.
    Depending on the number of clients, there can be a significant load on a directory
    server.
    During a connect identifier lookup, a name is searched under a specific Oracle
    Context. Because of the scope of the lookup, you probably want users to experience
    relatively quick performance so that the database connect time is not affected. Users
    may begin to notice slow connect times if lookups takes more than one second.
    You can resolve performance problems changing the network topology or
    implementing replication.
    See Also: Directory server vendor documentation for details on
    resolving performance issues
    Thanks.
    Shannon

    Shannon,
    you can find some tuning advises in the following
    a) OiD Capacity Planning Considerations
    http://download-west.oracle.com/docs/cd/B10501_01/network.920/a96574/cap_plan.htm#1030019
    b) Tuning Considerations
    http://download-west.oracle.com/docs/cd/B10501_01/network.920/a96574/tuning.htm#999468
    c) oracle net services
    http://download-west.oracle.com/docs/cd/B10501_01/network.920/a96579/products.htm#1005697
    you should start with a) to get an overview what to be aware of
    --Olaf

  • IPhone 3G Performance Worse with 4.2.1

    Has anyone had their performance decrease with the 4.2.1 update? My phone is responding much more poorly. I can't open maps or any other application that uses location services over the cellular network. Totally bombs. Works ok with wifi, load is still slow but once loaded works ok. Also calendar and camera take even longer to load than they did before. Phone hangs a lot more also and many more calls failing.
    Anyone else? I want to chuck my phone out the window. 6 months of fail.

    I'm new to this but if you're using a PC (can't speak on Mac) try going to your Control Panel, click on the Add or Remove Programs icon, when the list populates scroll down to the Apple Mobile Device Support icon, click on Add/Remove (on Windows 7 its a right click on the line anywhere) a menu drops down or a window appears depending on your system, and it offers you the choice to Unintall, Change, or Repair. Choose the Repair option and it should update your system. Perhaps that's your problem. There are other options in that list to chose such as a link to click on which takes you to the webpage where help is available. I've discovered that cleaning out my Add/Remove program list to save storage space is good for my computer and also made me realize that we, the computer using public, have real power in that we can thin out that list considerably by just seeing which programs we use frequently or rarely and delete accordingly, scares the heck out of the big boys who design browsers and other useless programs that clog up our system. I just deleted Google Chrome who were so sorry to see me leave and was promptly sent a survey so that they could understand my reasons for leaving. I felt on par with them, for once and let them know that Internet Explorer 9 ripped them off. Good luck.

  • Physical Database Design Steps & Performance Considerations

    Hi,
    We have a Oracle 9i install need help to create a DB.
    Required to know the Physical Database Design Steps & Performance Considerations.
    like
    1-Technical consideration of DB as per server capacity. how to calculate..?
    2- What will be the best design parameter for DB...?
    Can you please help how to do that. Any metalink ID help to get those information.
    thanks
    kishor

    there is SOOO much to consider . . . .
    Just a FEW things are . . .
    Hardware - What kind of Host is the database going to run on?
    CPU and Memory
    What kind of Storage
    What is the Network like?
    What is the database going to do OLTP or DW?
    Start with your NEEDS and work to fulfill those needs on the budget given.
    Since you say Physical Database Design . . . is your Logical Database Design done?
    Does it fulfill the need of your application?

  • Performance Issue with subtemplates

    Hi,
    I am working on subtemplates and my requirement needs a single main template which calls several localization specific subtemplates (A localization may have many subtemplates of its own, For example: US_subtemp1, US_subtemp2,US_subtemp3... similarly other localizations).
    I would like to know is there any performance issue associated with the calls made to the subtemplates and on how this performance hit can be minimized.
    Regards,
    Arvind

    Yes the data might be huge because Iam talking about thousands of payrolls that need to be shown in the report. So will a function call effect the performance is my question in this scenario, because even if don't have a function call we still have the same data, which remains huge. So, will the function call to the subtemplate lead to a performance hit when the data to be shown is large.
    Lets take these two scenarios into account while approaching this issue:
    ~Single template and Huge data.
    ~One main template, many subtemplate calls and huge data.
    So in these two scenarios will there be a difference in the performance due to the subtemplates call and if yes, then will it be considerable?
    Regards,
    Arvind
    Edited by: user779004 on Jan 27, 2009 8:37 PM

  • FXMLLoader and fx:root performance consideration

    Hi, All
    While I have a customization table cell(three row two collumn at single cell, using the Java method will be not easy to mantain), I using the fx:root FXML. But my table have thousands of tableView cells need to be rendered. If everytime cellFactory paint the cell I load the cell from FXML, the IO usage will very high, leading to the poor rending performance. Is there have any better method that I can defined customorize cell?

    Post a short executable sample which illustrates your performance consideration and maybe somebody will post back with a better performing solution.

Maybe you are looking for

  • I have a game that I bought on one Ipad but wont work full version on my 2nd I pad, anybody caould help me

    I bought a game on one Ipad, I added another I pad tried to sinc it with the other, all was good until I tried to play one game on the snd I pad and after the second level was asked tp buy the full version that I have on the other Ipad... can somebod

  • Payment Reference

    Hi All, While Posting an invoice, I am entering some value in the PAYMENT REFERENCE field (BSEG-KIDNO).  And when I am paying this invoice through Payment run (F110), i expect the value in the Payment reference of the paid invoice to be copied to the

  • Uploading CSV File into Web Dynpro Java Table and Write back to a Database

    Hi Gurus! I would like to upload a csv file and read the content into an UI table element. Then, I need to write the uploaded file back to a database. I'm using NetWeaver 2004s. could you please provide advice for both, uploading and wirting to datab

  • Trip form - Warning PageBuilder will run with wrong client window ID"

    Dear All, I am getting following warning message before opening Trop form. "error starting iView webdynpro PageBuilder will run with wrong client window ID" If we click on OK button, the pdf form ets opened correctly. How to remove this warning ? Tha

  • Internet browsing works OK, but not e-mail?

    We have an iMac G4 with DSL internet via AT&T/Yahoo, using a 2wire modem. Just bought a new iMac and a D-Link router. The G4 is connected to the router and the modem, set up as required. Wireless service to the new computer is great and we can browse