View Single Post
  #3 (permalink)  
Old 12th December 2009, 07:05 PM
mhbernheim mhbernheim is offline
Junior Member
 
Join Date: Dec 2009
OS: CentOS
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
mhbernheim is on a distinguished road
Default

Sure Nixcraft,

Code:
[mysqld]
max_connections = 4900
key_buffer = 512M
myisam_sort_buffer_size = 64M
join_buffer_size = 1M
read_buffer_size = 1M
sort_buffer_size = 2M
table_cache = 2500
thread_cache_size = 64
wait_timeout = 3600
connect_timeout = 300
max_allowed_packet = 16M
max_connect_errors = 1000
query_cache_limit = 4M
query_cache_size = 48M
query_cache_type = 1
skip-innodb

[mysqld_safe]
open_files_limit = 8192

[mysqldump]
quick
max_allowed_packet = 16M

[myisamchk]
key_buffer = 64M
sort_buffer = 64M
read_buffer = 16M
write_buffer = 16M
We dont use any acceleration or cache, however, our SELECT *'s on the webserver are cached using AdoDB's file cache, but on the uploading application server there is no cache being used, the folks at the datacenter suggest that the latency might just be too high for MySQL but that seems ridiculous.
Reply With Quote