Clear memory usage

Hello,
I have created a web app. I'm using Ubuntu 10.04, Netbeans 6.9 and Tomcat 6 server.
My application is based on Apache Lucene search. (I'm not sure, maybe Lucene is causing my problem, but I doubt it.)
My problem is:
When I search for some data, for e.g a word which is String, I store the results in ArrayLists. But everytime I send a request to servlet, I clear arraylists by doing this:
ArrayList.clear();But my memory usage is rising on every search. And finally, I get my system using full memory.
Mem:
total       used       free     shared    buffers     cached
4025       3860        164          0         54       1267What could cause this?
Maybe I have to clear "cached" somehow?
Edited by: peliukasss on Aug 24, 2010 11:39 AM

peliukasss wrote:
My problem is:
When I search for some data, for e.g a word which is String, I store the results in ArrayLists. But everytime I send a request to servlet, I clear arraylists by doing this:
ArrayList.clear();
That's most likely unnecessary, unless you're keeping references to those arraylists needlessly somewhere. You're not storing them into the session are you?
But my memory usage is rising on every search. And finally, I get my system using full memory.
Mem:
total       used       free     shared    buffers     cached
4025       3860        164          0         54       1267What could cause this?The operating system uses the memory for caching and such if it can, because free memory has no intrinsic value. It can and will get rid of some cache if memory is required.
Maybe I have to clear "cached" somehow?No, that's what the operating system keeps cached. Java has nothing to do with that.
The actual used memory is seen on the second line, which counts out the buffers and cache, such as on my machine:
             total       used       free     shared    buffers     cached
Mem:          3837       3766         71          0         51       1640
-/+ buffers/cache:       2074       1762
Swap:        11240        378      10862Even though it might seem I have only 71 megabytes of free memory, there's actually 1.7GB free.
You can give less memory for tomcat if you don't want it to go that high, look into the starting options. But there's nothing bizarre about what you're seeing.

Similar Messages

  • How do I clear off memory usage from "calendar" it kept on building up

    The calendar usage in my ipad kept on building up, although I don't store anything on it, how do I clear the memory usage?

    When you connect your phone to the Mac, iPhoto should fire up and offer to import your photos. So do so, selectively if needed. Then make sure they are backed up to external media in case your Mac dies. Then delete them from the camera roll in the iPhone.
    Read how Sync works. The User Guide is available at http://support.apple.com/manuals/ or downloadable from iTunes as an iBook.

  • Keep getting this msg: AVG HAS DETECTED A HIGH MEMORY USAGE BY FIREFOX--TOTAL MEMORY; 292 MB. I HAVE NO IDEA HOW TO CLEAR THIS

    see question above and help me please... it's slowing down my computer.
    JH

    The figure may not necessarily be high depending what you are doing with firefox. Do you know how much RAM is installed on your computer ?
    The report is apparently being generated by AVG software, you will need to consult the AVG manual or its faq/site/forum if you want to turn off such notifications.
    Note if you go to ''about:memory'' in the firefox location bar it will generate a report that you may find useful. See also [[high memory usage]]

  • I am unable to clear memory.  Usage, in Settings, just spins.  I have erased pics and that did nothing.

    I Am unable to clear memory.

    If you deleted photos from the Camera Roll album they may still be on your iPad. Check the Photos app and look for the Recently Deleted album. Photos reside there for 30 days in case you want them back. If you are sure that you want to delete the photos deleted them from the Recently Deleted album.

  • High Virtual memory usage when using Pages 2.0.2

    Hey there,
    I was just wondering whether there had been any other reports of unusually high memory usage when using Pages 2.0.2, specifically Virtual memory. I am running iWork 06 on the Mac listed below and Pages has been running really slowly recently. I checked the Activity Monitor and Pages is using hardly any Physical memory but loads of Virtual memory (so much so that the Page outs are almost as high as the Page ins (roughly 51500 page ins / 51000 page outs).
    Any known problems, solutions or comments for this problem? Thanks in advance

    I don't know if this is specifically what you're seeing, but all Cocoa applications, such as Pages, have an effectively infinite Undo. If you have any document that you've been working on for a long time without closing, that could be responsible for a large amount of memory usage.
    While it's good practice to save on a regular basis, if you're making large amounts of changes it's also a good idea to close and reopen your document every once in awhile, simply to clear the undo. I've heard of some people seeing sluggish behavior after working on a document for several days, which cleared up when the document was closed and reopened.
    Titanium PowerBook   Mac OS X (10.4.8)  

  • Internet Explorer - Memory Usage

    Hi,
    I have developed a VC model and deployed it in the portal. When i execute the model in internet explorer 7 or 6, the memory usage keeps building up and does not drop even after getting all the data. I have got couple of popup iviews in the model which when executed increases the memory usage further more and eventually internet explorer stops responding.
    Currently the only way to clear the memory is to close the Internet explorer window. Is there any other way to flush out the memory after the data has been retrieved from the back-end.
    Regards,
    Ravi.

    Hi Ravi,
    I googled in and found few links which can be helpful to you.
    http://cybernetnews.com/browser-comparison-internet-explorer-firefox-chrome-safari-opera/ - which is all abut the memory tests which were conducted for various browsers including ie regarding the usage of memory.
    http://www.bigresource.com/PHP-Flush-clearing-buffer-3rXPLSop.html
    http://www.wimpyplayer.com/docs/howto/clear_cache.html - which tells about the way to flush out the browser memory for better usage.
    With Regards,
    Vipin Vijayan.

  • Window Memory usage even after closing windows

    I've included links to a test app that does nothing but
    launch a window, play a sound, close window / repeat.
    When application launches it uses about 20mb of memory. When
    you click on the only button, it will launch a secondary window
    that will simply play a wav file. (I set the volume low but you may
    want to mute it :D)
    After launching and closing the window several times the
    memory usage goes up considerably and *never* falls back a
    significant %. (I got it to about 100MB before I decided to quit
    trying to increase the memory usage. Right now it's been running
    w/o any user interaction since opening about 10 windows and it's
    fairly stable at around 61MB (although that appears to be
    increasing w/o user interaction).
    Does anyone know of any methods I can use to ensure that the
    memory consumed by secondary windows does not just persist forever
    even after closing the window? Is there something I'm doing wrong
    here?
    Example Code:
    http://www.vf-server.com/air/memorytest.air
    (AIR)
    http://www.vf-server.com/air/memorytest.zip
    (source ZIP)
    Note: When I *minimize* the window it looks like garbage
    collection is forced and app drops back to 11MB (on restore back to
    19mb).
    Edit: note in your task manager, application appears as
    JBTest.exe

    You can call System.gc() to force the garbage collector to
    run.
    Try removing the event listeners when they aren't needed
    anymore. I think it is more difficult for the gc to cleanup objects
    when there are host objects (like Sound) refering to JavaScript
    objects and JavaScript objects refering to host objects, so you
    need to be especially careful about those. It SHOULD clean them up
    eventually, but it may take longer for it to figure out that those
    objects are no longer in use.
    You might also clear the secondaryWindow reference in the
    parent document when the window closes. That reference might retard
    garbage collection, too.

  • High RAM memory usage compared to other systems

    I'm suffering with memory usage problems, only in open 2 tabs of facebook(it's only for example, any 'heavy' page freeze also) in firefox*(for example also, but this occur in chromium also) freeze computer.
    I've 1GB of memory, it isn't big but also isn't very little.
    I'm using XFCE with compiz (yes, compiz, since use a very lightweight openbox-based session doesn't help, then compiz...) when system start (after login) system is consuming 130MB approximately of RAM.
    after 1 hour if close all open apps and see memory usage again consume is something about 350MB, "only solution" is reboot.
    all applications(htop,free -m,xfce's system monitor...) that I've tried to monitor memory usage show above scenario, except the 'ps_mem' script in AUR.
    in the 'ps_mem' script the result is following (with opera browser open, less memory offensive browser but I really prefer firefox):
    Private + Shared = RAM used Program
    88.0 KiB + 10.0 KiB = 98.0 KiB agetty
    380.0 KiB + 34.5 KiB = 414.5 KiB sshd
    408.0 KiB + 93.0 KiB = 501.0 KiB gpg-agent (2)
    372.0 KiB + 142.0 KiB = 514.0 KiB avahi-daemon (2)
    456.0 KiB + 60.0 KiB = 516.0 KiB systemd-logind
    280.0 KiB + 261.0 KiB = 541.0 KiB sh
    476.0 KiB + 103.5 KiB = 579.5 KiB xfconfd
    476.0 KiB + 153.5 KiB = 629.5 KiB gvfsd
    604.0 KiB + 34.5 KiB = 638.5 KiB systemd-udevd
    588.0 KiB + 102.5 KiB = 690.5 KiB dbus-launch (3)
    576.0 KiB + 119.5 KiB = 695.5 KiB sudo
    668.0 KiB + 77.5 KiB = 745.5 KiB cups-browsed
    620.0 KiB + 179.5 KiB = 799.5 KiB at-spi2-registryd
    804.0 KiB + 67.0 KiB = 871.0 KiB htop
    756.0 KiB + 131.0 KiB = 887.0 KiB gconfd-2
    800.0 KiB + 126.0 KiB = 926.0 KiB upowerd
    752.0 KiB + 183.5 KiB = 935.5 KiB xscreensaver
    920.0 KiB + 85.0 KiB = 1.0 MiB cupsd
    876.0 KiB + 241.0 KiB = 1.1 MiB gvfsd-fuse
    692.0 KiB + 429.0 KiB = 1.1 MiB systemd-journald
    880.0 KiB + 273.5 KiB = 1.1 MiB at-spi-bus-launcher
    1.2 MiB + 125.0 KiB = 1.3 MiB udisksd
    1.4 MiB + 486.5 KiB = 1.9 MiB dbus-daemon (5)
    1.4 MiB + 533.5 KiB = 1.9 MiB panel-6-systray
    1.5 MiB + 430.0 KiB = 2.0 MiB lightdm (2)
    1.6 MiB + 572.0 KiB = 2.1 MiB xfce4-session
    1.5 MiB + 683.0 KiB = 2.2 MiB panel-5-datetim
    1.5 MiB + 706.5 KiB = 2.2 MiB panel-2-actions
    1.6 MiB + 723.0 KiB = 2.3 MiB panel-4-systeml
    2.0 MiB + 543.5 KiB = 2.5 MiB xfsettingsd
    2.0 MiB + 579.5 KiB = 2.6 MiB systemd (3)
    2.3 MiB + 815.0 KiB = 3.1 MiB emerald
    2.8 MiB + 578.5 KiB = 3.3 MiB gnome-keyring-daemon (3)
    3.2 MiB + 946.5 KiB = 4.1 MiB zsh (2)
    16.1 MiB + -12144.0 KiB = 4.2 MiB polkitd
    4.1 MiB + 465.0 KiB = 4.6 MiB notify-osd
    4.5 MiB + 1.6 MiB = 6.2 MiB xfce4-panel
    5.1 MiB + 1.2 MiB = 6.3 MiB panel-7-mixer
    7.7 MiB + 1.4 MiB = 9.0 MiB xterm (2)
    12.0 MiB + 636.0 KiB = 12.6 MiB opera:libflashp
    24.3 MiB + -10774.5 KiB = 13.8 MiB Xorg
    18.6 MiB + 1.1 MiB = 19.7 MiB gnome-do (2)
    23.2 MiB + 2.4 MiB = 25.6 MiB compiz
    168.4 MiB + 3.2 MiB = 171.7 MiB opera
    320.1 MiB
    =================================
    as you can see in 'ps_mem' memory usage isn't nothing absurdly it's ok.
    another example, this problem stop me make certain things, for example is impossible browsing in web while programming in eclipse, this is very uncomfortable.
    other thing, this not occur in Windows XP, I can open more than 10 tabs in firefox, and eclipse open, etc...
    any needing information, tell-me!
    firefox*: with memory cache turned off in about:config
    Last edited by hotvic (2013-08-12 17:42:21)

    hotvic, could you please change the title to something more descriptive? 'memory problems' sounds like you have problems e.g. remembering / recalling things, which is not an Arch issue ;P
    kenny3794 wrote:
    I've had some limiting performance with browsers lately (Firefox and Chromium).  I found it had a considerable cache size utilizing lots of fragmented space on my home directory. I cleared the cache and have since set a limit to the cache size of 30 MB for Firefox.  Between multiple users across multiple browser sessions, I had at least 2 GB of cache data on my 10 GB home partition!  So far (1 day), this has been helpful.  Perhaps this could help you also?
    Ken
    OP is talking about RAM, not HDD space.

  • How can I fix a drastic and sudden increase in memory usage?

    Before I start, I've already been having slight issues since the middle of last year, but I thought nothing of it. Firefox starting up using a good chunk of memory was normal, and I could run it alongside my other programs just fine. However, about 3 or 4 days ago, Firefox has started to spike in memory usage, to the point where it slows my entire computer down, will not load pages, and it's generally a mess. I always have to force close it, too, because whenever I close it conventionally, it's still open in the background. I've been having the background issue for a few months, but it's never been a large problem until the last few days. I had thought, at first, that it was the result of some programs that got installed as part of another installer. I had no issue with the installer, considering it came from a trusted forum for game design on an official topic, from a veteran member. However, it installed multiple toolbars and multiple programs. I went through all of them, uninstalled them, cleared my registry, everything was gone. However, this memory problem reared its ugly head, later. I uninstalled, reinstalled. Didn't work. I tried to reset firefox, but it stayed open in the background, and I could not reset it. I disabled my addons (ones I've been using for over a year, now), nothing. I tried to open Firefox with all addons disabled, but it stayed open in the background and refused to re-open properly. I'm actually on another browser right now because Firefox is no longer working for much of anything... I also put a couple of attachments up to show the increase in question. It starts at around 270,000 K (though the screenshot shows around 312,000), then after about 4 or 5 minutes on my homepage, shoots up to well over 1,000,000 and it basically stops functioning. If anyone has any additional steps they think I could take, I would appreciate it.

    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    '''[https://support.mozilla.org/en-US/kb/firefox-uses-too-much-memory-ram Firefox uses too much memory (RAM) - How to fix]'''
    This article describes how to make Firefox use less memory to make it run faster and prevent crashes.

  • Nokia Messaging memory usage

    Hello,
    Couple of points related to Nokia Messaging
    memory usage. Nokia Messaging stores, by default, 2kb of each message
    on the device. Even if you have hundreds of emails, they don't take up
    much space until you start getting into attachments.
    The
    deleted items folder in Nokia Messaging does not clear itself
    automatically in this release, so if you've been deleting a lot of
    emails on the device and are encountering issues with memory, go into
    that folder and choose options to empty it.
    We are
    investigating the memory consumption on the N97 with Nokia Messaging,
    as some of you have reported. The reason we don't offer message
    storage on the memory card is that removing of the memory card with the
    messages stored on there could cause some serious issues with correctly
    syncing your email.
    We do hear you on the calls for
    storage somewhere other than the C drive. The amount of space that the
    emails should take up on your device is minimal, but we are open to
    feedback and fixing problems as they arise.
    Message Edited by davisfields on 13-Aug-2009 10:46 PM

    As netoak stated in the above post. My problem with N97 is the same, I have a number of applications that needs to be installed on (E) Mass Storage. By running these applications and have a message comes through. Be it, text, picture, multimedia, it will get stored on the phone memory which eventually gets full and can only be deleted as it cannot be copied or moved (connect to PC back up, delete original from phone memory and then restore from PC to Mass Storage is a royal joke) to Mass Storage.
    What good is a flagship phone that meant to be rich for multimedia when a couple of e-mails or messages with attachments will render it's useless.
    So if these issues below are not looked at I'm soon to trade my N97 in for something else, and neither are my friends and family going to get N97 because they already know that their non-N97 phones works fine and mine is having loads of issues.
    Surely these can be fixed in the next major update of your firmware?
    - Functionality to copy or move selected message from C to E. We're jumping through hoops just to do the most simplest of tasks like moving messages. Inability to move messages and e-mails between these two storage locations is really, really, 1990's and not mobile computer as Nokia trying claim N97 is.
    - Settings to be persistent that messages go to E when stuff on E are being used.

  • IPAD 16 GB HOW TO CLEAR MEMORY

    IPAD 16 GB HOW TO CLEAR MEMORY ios7

    What do you mean by 'clear memory' ?
    You can close apps via the iPad's taskbar (a lot of the apps that show on the taskbar will just be 'recently used', they won't be using resources) : from the home screen (if you have an app 'open' on-screen then it won't show on the taskbar for closing) double-click the home button to bring up the taskbar at the bottom of the iPad's screen, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the iTunes app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If you want to delete content from your iPad to free up storage then you can see how much space each app is taking up via Settings > General > Usage. To delete an app (and therefore its content) press and hold any of the apps on your iPad’s homescreen and after a couple of seconds or so they should start to shake. Then press the 'x' in the left corner to delete the ones that you don't want, and when you've finished deleting press the home button so as to stop the shaking. If you don't get the 'x' on any of the apps that you've downloaded (you can't delete built-in apps) then check that Settings > General > Restrictions > Deleting Apps isn't set 'off'.
    To do a soft-reset (i.e. a reboot) : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear.

  • Clearing memory in ActionScript 3.0

    Does anyone know how to clear memory in AS3.0. My app loads a lot of SWF and the memory usage keep accumulate and does not go down untill the app crash. I've tried flash.system.System.gc(); , set movie clip to null,and removeChild but seems no luck for me.
    This is how i trace the memory usage:
    var mem:String = Number( System.totalMemory / 1024 / 1024 ).toFixed( 2 );
    trace( "RAM Usage: "+mem+"MB" ); // eg traces “24.94Mb”
    Any help means a lot to me. Appreciate in advance.
    Amir

    This article should give you more insight:
    http://www.rgbeffects.com/blog/uncategorized/flash-optimization-freeing-memory/
    It`s also memorable that manually calling the GarbageCollector only works in AIR and the Debug-Version of the Flash Player.

  • 0.5 MB program has 832 MB memory usage even before it is run

    I just uninstalled and re-installed LabVIEW 2011. I was hoping this would do something to lower the memory footprint. Alas, it did not make any difference. This is what I see:
    - When I launch LabVIEW, it uses 94 MB even before I have opened a single VI, i.e. only the front end uses this much memory.
    - When I open the VI (the size of the .vi file is 549 KB), memory usage goes up to 836.4 MB. This is before I have even run the program.
    - Finally, when I run the program, memory usage jumps to 1.17 GB.
    I find this memory usage grotesquely high. Can anyone please shed some light on what can be done? I have uploaded the VI. It's a rather simple VI.
    Thanks,
    Neil
    Attachments:
    IP QL to charge - from img.vi ‏446 KB

    nbf wrote:
    1) If I understand correctly, what you are saying is that when I open the VI, the data structures associated with the intensity charts and waveform graphs are initialized to default values (e.g. 0), so there is memory usage even before the program is run and anything displayed, right?
    Yes, a huge array still takes a lot of memory, even though it compresses well for storage inside the VI. Once the VI is ready to run, these arrays need to be allocated in memory.
    nbf wrote:
    2) Is there an alternative to using the value property node that doesn't duplicate the memory content? (e.g. something like pointer or reference in C++?)
    One possiblity are data value references. You can open a DVR and fill it inside the subVI, then extract slices later as needed. If done properly, you can also keep the 2D data in a shift register (yes, please learn about them!).
    nbf wrote:
    4) Regarding the clearing of the indicators, could you please tell me how to do that, without removing the color ramp settings?
    The color ramps can be set programmatically using property nodes based on array min&max and you can assign colors for the ramp values at will.
    nbf wrote:
    5) You are correct that I am displaying 4000x2000 array data in an intensity graph with 400x200 pixels. But then I change the min/max of the charts/graphs to zoom into the region of interest; I can identify the region of interest only after displaying the full 4000x2000 array of data. I don't know if there is a way around this.
    Do you really need to show the 2D data in three different transforms? Maybe one intensity graph is sufficient. You can apply the other transforms on the extracted slices with <<1% of the computing effort. What is the range and resolution of your data? Do you really need DBL or is a smaller representation sufficient (SGL, I16, etc). From looking at the subVI, the raw data is U16. The subVI also involves a coercion to DBL, requireing another data copy in memory. When running, make absolutely sure that the subVI front panel is closed, else additional memory is used for the huge array indicator there. For better performance, you might want to flatten the subVI to the main diagram or at least inline it.
    nbf wrote:
    6) Yes, I use the continuous run mode instead of a toplevel while loop. Is there a disadvantage to doing that?
    As Samuel Goldwyn ("A hospital is no place to be sick") might have said: "Run continuously is no way to run a VI"
    Run continuously is a debugging tool and has no place in typical use. What it basically does is restart the VI automatically whenever it completes, and as fast as the CPU allows. It is mostly useful to quickly test subVIs that don't have a toplevel loop and play with inputs to verify results. Any toplevel VI needs a while loop surrounding the core code. Period!
    So, my suggested plan of action would be:
    Use a while loop around your toplevel code
    Decide on the minimal representation needed to faithfully show the data.
    Keep a single copy of the 2D array in a DVR
    You optionally might want to undersample the data for display according to the pixel resolution and use other means of zooming and panning. For zooming, you could extract a differently sampled small array subset and adjust x0 and dx of the axes accordingly.
    Use a single 2D graph (if you need to see the various transforms, add a ring selector and transform the 2D array in place. Never show more than one intensity graph.
    See how far you get.
    LabVIEW Champion . Do more with less code and in less time .

  • Why is my memory usage quickly reaching my max RAM, even after a reboot?

    Okay so, I have a macbook with 8GB of RAM and just recently I noticed some issues while playing my gambit of online games.  Naturally I closed them out and checked my activity monitor and noticed that my RAM usage was at 7.99GB.  I figured restarting would fix this issue and for a moment it seemed to.  However my memory usage quickly climbed back up to very nearly 8GB.
    Now I am not one to fret over high RAM usage but in this case my entire computer is running slowly and most of my 'heavier' applications are refusing to launch at all.  My network is also seems to be choked, it was never fast but when I open a program that uses the internet I get maybe 5KB/s, laughable really.
    It seems like within a few minutes of using my laptop the memory climbs rapidly then I'm right back in the same mess in about 4 minutes.  This seems like some memory leak issue, but the odd thing is none of the processes look to be memory hungry.  All the processes in the activity monitor account for about 1.7GB of RAM yet the memory usage is already back to 7.97GB and I am just running FireFox and Safari at the moment.
    Any help or input would be greatly appreciated!

    most of my 'heavier' applications are refusing to launch at all
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • How to reduce memory usage when loading bitmaps from the library?

    When I use BitmapData.loadBitmap() to load an image from the library and then attachBitmap() to add it to a MovieClip it takes a lot more memory as opposed to just having the same image inside a MovieClip statically in a frame on it's timeline.
    The function dispose() not only clears the BitmapData object but also destroys the previously attached bitmap inside the MovieClip, so it can not be used to free any memory.
    Is it how it is supposed to be or is there any other way to dynamically attach bitmaps with memory usage comparable to just having them on stage?

    no, you use attachMovie() to create instance from library movieclips that have a linkage id.
    you can then create a bitmapdata instance and use the draw() method to overlay as many as needed.

Maybe you are looking for

  • How to get rid of an Apple ID that does not belong to me

    I purchased a 6 plus.  I know and frequently use my apple ID and password as well as my I cloud ID and password.  I set up my new phone with no problem but I noticed something strange.  I kept getting a pop up with an apple ID prefilled waiting for a

  • Error while exporting data from HCM to VDS

    Hi, When i am trying to export data from the SAP HCM system using the RPLDAP_EXTRACT, the export fails and the log shows that the LDAP_CREATE failed. In the VDS log, com.sap.idm.vds.oper.main_listener Message: Exception on add: class java.lang.Intege

  • Address Book (on Mac) and Contacts (on iPod don't bhave the same way...

    Hi all. In Address Book (AB), I've flagged some contacts as "Company"; these are business contacts and AB displays them based on the company name which is OK. It doesn't display the person's name in the list, which is OK. If I do a search on the pers

  • WAAS out of session - Symantec End Point

    Hi, We have a router 3845 with a WAE-522-K9. Eventually we have received notifications about "session limit" and we got this: Current Active Optimized Flows: 790 Current Active Optimized TCP Plus Flows: 790 Current Active Optimized TCP Only Flows: 0

  • Unable to use Gmail

    No device After the initial joy of finally upgrading to webOS 2.x with new Pre2, Gmail and other email worked normally initially. However, since Sat, Gmail has stopped retrieving new emails. I still seem to be able to make and send an email. Other em