Page Index Toggle Pages: 1 2 [3]  Send TopicPrint
Very Hot Topic (More than 25 Replies) Give Feedback (Read 17679 times)
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Give Feedback
Reply #30 - Apr 23rd, 2002 at 2:18pm
Print Post  
I don't know any host who is independend from traffic Roll Eyes
  

The Administrator.
Back to top
WWW  
IP Logged
 
Brookmans
New Member
*
Offline


I love YaBB 1G - SP1!

Posts: 43
Joined: Feb 14th, 2002
Re: Give Feedback
Reply #31 - May 1st, 2002 at 5:22pm
Print Post  
Much faster - big improvement
  
Back to top
 
IP Logged
 
Sarah
Guest


Re: Give Feedback
Reply #32 - May 1st, 2002 at 7:04pm
Print Post  
Roll Eyes Glad you're experimenting with ways to speed up the forum. The forum's great, but the speed isn't (and I've got DSL)! I ddn't notice any improvement at all today. But what happens is that after waiting, it finally opens up  for a fraction of a sec, and for some strange reason, disappears to a blankwhite  page, and then I wait and wait for the page to reopen again. I haven't had that with anything else. But love the forum anyway--keep up the good work!
  
Back to top
 
IP Logged
 
atosch
Junior Member
**
Offline


I love YaBB 1 Gold!

Posts: 92
Joined: Sep 25th, 2001
Re: Give Feedback
Reply #33 - May 1st, 2002 at 10:04pm
Print Post  
i have noticed a gzip compression mod in the new modlist.

http://boardmod.yabbforum.com/mods.php?dl=439&filename=gzip_compression_01_sp1.m...

michael? is it similar to your changings?

cu atosch
  



Back to top
 
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Give Feedback
Reply #34 - May 2nd, 2002 at 10:23am
Print Post  
Quote:
Glad you're experimenting with ways to speed up the forum. The forum's great, but the speed isn't (and I've got DSL)! I ddn't notice any improvement at all today. But what happens is that after waiting, it finally opens up  for a fraction of a sec, and for some strange reason, disappears to a blankwhite  page, and then I wait and wait for the page to reopen again. I haven't had that with anything else. But love the forum anyway--keep up the good work!
I guess you don't know how terrific speed was before 11.04.02 Roll Eyes

Quote:
i have noticed a gzip compression mod in the new modlist. 

http://boardmod.yabbforum.com/mods.php?dl=439&filename=gzip_compress ion_01_sp1.mod

michael? is it similar to your changings?

cu atosch
yes that's the mod which I installed here for testing. The external compressing worked fine so far. But not the internal one, it didn't display post with code in them properly anymore.
  

The Administrator.
Back to top
WWW  
IP Logged
 
atosch
Junior Member
**
Offline


I love YaBB 1 Gold!

Posts: 92
Joined: Sep 25th, 2001
Re: Give Feedback
Reply #35 - May 2nd, 2002 at 10:10pm
Print Post  
hi,

which code do you mean and what is exactly the difference between internal and external compression.

cu atosch
  



Back to top
 
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Give Feedback
Reply #36 - May 3rd, 2002 at 12:25pm
Print Post  
This methode is meant by external compression: it will call a unix commandline program which will then compress and output the code.
Code
Select All
open(GZIP, "| gzip -f");
print GZIP $output;
close(GZIP); 


and the internal compression is done by a php module itself:
Code
Select All
require Compress::Zlib;
print Compress::Zlib::memGzip($output); 

  

The Administrator.
Back to top
WWW  
IP Logged
 
atosch
Junior Member
**
Offline


I love YaBB 1 Gold!

Posts: 92
Joined: Sep 25th, 2001
Re: Give Feedback
Reply #37 - May 5th, 2002 at 11:10pm
Print Post  
ok, thanks and which code causes gzip to crash? i am using this mod without problems. is this mod still under development?

cu atosch
  



Back to top
 
IP Logged
 
Administrator
Forum Administrator
*****
Offline


Yummm

Posts: 7
Location: Modders Rile
Joined: Oct 7th, 2014
Gender: Male
Re: Give Feedback
Reply #38 - May 7th, 2002 at 12:53pm
Print Post  
I have no idea Sad

It happened two times: once in a thread with a code box including some yabb code and once the message board index of the new mods board.

I was not able to figure out what characters caused the problem.
  

The Administrator.
Back to top
WWW  
IP Logged
 
Treben`s
Guest


Re: Give Feedback
Reply #39 - May 31st, 2002 at 8:43am
Print Post  
Does this Mod (Gzip Compression) also work under W2K and ActivePerl???

thx a lot, CF
  
Back to top
 
IP Logged
 
Christer Alexander
God Member
*****
Offline


Make my day...

Posts: 3443
Location: Lethbridge
Joined: Feb 10th, 2002
Gender: Male
Re: Give Feedback
Reply #40 - May 31st, 2002 at 3:17pm
Print Post  
no, simpy because Win2K does not have GZip Compression Wink
  

Code
Select All
unless(0) { stab("LoonyPandora"); next; } 

Back to top
IP Logged
 
treben
Guest


Re: Give Feedback
Reply #41 - Jun 3rd, 2002 at 12:25pm
Print Post  
It work`s fine under W2K & Activeperl

I use external compression without detection

  
Back to top
 
IP Logged
 
Alex (NegativeZero)
Guest


Re: Give Feedback
Reply #42 - Oct 24th, 2004 at 3:16pm
Print Post  
Decreasing  or increasing the number of file reads does not  reduce overhead (unless you remove some of the site features)

In fact with file locking, more files for flat-file data access = faster performance (cause a flock creates a counter) and you can have 2 flocks on seperate files running simultaneosly)

GZIP only works no supported browsers and compresses bandwidth transfer rates (but usually a noticable imporvement)

My suggestion:
Try using eblah: http://www.eblah.com
A board derived from a Yabb forum.

To improve speed on data access, you will have to use a database. Or indexes of any kind (although you probably have).

To reduce overhead in coding techniques. Perl runs faster with Object Oriented formats. rather than function oriented.
So dont call functions by: &FunctionName;
Use them as objects: FunctionName();

Im just glad they are taking off the "&" method of calling subroutines out for PERL 6. Pathetic form of coding. Learn C++, before using perl Cheesy
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1 2 [3] 
Send TopicPrint