- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: cache memory
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2005 02:28 AM
03-22-2005 02:28 AM
i hae Redhat 9 Linux server runs Oracle9i database and Radius service, on the system i upgrade my memory from 1GB to 4GB,but the free memory after the uppgrade is the same as before almost 10GB, i see that the catched memory is big 3.5GB, so for what this cache and how to reduce this value.
BR
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2005 02:38 AM
03-22-2005 02:38 AM
Solution"Understanding Virtual Memory" [http://www.redhat.com/magazine/001nov04/features/vm/] article from RH Magazine may be a good start point for learning Virtual Memory Management in linux kernel.
"Linux Memory Management or 'Why is there no free RAM?" [http://forums.gentoo.org/viewtopic.php?t=175419] provides VM in linux overview and answers the famous question " 'Why is there no free RAM?"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2005 07:19 PM
03-22-2005 07:19 PM
Re: cache memory
how can i reduce the valuse of this catch and will this affect the applications run
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2005 09:00 PM
03-22-2005 09:00 PM
Re: cache memory
You shouldn't see any problem with your applications performance because kernel *releases* its buffer/cache when applications need memory.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2005 01:31 AM
03-25-2005 01:31 AM
Re: cache memory
$ free -tm
total used free shared buffers cached
Mem: 124 113 10 0 2 42
-/+ buffers/cache: 68 55
Swap: 382 124 257
Total: 506 238 267
-> The actual free memory available is 55MB (in this case). 44 MB of theses 55MB are used for the moment by kernel for buffers and cached data, but if you run more proceses they will be released automatically.
Regards
Alex
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-25-2005 04:13 AM
03-25-2005 04:13 AM
Re: cache memory
# inactive_clean_percent default 30. Changed to 60 to free up dirty page faster.
vm.inactive_clean_percent=60
# pagecache default 1 15 30. Use less memory for data cache.
vm.pagecache = 1 5 10