Sponsored Content
Full Discussion: Memory footprint
Top Forums Shell Programming and Scripting Memory footprint Post 302979983 by MadeInGermany on Monday 22nd of August 2016 03:41:33 PM
Old 08-22-2016
Code:
ps -e -o pid,user,rss,vsz,args

The RSS and VSZ columns are memory usage in kilobytes.
RSS is memory resident in RAM,
VSZ is virtual memory including reserved and swapped-out.
You can easily grep your application processes.
This User Gave Thanks to MadeInGermany For This Post:
 

5 More Discussions You Might Find Interesting

1. HP-UX

How can I get memory usage or anything that show memory used from sar file?

Refer from title: How can i get memory used or anything that can show memory from sar file example on solaris:- we can use sar with option to show memory used at time that sar crontab run. on HP-UX, it not has option to see memory used. But i think it may be have some parameter or some... (1 Reply)
Discussion started by: panithat
1 Replies

2. Solaris

How to find Total and Free Physical Memory and Logical Memory in SOLARIS 9

Hi, Im working on Solaris 9 on SPARC-32 bit running on an Ultra-80, and I have to find out the following:- 1. Total Physical Memory in the system(total RAM). 2. Available Physical Memory(i.e. RAM Usage) 3. Total (Logical) Memory in the system 4. Available (Logical) Memory. I know... (4 Replies)
Discussion started by: 0ktalmagik
4 Replies

3. Programming

How to deal with lots of data in memory in order not to run out of memory

Hi, I'm trying to learn how to manage memory when I have to deal with lots of data. Basically I'm indexing a huge file (5GB, but it can be bigger), by creating tables that holds offset <-> startOfSomeData information. Currently I'm mapping the whole file at once (yep!) but of course the... (1 Reply)
Discussion started by: emitrax
1 Replies

4. Solaris

restrcit physical memory with zone.max-locked-memory

Is it possible to restrict physical memory in solaris zone with zone.max-locked-memory just like we can do with rcapd ? I do not want to used rcapd (1 Reply)
Discussion started by: fugitive
1 Replies

5. Solaris

[DOUBT] Memory high in idle process on Solaris 10 (Memory Utilization > 90%)

Hi Experts, Our servers running Solaris 10 with SAP Application. The memory utilization always >90%, but the process on SAP is too less even nothing. Why memory utilization on solaris always looks high? I have statement about memory on solaris, is this true: Memory in solaris is used for... (4 Replies)
Discussion started by: edydsuranta
4 Replies
Bio::Tools::FootPrinter(3pm)				User Contributed Perl Documentation			      Bio::Tools::FootPrinter(3pm)

NAME
Bio::Tools::FootPrinter - write sequence features in FootPrinter format SYNOPSIS
use Bio::Tools::FootPrinter; my $tool = Bio::Tools::FootPrinter->new(-file=>"footprinter.out"); while (my $result = $tool->next_feature){ foreach my $feat($result->sub_SeqFeature){ print $result->seq_id." ".$feat->start." ".$feat->end." ".$feat->seq->seq." "; } } DESCRIPTION
This module writes sequence features in FootPrinter format. See <http://bio.cs.washington.edu/software.html> for more details. FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to the Bioperl mailing list. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track of the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHOR - Shawn Hoon Email shawnh@fugu-sg.org APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ new Title : new Usage : my $obj = Bio::Tools::FootPrinter->new(); Function: Builds a new Bio::Tools::FootPrinter object Returns : Bio::Tools::FootPrinter Args : -fh/-file => $val, # for initing input, see Bio::Root::IO next_feature Title : next_feature Usage : my $r = $footprint->next_feature Function: Get the next feature from parser data Returns : L<Bio::SeqFeature::Generic> Args : none _add_feature Title : _add_feature Usage : $footprint->_add_feature($feat) Function: Add feature to array Returns : none Args : none _parse_predictions Title : _parse_predictions Usage : my $r = $footprint->_parse_predictions Function: do the parsing Returns : none Args : none _predictions_parsed Title : _predictions_parsed Usage : $footprint->_predictions_parsed(1) Function: Get/Set for whether predictions parsed Returns : 1/0 Args : none _parse Title : _parse Usage : $footprint->_parse($name,$seq,$pattern) Function: do the actual parsing Returns : L<Bio::SeqFeature::Generic> Args : none perl v5.14.2 2012-03-02 Bio::Tools::FootPrinter(3pm)
All times are GMT -4. The time now is 03:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy