Index Caching with Merge Engine

2011-04-07 Thread James W. McKelvey
We are currently evaluating the merge engine. Right now we create and preload several index caches. But what is the best way to approach this with a merged table? Do I create a single index cache and assign all of the shards to it? Or do I create a separate index cache for each shard? I

no caching of Stored Procedure results?

2007-01-12 Thread Peter C. Andrews Jr.
stored into the query cache. I did not realize this before putting a lot of work into my stored procs. I did so partly because of the performance benefits (I thought) of using stored procedures but I now find that I am missing out on a major performance enhancement -- results caching. The stored procs I

users browser caching the screen

2006-03-13 Thread fbsd_user
security control because it’s launched from the verify email I sent him. Now my registration sign up screen has a Captcha Security Code Random-Noisy-Image and part of that is a string of headers to the browser to stop caching. They look like this. // send several headers to make sure the image

Re: users browser caching the screen

2006-03-13 Thread gerald_clark
not have session security control because it’s launched from the verify email I sent him. Now my registration sign up screen has a Captcha Security Code Random-Noisy-Image and part of that is a string of headers to the browser to stop caching. They look like this. // send several headers to make

RE: users browser caching the screen

2006-03-13 Thread fbsd_user
I guess you are saying that trying to have my php script send the users browser html headers to stop caching is not really going to solve my problem. I did put a block rule in my firewall for the attackers ip address and that stopped the attach from recurring. But to make sure it don't happen

Re: Why does query load faster after executing 2nd time? (Query Caching DISABLED, Key-Cache already fully loaded)

2005-07-17 Thread Greg Whalin
Filesystem buffering? pow wrote: Hi everyone, Im puzzling over why a query loads faster the second time I execute it. I am sure it is not query cached, because that is off. I also made sure that the key that is used was already cached b4 i even executed the query the first time. So it is not

Re: Why does query load faster after executing 2nd time? (Query Caching DISABLED, Key-Cache already fully loaded)

2005-07-17 Thread sam . deforest
Hello therei have seen this question before, I cannot exactly remember when but it was a while ago. My advice is to go to the mysql.com website and do a search thru the mailing list using a search term something like must execute query twice or something to that effect. -sam Filesystem

Why does query load faster after executing 2nd time? (Query Caching DISABLED, Key-Cache already fully loaded)

2005-07-16 Thread pow
Hi everyone, Im puzzling over why a query loads faster the second time I execute it. I am sure it is not query cached, because that is off. I also made sure that the key that is used was already cached b4 i even executed the query the first time. So it is not like as if the 2nd execution used

Table caching

2005-06-24 Thread Peter Hicks
Hello I have a relatively simple table of 200+ network devices and 60+ sites. This is accessed about 30 times a minute by various perl scripts to pick up device/site information. Will I see any noticable benefit from creating a cached copy of this table as a MEMORY table? The data doesn't

Re: Table caching

2005-06-24 Thread Dan Nelson
In the last episode (Jun 22), Peter Hicks said: I have a relatively simple table of 200+ network devices and 60+ sites. This is accessed about 30 times a minute by various perl scripts to pick up device/site information. Will I see any noticable benefit from creating a cached copy of this

large query result caching (using C API)

2003-12-12 Thread Alex E.Wintermann
MySQL 4.1.0-alpha-max-nt MySQL C API interface Visual C++ 6.0 trying some query when cache is on... it causes ERROR: Lost connection to MySQL sever during query MySQL cache memory used for _this_ query ~900Kb but when cache is off or query result size is less than few Kb, everything is OK. WHY?

Re: How does LIMIT affect Query Caching

2003-10-13 Thread Nitin
PROTECTED]; [EMAIL PROTECTED] Sent: Monday, October 13, 2003 12:03 AM Subject: Re: How does LIMIT affect Query Caching In the last episode (Oct 12), Nitin said: query cache doesn't cache the data, but the execution plan of the query. so, in your example it'll treat both query as same

Re: How does LIMIT affect Query Caching

2003-10-12 Thread Nitin
, not the time taken to fetch the data from the database. Enjoy Nitin - Original Message - From: Reto Baumann [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, October 12, 2003 6:25 PM Subject: How does LIMIT affect Query Caching Does somebody know, how the LIMIT statement does affect

Re: How does LIMIT affect Query Caching

2003-10-12 Thread Dan Nelson
In the last episode (Oct 12), Nitin said: query cache doesn't cache the data, but the execution plan of the query. so, in your example it'll treat both query as same, as both are fetching data from same result set. query cache just increases the speed of query execution, that means minimizes

Apparent Write caching slowing performance...

2003-03-14 Thread Jason West
Hi, I'm having some serious performance issues that are stemming from MySQL writing data to tables. MySQL seems to cache writes, then write the block all at once. The major issue I'm having with this is that it when it does this it stops processing other requests until it's finished. I have

re: Caching queries

2003-02-11 Thread Victoria Reznichenko
On Monday 10 February 2003 17:54, Octavian Rasnita wrote: Please tell me what should I do to make MySQL cache all the queries that can be cached. Can I do this if I am not the administrator of MySQL server? (on a session basis...). Take a look at query cache:

is mysql activities consuming RAM or is a linux kernel caching matter?

2003-02-10 Thread Francesco Leonetti
(involving mysql queries) the RAM used as cached increases quickly. Am I wrong in thinking that there must be some relationship between mysql queries and kernel cache memory? (maybe filesystem caching related to index and tables files??) I cannot find out how to prevent the kernel from caching so much

Caching queries

2003-02-10 Thread Octavian Rasnita
Hi all, Please tell me what should I do to make MySQL cache all the queries that can be cached. Can I do this if I am not the administrator of MySQL server? (on a session basis...). Thanks. Teddy, Teddy's Center: http://teddy.fcc.ro/ Email: [EMAIL PROTECTED]

References to set up a caching mysql box

2002-09-05 Thread Mitchell, Edmund
Hello all We want a fast box which will only handle username/password queries. I got a recommendation to look into a dedicated mysql box, setup so that it apparently caches large amounts of the data from the database in RAM for very fast lookups. Sounds great, but I have never done anything to

Re: Caching

2002-05-23 Thread Benjamin Pflugmann
Hi. If you are using a decent operating system and have enough memory, it will do it for you implicitly by caching the files. This is not as fast as it could be (because the content still has to be evaluated each time), but already gives you the main speed advantage of memory vs. disks. If you

Caching

2002-05-22 Thread Ravi Verma
Greetings Friends, How could cache the whole mysql database in the memory? Which parameters would help? Regards. Ravi Verma 916 705 3261 - Before posting, please check: http://www.mysql.com/manual.php (the manual)

Re: Problem with mysqldump when using query caching

2002-04-11 Thread Egor Egorov
Nick, Wednesday, April 10, 2002, 7:27:20 PM, you wrote: NP I'm using Mysql 4.0.1 with query caching: NP set-variable = query_cache_limit=10M NP set-variable = query_cache_size=10M NP set-variable = query_cache_startup_type=1 NP

Problem with mysqldump when using query caching

2002-04-10 Thread Nick Pasich
Description: I'm using Mysql 4.0.1 with query caching: set-variable = query_cache_limit=10M set-variable = query_cache_size=10M set-variable = query_cache_startup_type=1 The Command: mysqldump -q -K -t

Re: Problem with mysqldump when using query caching

2002-04-10 Thread Ken Menzel
: Problem with mysqldump when using query caching Description: I'm using Mysql 4.0.1 with query caching: set-variable = query_cache_limit=10M set-variable = query_cache_size=10M set-variable = query_cache_startup_type=1 The Command: mysqldump -q -K -t --tab='.' \ --fields-optionally

Re: Problem with mysqldump when using query caching (4.01)

2002-04-10 Thread Nick Pasich
- From: Nick Pasich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 10, 2002 12:27 PM Subject: Problem with mysqldump when using query caching Description: I'm using Mysql 4.0.1 with query caching: set-variable = query_cache_limit=10M set-variable = query_cache_size

consistency of NOW() function, and summary caching

2002-02-19 Thread Rob
I'm curious about what guarantees MySQL (and the SQL standard) provide with regard to multiple calls to NOW() within the same statement. If the statement takes a long time to execute, will NOW() be consistent across all invocations? The trivial example of this is if you're updating a large set of

Re: consistency of NOW() function, and summary caching

2002-02-19 Thread alec . cawley
I'd also love any suggestions/criticisms of the above architecture. I'm trying to address what is a potentially significant performance issue for us (we hope to allow the main table to grow to tens to hundreds of millions of rows before pruning it down), but there might be a much simpler

Re[4]: regarding the MySQL's server Caching feature

2002-01-24 Thread Victoria Reznichenko
Hello Chetan, CL hi, CL I wanted to set variable query_cache_size.. CL I have tried for this as in below but the machine hangs up every time i CL am doing this... CL Any other method by which I can set this Variable..? Try to run safe_mysqld in background mode. CL shell mysqld -u root

Re: regarding the MySQL's server Caching feature

2002-01-22 Thread Dan Nelson
In the last episode (Jan 21), Jeremy Zawodny said: On Tue, Jan 22, 2002 at 12:57:12PM +0530, Chetan Lavti wrote: Is there any other way (except query cache) using which the database can be made memory resident. Actually I want a database which is to be used by a lookup server(something

Re: regarding the MySQL's server Caching feature

2002-01-21 Thread Jeremy Zawodny
On Tue, Jan 22, 2002 at 12:57:12PM +0530, Chetan Lavti wrote: Is there any other way (except query cache) using which the database can be made memory resident. Actually I want a database which is to be used by a lookup server(something like a dns server). The database lookup delay can

RE: regarding the MySQL's server Caching feature

2002-01-21 Thread Chetan Lavti
Lavti Cc: [EMAIL PROTECTED] Subject: Re: regarding the MySQL's server Caching feature On Tue, Jan 22, 2002 at 12:57:12PM +0530, Chetan Lavti wrote: Is there any other way (except query cache) using which the database can be made memory resident. Actually I want a database which is to be used

Re: regarding the MySQL's server Caching feature

2002-01-21 Thread Jeremy Zawodny
On Tue, Jan 22, 2002 at 01:07:09PM +0530, Chetan Lavti wrote: thanks again , yes, I have seen that but isn't it MySQL's default feature.. I will explore it more and talk to you for further queries.. Hmm. Not sure what you mean. Every version of MySQL released in the last couple years has

Browser caching problem OR mysql/perl code?

2001-12-12 Thread Jack A. Fobel
Hello, Coming from an ASP world, I'm trying to learn how to break the browser from caching. I am using variables and their values in the querystring to update a mysql database with perl. I am also re-querying the database to pull back the record. I was hoping to pull back the updated record

Re: Browser caching problem OR mysql/perl code?

2001-12-12 Thread Gordan Bobic
On Thursday 13 Dec 2001 03:42, Jack A. Fobel wrote: Hello, Coming from an ASP world, I'm trying to learn how to break the browser from caching. I am using variables and their values in the querystring to update a mysql database with perl. I am also re-querying the database to pull back

MySQL caching.

2001-10-05 Thread xiaofeng wang
Hi there, Does anybody know where to find documentation about MySQL caching? Thanks. Xiaofeng Wang - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com

Caching Bug with AUTO_INCREMENT columns

2001-02-13 Thread christoph . schemainda
From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Caching Bug with AUTO_INCREMENT columns Description: When i use a table with an AUTO_INCREMENT column and insert Data in the Table with a NULL Value for the AUTO_INCREMENT column, AUTO_INCREMENT sets an new value

Re: Caching Bug with AUTO_INCREMENT columns

2001-02-13 Thread Peter Skipworth
parameter ? *slightly blank look* P On Tue, 13 Feb 2001 [EMAIL PROTECTED] wrote: From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Caching Bug with AUTO_INCREMENT columns Description: When i use a table with an AUTO_INCREMENT column and insert Data in the Table