Sponsored Content
UNIX Standards and Benchmarks UNIX & LINUX Benchmarks (Version 3.11) Linux Benchmarks AMD 2500 / 1G RAM / Soyo KT600 Ultra MB Post 40190 by auswipe on Wednesday 10th of September 2003 05:39:12 PM
Old 09-10-2003
Re: AMD 2500 / 1G RAM / Soyo KT600 Ultra MB

Quote:
Originally posted by Neo
System Notes:

Code:
Cache:            512MB

Wow! That's a lot of cache. Where did you find space to put it on the processor? Smilie Smilie

I am running the Unix bechmark on a FreeBSD at the house just for grins and giggles and will post in the Unix Benchmark area when done.
 

10 More Discussions You Might Find Interesting

1. Linux Benchmarks

Amd 2600 Nvidia Nforce Ultra 400

CPU/Speed: AMD 2600, 2083 MHz @ 333Mhz Ram: 2x 256 MB Pc 266 CL2.5 DDRam from Infineon Motherboard: MSI K7n2 Delta Series (Dual Channel DDRam) Bus: Nvidia nForce2 SPP Cache: 256 KByte Controller:Nvidia nForce 2 MCP2-T Disk: IBM 80 GB 7200 upm Kernel: 2.4.23 self compiled ... (0 Replies)
Discussion started by: Mikel25e
0 Replies

2. Solaris

Anyone has problems with new Blade 2500????

Hi guys, I am a new member here. This is my first post. I try to purchase some new Blade 2500 for the company. However, the vendor suggests me to get Blade 2000 instead. The vendor said he has many problems with new Silver Blade 2500's. Has anyone here had simlar experience with blade 2500?... (4 Replies)
Discussion started by: facaizhu
4 Replies

3. Red Hat

red hat Linux 5.0 is detecting 3gb ram but physical ram is 16gb

Hi, On server 64bit Hw Arch , Linux 5.0(32bit) is installed it is showing only 3gb of ram though physical is 16gb can u give me idea why? (4 Replies)
Discussion started by: manoj.solaris
4 Replies

4. Linux Benchmarks

AMD Phenom(tm) 9950 Quad-Core Processor, Ram: 3.6 GB, Foxconn 7da-s and Linux 2.6.26-2-amd64

CPU/Speed: AMD Phenom(tm) 9950 Quad-Core Processor Ram: 3.6 GB Motherboard: Foxconn 7da-s Bus: Cache: Controller: Disk: Load: Kernel: Linux 2.6.26-2-amd64 Kernel ELF?: pgms: ============================================================== BYTE UNIX Benchmarks (Version... (0 Replies)
Discussion started by: migracho
0 Replies

5. What is on Your Mind?

Now Over 2500 FB Fans for Our New Timeline

Progress! 25% there on our way 10,000 FB fans on the new timeline: https://www.unix.com/members/neo-albums-forum-pics-picture503-facebook-timeline-now-over-2-500-fans.png (0 Replies)
Discussion started by: Neo
0 Replies

6. Hardware

StorageTek 2500

Hi, I recently got StoragaTek 2500 and I would like to connect it to my solaris machine, since I don't have much experience with storages, could someone point me how to do so, how can i present disks from storage on my solaris os? (everything is already connected) thanks in advance (1 Reply)
Discussion started by: sprehodec
1 Replies

7. Linux Benchmarks

Amd a10 with 2 quadcore cpu and 8 gig ram

my portal lab is an HP Pavallion 15 laptop, amd A10 2 x quadcore with 8 gig ram and 1 TB disk on windows 8, running VMware workstation 10, RHEL6 , 6.4, Santiago release, 1 vcpu and 1 core , 2 gig of RAM allocated to this vm guest BYTE UNIX Benchmarks (Version 3.11) System -- Linux... (0 Replies)
Discussion started by: ppchu99
0 Replies

8. BSD

Installing OpenBSD for Xorg on Sunblade 2500

Hello All, I am new to the forum so forgive me for any mistakes. I have a question. I have been doing alot of reading about how to get a supportable operating system on my sunblade 2500. I also want to use it for Xorg. I have been having trouble getting the sun XVR drivers working... (2 Replies)
Discussion started by: harqobi22
2 Replies

9. Solaris

Cloning a Sunblade 2500

Good Morning, I took a mirror drive from one Solaris 9 machine and used it to set up another. After syncing another mirror on the second machine I restarted but I don't get a login screen. I see a message:The X-server cannot be started on display :0 Also during startup I see:... (8 Replies)
Discussion started by: Stellaman1977
8 Replies

10. UNIX for Beginners Questions & Answers

Ufsrestore on SunBlade 2500

Good Afternoon, I'm setting up a SunBlade 2500 using ufsrestoreand have gotten to the point where I have restored the root and usr partitions. However, the machine keeps rebooting, never really coming up. Looking at vfstab, it looks pretty empty- shouldn't I see entries like... (22 Replies)
Discussion started by: Stellaman1977
22 Replies
Cache::CacheMetaData(3pm)				User Contributed Perl Documentation				 Cache::CacheMetaData(3pm)

NAME
Cache::CacheMetaData -- data about objects in the cache DESCRIPTION
The CacheMetaData object is used by size aware caches to keep track of the state of the cache and effeciently return information such as an objects size or an ordered list of indentifiers to be removed when a cache size is being limited. End users will not normally use CacheMetaData directly. SYNOPSIS
use Cache::CacheMetaData; my $cache_meta_data = new Cache::CacheMetaData( ); foreach my $key ( $cache->get_keys( ) ) { my $object = $cache->get_object( $key ) or next; $cache_meta_data->insert( $object ); } my $current_size = $cache_meta_data->get_cache_size( ); my @removal_list = $cache_meta_data->build_removal_list( ); METHODS
new( ) Construct a new Cache::CacheMetaData object insert( $object ) Inform the CacheMetaData about the object $object in the cache. remove( $key ) Inform the CacheMetaData that the object specified by $key is no longer in the cache. build_removal_list( ) Create a list of the keys in the cache, ordered as follows: 1) objects that expire now 2) objects expiring at a particular time, with ties broken by the time at which they were least recently accessed 3) objects that never expire, sub ordered by the time at which they were least recently accessed NOTE: This could be improved further by taking the size into account on accessed_at ties. However, this type of tie is unlikely in normal usage. build_object_size( $key ) Return the size of an object specified by $key. PROPERTIES
get_cache_size The total size of the objects in the cache SEE ALSO
Cache::Cache, Cache::CacheSizer, Cache::SizeAwareCache AUTHOR
Original author: DeWitt Clinton <dewitt@unto.net> Last author: $Author: dclinton $ Copyright (C) 2001-2003 DeWitt Clinton perl v5.12.4 2009-03-01 Cache::CacheMetaData(3pm)
All times are GMT -4. The time now is 03:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy