Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

IIS not using all available free memory

 
   Web Hosting and Web Master Forums (Home) -> IIS RSS
Next:  Router  
Author Message
omark

External


Since: Oct 10, 2006
Posts: 2



(Msg. 1) Posted: Tue Oct 10, 2006 1:08 am
Post subject: IIS not using all available free memory
Archived from groups: microsoft>public>inetserver>iis (more info?)

I have 4gb of memory installed on a heavily loaded server w2k3/IIS6
with gigs of static content, and with all the tweaking to IIS, I can
not make it use more than 2GB of cache, is there a setting somewhere in
windows server or IIS that needs to be modified in order to go above
this threshold ?

 >> Stay informed about: IIS not using all available free memory 
Back to top
Login to vote
omark

External


Since: Oct 10, 2006
Posts: 2



(Msg. 2) Posted: Tue Oct 10, 2006 4:07 am
Post subject: Re: IIS not using all available free memory [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thanks a lot Egbert, that did it!! I will take your recommendation on
64bit processing.

While we are on the subject of IIS and caching, what is the difference
between the setting ObjectCacheTTL setting, and the http.sys caching
setting UriScavengerPeriod?



On Oct 10, 10:41 am, "Egbert Nierop \(MVP for IIS\)"
<egbert_nie... RemoveThis @nospam.invalid> wrote:
> Hi,
>
> Modify c:\boot.ini
> to start windows with the /3GB switch.
>
> If you are -really- concerned about having as much cache as possible, go
> 64-bit!
> You will see enormous scalability boosts!
> I have running such a system, and really most memory operatoins are already
> twice as fast. Especially if you need gygabites of cache, 64-bit is -the-
> way to go.
>
> Note: If you upgrade to Windows X64, 95% of the 32-bit programs you run on
> that systems continue to work. What needs attention if you have ***custom***
> 32bit COM components written in VB6 or in C++. VB6 COM components cannot run
> in a 64bit env, but C++ components can be recompiled.
>
> <o... RemoveThis @jeeran.com> wrote in messagenews:1160467738.742458.56140@m7g2000cwm.googlegroups.com...
>
> >I have 4gb of memory installed on a heavily loaded server w2k3/IIS6
> > with gigs of static content, and with all the tweaking to IIS, I can
> > not make it use more than 2GB of cache, is there a setting somewhere in
> > windows server or IIS that needs to be modified in order to go above
> > this threshold ?

 >> Stay informed about: IIS not using all available free memory 
Back to top
Login to vote
"Egbert Nierop

External


Since: Oct 14, 2005
Posts: 201



(Msg. 3) Posted: Tue Oct 10, 2006 10:41 am
Post subject: Re: IIS not using all available free memory [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hi,

Modify c:\boot.ini
to start windows with the /3GB switch.

If you are -really- concerned about having as much cache as possible, go
64-bit!
You will see enormous scalability boosts!
I have running such a system, and really most memory operatoins are already
twice as fast. Especially if you need gygabites of cache, 64-bit is -the-
way to go.

Note: If you upgrade to Windows X64, 95% of the 32-bit programs you run on
that systems continue to work. What needs attention if you have ***custom***
32bit COM components written in VB6 or in C++. VB6 COM components cannot run
in a 64bit env, but C++ components can be recompiled.

<omark DeleteThis @jeeran.com> wrote in message
news:1160467738.742458.56140@m7g2000cwm.googlegroups.com...
>I have 4gb of memory installed on a heavily loaded server w2k3/IIS6
> with gigs of static content, and with all the tweaking to IIS, I can
> not make it use more than 2GB of cache, is there a setting somewhere in
> windows server or IIS that needs to be modified in order to go above
> this threshold ?
>
 >> Stay informed about: IIS not using all available free memory 
Back to top
Login to vote
"Egbert Nierop

External


Since: Oct 14, 2005
Posts: 201



(Msg. 4) Posted: Tue Oct 10, 2006 1:54 pm
Post subject: Re: IIS not using all available free memory [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

<omark.TakeThisOut@jeeran.com> wrote in message
news:1160478429.317170.146370@c28g2000cwb.googlegroups.com...
> Thanks a lot Egbert, that did it!! I will take your recommendation on
> 64bit processing.
>
> While we are on the subject of IIS and caching, what is the difference
> between the setting ObjectCacheTTL setting, and the http.sys caching

good question. I think but not for 100% sure that ObjectCacheTTL is a
cache at the IIS resource based level such as scripts, blobs (images),
directory listing caches etc.
While a Uri identifies resources by Universal Resource Identifier for
instance http://www.yourserver.com/yourpage.aspx
Behind the .aspx are several theorecticall files on NTFS, but the output
could be cached as a whole since this is a Uri.


Objects in the Memory Cache will be phased out of the cache if there have
been no references to an object after this period. If system memory is
limited, a lower TTL may be useful to prevent non-paged memory being used
for cached file handles. A value of 0xFFFFFFFF disables the object cache
scavenger. Units are in seconds.
ObjectCacheTTL REG_DWORD
Range: 0 - 0x7FFFFFFF, 0xFFFFFFFF Default:10*60(10Minutes)
Description: INTERNAL ANALYSIS
UriScavengerPeriod 120 (seconds) 10 - 0xFFFFFFFF seconds Determines the
frequency of the cache scavenger. Any response or fragment that has not been
accessed in the number of seconds equal to UriScavengerPeriod is flushed. >
setting UriScavengerPeriod?> > > > On Oct 10, 10:41 am, "Egbert Nierop \(MVP
for IIS\)"> <egbert_nie....TakeThisOut@nospam.invalid> wrote:>> Hi,>>>> Modify
c:\boot.ini>> to start windows with the /3GB switch.>>>> If you are -really-
concerned about having as much cache as possible, go>> 64-bit!>> You will
see enormous scalability boosts!>> I have running such a system, and really
most memory operatoins are already>> twice as fast. Especially if you need
gygabites of cache, 64-bit is -the->> way to go.>>>> Note: If you upgrade to
Windows X64, 95% of the 32-bit programs you run on>> that systems continue
to work. What needs attention if you have ***custom***>> 32bit COM
components written in VB6 or in C++. VB6 COM components cannot run>> in a
64bit env, but C++ components can be recompiled.>>>> <o....TakeThisOut@jeeran.com> wrote
in messagenews:1160467738.742458.56140@m7g2000cwm.googlegroups.com...>>>> >I
have 4gb of memory installed on a heavily loaded server w2k3/IIS6>> > with
gigs of static content, and with all the tweaking to IIS, I can>> > not make
it use more than 2GB of cache, is there a setting somewhere in>> > windows
server or IIS that needs to be modified in order to go above>> > this
threshold ?>
 >> Stay informed about: IIS not using all available free memory 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
How does IIS free memory allocated in a DCOM call? - Hi, I'm making functions calls from my ASP pages using a COM object, and am currently attempting to track the cause of an apparent memory leak. What I'm curious to know is how the web server frees memory allocated with SysAllocString and SafeArrayCreate...

IIS out of memory - I've got a box that has 4 gig of RAM Win 2K Advanced. Eventually, on our IIS application we get out of memory errors messages and the application fails until we restart IIS. If we put in /3gb in boot.ini would this allow IIS to access more than 2..

IIS 5.0 out of memory - Hi there, I Have IIS 5 running on IBM server with 512MB of memory. Every week basically the server crash with a message out of memory. restarting the server solve the problem. I have IIS 5.0 on Windows 2000 with SP4, Hotfixes are all uptodate..

IIS 5.0 ASP Out of memory - Helllpppp We have an IIS 5.0 installation using ASP 3.0 pages. We connect to Oracle database 8.1.7. About 150 users For the past 3 days system has been working fine. Now all of a sudden IIS is logging the message into Win 2000 event log "ASP 01...

IIS Out of Memory - I have a website that uses ASP and VB6 SP5 DLLs. The DLL uses winsock APIs. About every two days, the lookups that I am doing stop working and I get an error message "out of memory". When this happens, I can still call the home page, enter l...
   Web Hosting and Web Master Forums (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]