Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ways to improve compilation?

Reply
Thread Tools

ways to improve compilation?

 
 
Jéjé
Guest
Posts: n/a
 
      11-08-2004
Hi,

hoew can I improve the compilation process of a sharepoint website?

my server is:
2 * P3 Xeom 1ghz
4go ram
2 * 36gb (mirror for OS and website)
2 * 36 Raid 0 (stripping; for temp files and ASP.net compiled files)
3.*36 raid 5 (for databases)

I found this server slow!!!
another new server:
Celeron 2.5ghz
1.5gb ram
2 *36gb (mirror)

the second server takes far less time to compile the pages and done some
rendering processes

any idea how can I improve my server A?

thanks.

Jerome.


 
Reply With Quote
 
 
 
 
Klaus H. Probst
Guest
Posts: n/a
 
      11-08-2004
The web pages should be compiled only once, not every time they load. If
you're seeing performance problems it's unlikely that the issue is with the
web site code itself.


--

Klaus H. Probst, MVP
http://www.vbbox.com/


"Jéjé" <> wrote in message
news:...
> Hi,
>
> hoew can I improve the compilation process of a sharepoint website?
>
> my server is:
> 2 * P3 Xeom 1ghz
> 4go ram
> 2 * 36gb (mirror for OS and website)
> 2 * 36 Raid 0 (stripping; for temp files and ASP.net compiled files)
> 3.*36 raid 5 (for databases)
>
> I found this server slow!!!
> another new server:
> Celeron 2.5ghz
> 1.5gb ram
> 2 *36gb (mirror)
>
> the second server takes far less time to compile the pages and done some
> rendering processes
>
> any idea how can I improve my server A?
>
> thanks.
>
> Jerome.
>
>



 
Reply With Quote
 
 
 
 
Jéjé
Guest
Posts: n/a
 
      11-08-2004
I know that the page is compiled only 1 time
but we have a lot of pages, and the CSC process appear to many times and the
compilation process himself is long.
specially after an iisreset command.


"Klaus H. Probst" <> wrote in message
news:%...
> The web pages should be compiled only once, not every time they load. If
> you're seeing performance problems it's unlikely that the issue is with
> the
> web site code itself.
>
>
> --
>
> Klaus H. Probst, MVP
> http://www.vbbox.com/
>
>
> "Jéjé" <> wrote in message
> news:...
>> Hi,
>>
>> hoew can I improve the compilation process of a sharepoint website?
>>
>> my server is:
>> 2 * P3 Xeom 1ghz
>> 4go ram
>> 2 * 36gb (mirror for OS and website)
>> 2 * 36 Raid 0 (stripping; for temp files and ASP.net compiled files)
>> 3.*36 raid 5 (for databases)
>>
>> I found this server slow!!!
>> another new server:
>> Celeron 2.5ghz
>> 1.5gb ram
>> 2 *36gb (mirror)
>>
>> the second server takes far less time to compile the pages and done some
>> rendering processes
>>
>> any idea how can I improve my server A?
>>
>> thanks.
>>
>> Jerome.
>>
>>

>
>



 
Reply With Quote
 
=?Utf-8?B?RGFuaWVsIExhcnNvbiAod3d3LnBvcnRhbGJ1aWxkZXIub3JnKQ==?=
Guest
Posts: n/a
 
      11-08-2004
Jeje,

It appears Server A is running the database. Having a dedicated SQL box that
isn't the front end web server will probably crank your performance up a few
notches... which is why Server B is a lot faster-- it's not dealing with any
database work.

For portalbuilder.org, I run a dedicated SQL box, a web + serach box, and a
index +job box. Keeping everything but web OFF of the front end will
dramatically increase your performance... so you may want to use server B as
your front end and keep Server A for your backend. Add a cheap box for your
index and job server (you don't want that on either your front end or
database server optimally) and you'll be STYLIN.

Daniel Larson
www.portalbuilder.org

"Jéjé" wrote:

> I know that the page is compiled only 1 time
> but we have a lot of pages, and the CSC process appear to many times and the
> compilation process himself is long.
> specially after an iisreset command.
>
>
> "Klaus H. Probst" <> wrote in message
> news:%...
> > The web pages should be compiled only once, not every time they load. If
> > you're seeing performance problems it's unlikely that the issue is with
> > the
> > web site code itself.
> >
> >
> > --
> >
> > Klaus H. Probst, MVP
> > http://www.vbbox.com/
> >
> >
> > "Jéjé" <> wrote in message
> > news:...
> >> Hi,
> >>
> >> hoew can I improve the compilation process of a sharepoint website?
> >>
> >> my server is:
> >> 2 * P3 Xeom 1ghz
> >> 4go ram
> >> 2 * 36gb (mirror for OS and website)
> >> 2 * 36 Raid 0 (stripping; for temp files and ASP.net compiled files)
> >> 3.*36 raid 5 (for databases)
> >>
> >> I found this server slow!!!
> >> another new server:
> >> Celeron 2.5ghz
> >> 1.5gb ram
> >> 2 *36gb (mirror)
> >>
> >> the second server takes far less time to compile the pages and done some
> >> rendering processes
> >>
> >> any idea how can I improve my server A?
> >>
> >> thanks.
> >>
> >> Jerome.
> >>
> >>

> >
> >

>
>
>

 
Reply With Quote
 
Jéjé
Guest
Posts: n/a
 
      11-08-2004
the server B is also a standalone server (wioth all in 1 box : database, web
sites, sharepoint...)
and server B has only 2 IDE HD!
no SCSI!
(all NTFS)

"Daniel Larson (www.portalbuilder.org)"
<> wrote in message
news:91262829-CCF8-4876-9663-...
> Jeje,
>
> It appears Server A is running the database. Having a dedicated SQL box
> that
> isn't the front end web server will probably crank your performance up a
> few
> notches... which is why Server B is a lot faster-- it's not dealing with
> any
> database work.
>
> For portalbuilder.org, I run a dedicated SQL box, a web + serach box, and
> a
> index +job box. Keeping everything but web OFF of the front end will
> dramatically increase your performance... so you may want to use server B
> as
> your front end and keep Server A for your backend. Add a cheap box for
> your
> index and job server (you don't want that on either your front end or
> database server optimally) and you'll be STYLIN.
>
> Daniel Larson
> www.portalbuilder.org
>
> "Jéjé" wrote:
>
>> I know that the page is compiled only 1 time
>> but we have a lot of pages, and the CSC process appear to many times and
>> the
>> compilation process himself is long.
>> specially after an iisreset command.
>>
>>
>> "Klaus H. Probst" <> wrote in message
>> news:%...
>> > The web pages should be compiled only once, not every time they load.
>> > If
>> > you're seeing performance problems it's unlikely that the issue is with
>> > the
>> > web site code itself.
>> >
>> >
>> > --
>> >
>> > Klaus H. Probst, MVP
>> > http://www.vbbox.com/
>> >
>> >
>> > "Jéjé" <> wrote in message
>> > news:...
>> >> Hi,
>> >>
>> >> hoew can I improve the compilation process of a sharepoint website?
>> >>
>> >> my server is:
>> >> 2 * P3 Xeom 1ghz
>> >> 4go ram
>> >> 2 * 36gb (mirror for OS and website)
>> >> 2 * 36 Raid 0 (stripping; for temp files and ASP.net compiled files)
>> >> 3.*36 raid 5 (for databases)
>> >>
>> >> I found this server slow!!!
>> >> another new server:
>> >> Celeron 2.5ghz
>> >> 1.5gb ram
>> >> 2 *36gb (mirror)
>> >>
>> >> the second server takes far less time to compile the pages and done
>> >> some
>> >> rendering processes
>> >>
>> >> any idea how can I improve my server A?
>> >>
>> >> thanks.
>> >>
>> >> Jerome.
>> >>
>> >>
>> >
>> >

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?RGFuaWVsIExhcnNvbiAod3d3LnBvcnRhbGJ1aWxkZXIub3JnKQ==?=
Guest
Posts: n/a
 
      11-11-2004
That's crazy Jeje!

There must be some sort of bottleneck we're not seeing... sorry I couldn't
help, but let us know what you find!

Daniel Larson


"Jéjé" wrote:

> the server B is also a standalone server (wioth all in 1 box : database, web
> sites, sharepoint...)
> and server B has only 2 IDE HD!
> no SCSI!
> (all NTFS)
>
> "Daniel Larson (www.portalbuilder.org)"
> <> wrote in message
> news:91262829-CCF8-4876-9663-...
> > Jeje,
> >
> > It appears Server A is running the database. Having a dedicated SQL box
> > that
> > isn't the front end web server will probably crank your performance up a
> > few
> > notches... which is why Server B is a lot faster-- it's not dealing with
> > any
> > database work.
> >
> > For portalbuilder.org, I run a dedicated SQL box, a web + serach box, and
> > a
> > index +job box. Keeping everything but web OFF of the front end will
> > dramatically increase your performance... so you may want to use server B
> > as
> > your front end and keep Server A for your backend. Add a cheap box for
> > your
> > index and job server (you don't want that on either your front end or
> > database server optimally) and you'll be STYLIN.
> >
> > Daniel Larson
> > www.portalbuilder.org
> >
> > "Jéjé" wrote:
> >
> >> I know that the page is compiled only 1 time
> >> but we have a lot of pages, and the CSC process appear to many times and
> >> the
> >> compilation process himself is long.
> >> specially after an iisreset command.
> >>
> >>
> >> "Klaus H. Probst" <> wrote in message
> >> news:%...
> >> > The web pages should be compiled only once, not every time they load.
> >> > If
> >> > you're seeing performance problems it's unlikely that the issue is with
> >> > the
> >> > web site code itself.
> >> >
> >> >
> >> > --
> >> >
> >> > Klaus H. Probst, MVP
> >> > http://www.vbbox.com/
> >> >
> >> >
> >> > "Jéjé" <> wrote in message
> >> > news:...
> >> >> Hi,
> >> >>
> >> >> hoew can I improve the compilation process of a sharepoint website?
> >> >>
> >> >> my server is:
> >> >> 2 * P3 Xeom 1ghz
> >> >> 4go ram
> >> >> 2 * 36gb (mirror for OS and website)
> >> >> 2 * 36 Raid 0 (stripping; for temp files and ASP.net compiled files)
> >> >> 3.*36 raid 5 (for databases)
> >> >>
> >> >> I found this server slow!!!
> >> >> another new server:
> >> >> Celeron 2.5ghz
> >> >> 1.5gb ram
> >> >> 2 *36gb (mirror)
> >> >>
> >> >> the second server takes far less time to compile the pages and done
> >> >> some
> >> >> rendering processes
> >> >>
> >> >> any idea how can I improve my server A?
> >> >>
> >> >> thanks.
> >> >>
> >> >> Jerome.
> >> >>
> >> >>
> >> >
> >> >
> >>
> >>
> >>

>
>
>

 
Reply With Quote
 
Jéjé
Guest
Posts: n/a
 
      11-11-2004
I know

and I've not found the bottleneck!
are drives are ok, processors also.

maybe a memory problem...

"Daniel Larson (www.portalbuilder.org)"
<> wrote in message
news:8118C855-6245-4D06-853B-...
> That's crazy Jeje!
>
> There must be some sort of bottleneck we're not seeing... sorry I couldn't
> help, but let us know what you find!
>
> Daniel Larson
>
>
> "Jéjé" wrote:
>
>> the server B is also a standalone server (wioth all in 1 box : database,
>> web
>> sites, sharepoint...)
>> and server B has only 2 IDE HD!
>> no SCSI!
>> (all NTFS)
>>
>> "Daniel Larson (www.portalbuilder.org)"
>> <> wrote in message
>> news:91262829-CCF8-4876-9663-...
>> > Jeje,
>> >
>> > It appears Server A is running the database. Having a dedicated SQL box
>> > that
>> > isn't the front end web server will probably crank your performance up
>> > a
>> > few
>> > notches... which is why Server B is a lot faster-- it's not dealing
>> > with
>> > any
>> > database work.
>> >
>> > For portalbuilder.org, I run a dedicated SQL box, a web + serach box,
>> > and
>> > a
>> > index +job box. Keeping everything but web OFF of the front end will
>> > dramatically increase your performance... so you may want to use server
>> > B
>> > as
>> > your front end and keep Server A for your backend. Add a cheap box for
>> > your
>> > index and job server (you don't want that on either your front end or
>> > database server optimally) and you'll be STYLIN.
>> >
>> > Daniel Larson
>> > www.portalbuilder.org
>> >
>> > "Jéjé" wrote:
>> >
>> >> I know that the page is compiled only 1 time
>> >> but we have a lot of pages, and the CSC process appear to many times
>> >> and
>> >> the
>> >> compilation process himself is long.
>> >> specially after an iisreset command.
>> >>
>> >>
>> >> "Klaus H. Probst" <> wrote in message
>> >> news:%...
>> >> > The web pages should be compiled only once, not every time they
>> >> > load.
>> >> > If
>> >> > you're seeing performance problems it's unlikely that the issue is
>> >> > with
>> >> > the
>> >> > web site code itself.
>> >> >
>> >> >
>> >> > --
>> >> >
>> >> > Klaus H. Probst, MVP
>> >> > http://www.vbbox.com/
>> >> >
>> >> >
>> >> > "Jéjé" <> wrote in message
>> >> > news:...
>> >> >> Hi,
>> >> >>
>> >> >> hoew can I improve the compilation process of a sharepoint website?
>> >> >>
>> >> >> my server is:
>> >> >> 2 * P3 Xeom 1ghz
>> >> >> 4go ram
>> >> >> 2 * 36gb (mirror for OS and website)
>> >> >> 2 * 36 Raid 0 (stripping; for temp files and ASP.net compiled
>> >> >> files)
>> >> >> 3.*36 raid 5 (for databases)
>> >> >>
>> >> >> I found this server slow!!!
>> >> >> another new server:
>> >> >> Celeron 2.5ghz
>> >> >> 1.5gb ram
>> >> >> 2 *36gb (mirror)
>> >> >>
>> >> >> the second server takes far less time to compile the pages and done
>> >> >> some
>> >> >> rendering processes
>> >> >>
>> >> >> any idea how can I improve my server A?
>> >> >>
>> >> >> thanks.
>> >> >>
>> >> >> Jerome.
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >>
>> >>
>> >>

>>
>>
>>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to quickly improve your computer's performance @ Bona... Silverstrand Front Page News 0 08-24-2005 01:26 PM
MCSE: Is it now a SCAM? +Suggestion to improve it Mike MCSE 20 12-04-2003 09:27 PM
How to improve the asp.net application's performance? hb ASP .Net 2 11-25-2003 10:35 PM
Ways to improve this clock algorithm? Jacob H Python 6 09-20-2003 09:28 AM
* Simple ways to improve photography * Simple Digital Photography 1 07-29-2003 08:38 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57