Tagged Questions
The query-cache tag has no wiki summary.
17
votes
10answers
2k views
Why does this simple mysql insert query take occasionally so long?
Ok, I've got a real head scratcher... I'm going bald!
This is a pretty simple problem. Inserting data into the table normally works fine, except for a few times, the insert query takes a few ...
6
votes
1answer
373 views
How to use ActiveRecord Query Cache with Custom SQL
In a stats part of a Rails app, I have some custom SQL calls that are called with ActiveRecord::Base.execute() from the model code. They return various aggregates.
Some of these (identical) queries ...
6
votes
3answers
1k views
Hibernate Second-Level Query Cache not working Eager Fetching
In NHibernate Profiler I observed that when I use eager fetching on an association, using "left join fetch" in an HQL Query or .SetFetchMode() in a Criteria Query the query no longer gets cached in ...
3
votes
3answers
1k views
Hibernate query cache - for objects not in the 2nd level cache - risky? usefull? bad practice?
Related to this question
Premise:
These are my assumptions, based on my reading, experience and understanding, they may be wrong, if they are, please comment and I'll edit the question.
Query ...
3
votes
1answer
910 views
NHibernate query cache and WCF
I've enabled query cache for one of my queries, it works fine (query result is taken from query cache and entities from second level cache) when I run a test or a console application.
However, if I ...
2
votes
1answer
73 views
Memory usage in EF 1 web service application keeps growing on each call - query cache issues?
hoping some of you clever people can help me out here!
We have an ASP.NET web service app, using Entity Framework 1 and EFPocoAdapter. The mem usage of the app pool running this web service keeps ...
2
votes
2answers
115 views
Mysql to SQL Server: is there something similar to query cache?
I'm trying to optimize a SQL Server. I have some experience with Mysql and one of the things that usually help is to enable query cache, that will basically cache query results as long as you are ...
2
votes
1answer
112 views
Need to solve a query cache problem
I'm developing an double-entry accounting system and I need to insert posting records without any gaps in the sequential id. Since all database access will happen through a web application, I'm taking ...
2
votes
1answer
196 views
understanding hibernate cache
If I have this method in object class:
@OneToMany( fetch = FetchType.EAGER,
cascade = { CascadeType.ALL },
mappedBy = "object" )
@org.hibernate.annotations.Cascade(
...
2
votes
1answer
504 views
Hibernate - query caching/second level cache does not work by value object containing subitems
I have been struggling with the following problem:
I have a value object containing different panels. Each panel has a list of fields.
Mapping:
<class ...
2
votes
3answers
437 views
How do you enable hibernate query cache on a session level only?
Good day,
What if I have a query that gets called multiple times in a single thread, and I just want to cache that query (and its result) for that thread (or for that session since I'm using one ...
1
vote
1answer
33 views
How query cache works for scalar results?
I am new to Hibernate and I have the following piece of code in my DAO implementation class:
public Integer getEmployeeCode(String userName) {
Session session = ...
1
vote
1answer
53 views
Why Hibernate updates UpdateTimestampsCache with each SQL query
I have enabled second level and query caches in my app
Looks like when I invoke following code
String sql = "update SOME_TABLE set SOME_FIELD=somevalue";
SQLQuery query = ...
1
vote
1answer
42 views
selectively clear MySQL query cache (only clear one specific query)
I need to try & clear only a single query (actually a stored proc) from the cache in order to debug it & objectively determine if our optimizations are effective. It's on a client's production ...
1
vote
1answer
71 views
delete CodeIgniter Query Cache
When I make Query Caching in CodeIgniter by $this->db->cache_on(); it will make folder and file,folder named in controller+method for example show+73.
but when I delete row which has 73 id,from table ...
1
vote
1answer
67 views
Using MySQL Query Cache and Memcached at the same time
I think they are both great and I wanna know is it possible to use both caching systems together at the same time?
Is there any experience?
1
vote
1answer
350 views
Hibernate EntityManager + Query Cache - “join fetch” not working
I am trying to cache a query like this:
TypedQuery<Foo> q = em.createQuery(
"SELECT foo FROM Foo foo " +
"INNER JOIN FETCH Foo.bar "
);
q.setHint("org.hibernate.cacheable", true);
The ...
1
vote
2answers
799 views
What does the MySQL Query cache Hitrate % value respesent?
Using MySQL Workbench I am looking at the Admin view for two servers I run.
Both servers have a similar bandwidth
On one server there is just one site it has a Query Cache Hit Rate of 15%
The other ...
1
vote
3answers
202 views
MySQL cache and date functions
I once read in a performance blog that it is better to use PHP's date functions to set dates in a MySQL query instead of using mysql date functions like curdate() because mysql can then cache the ...
1
vote
2answers
440 views
Why is rails query caching not working?
In my development environment I have a single request that is generating hundreds of the same queries:
Person Load (24.4ms) SELECT "persons".* FROM "persons" WHERE ("persons"."person_id" = 517) ...
1
vote
1answer
161 views
NHibernate best pratices (Query cache with much static data)
We have a situation, where we feel we do not fully take advantage of NHibernate's capabilities, which reduces performance. The actual situation is reduced to a "blogs with posts" example for this ...
1
vote
2answers
529 views
MySQL query cache vs caching result-sets in the application layer
I'm running a php/mysql-driven website with a lot of visits and I'm considering the possibility of caching result-sets in shared memory in order to reduce database load.
However, right now MySQL's ...
1
vote
2answers
109 views
How can an improvement to the query cache be tracked?
I am parameterizing my web app's ad hoc sql. As a result, I expect the query plan cache to reduce in size and have a higher hit ratio. Perhaps even other important metrics will be improved.
Could I ...
1
vote
3answers
340 views
How does Query caching improves performance in nHibernate?
How does query caching works and how does it improves performance in nHibernate?
1
vote
2answers
306 views
Is it important to deal with query caching in ActiveRecord unit tests?
In the Hibernate world, you can often have unit tests that appear to pass but there are actually bugs that don't show up because you're dealing with cached data. For example, you may save a parent ...
1
vote
2answers
693 views
Doctrine queries take over 4 seconds to execute
We're in the last stage of a project and started optimizing it.
After a few tests, we realized that most (if not all) of the time spent loading a page, is spent in Doctrine.
Out of 5 seconds page ...
0
votes
1answer
25 views
Mysql: qcache_not_cached
I am trying to understand if there is a way to get a hold of the queries that are not being cached by the mysql query_cache. I did try to see if there were any explicit references to "SQL_NOCACHE" on ...
0
votes
2answers
26 views
Getting top line metrics FAST from a large MySQL DB?
I'm painfully aware there probably isn't a magic bullet to this, but it's becoming a problem. Each user has hundreds of thousands of rows of metrics data across 3 tables, this is updated on a second ...
0
votes
1answer
35 views
Doctrine Query Cache only for given application
Is there any possibility to enable Doctrine's Query Caching for a given application?
Tried in Configuration.class.php, but without luck.
0
votes
3answers
90 views
Hibernate, second level cache and query cache
I'm using Hibernate with Ehcache (don't think it matters, tho)..
When a user logs in I identify him by his email and I use his email for all subsequent calls.
Now, since email is not my "hibernate id" ...
0
votes
1answer
58 views
Hibernate entity modification/deletion invalidates query cache involing same entity name?
I read from some blogs that
The timestamp cache keeps track of the last update timestamp for each
table (this timestamp is updated for any table modification). If query
caching is on, there ...
0
votes
0answers
25 views
W3TC Database Cache vs. SQL Query_Cache
I would like to learn more about the different caching methods. I am sure many of you are familiar with the W3 Total Cache Database Cache and the SQL setting "query_cache".
What exactly is the ...
0
votes
0answers
111 views
phpFlickr SQL cache
I'm working on a gallery pulling from flickr and everything is pretty great, except for my load times. I'm using phpFlickr and have enabled cache. Last night I thought it had made an immediate ...
0
votes
1answer
687 views
How to enable infinispan-configs.xml's namedCache “entities”, for use in backing its namedCache “local-query”
When using Hibernate 3.5.6-FINAL as our JPA provider, and infinispan 4.2.0.ALPHA1 as the level-2 query cache provider, I am worried that, contrary to the Hibernate documentation, database results are ...
0
votes
1answer
154 views
problem with openjpa query cache in glassfish + class cast exception form QueryKey
Using openjpa 1.2.0 with it's built-in DataCache on Glassfish, enabling query cache and pin some named queires, We see the following exception:
org.apache.openjpa.persistence.PersistenceException: ...
0
votes
2answers
216 views
How do I save and reload MySQL Query Cache to Keep Site Running at Peak Speed
I am running a Magento e-commerce installation (which runs on PHP/MySQL) on a testing server. I have a fairly large (from what I've read) query_cache_size of 272,629,760 bytes and it works great.
...
0
votes
1answer
264 views
Should I RESET QUERY CACHE on a regular basis?
I am running a website game. I haven't touched anything such as reseting query cache for the year that the game has been up, I'm working with about 5000-1million rows depending on the table. ...
0
votes
2answers
225 views
How to retrieve only updated/new records since the last query in SQL?
I was asked to design a class for caching SQL query results. Calling the class' query method will query and cache the entire set of results at the first time; afterward, each subsequence query will ...
0
votes
1answer
310 views
Hibernate 3.5.5, Second Level Cache Configuration
After implement Hibernate Monitoring, i have noticed that hibernate execute too much query than it have on the query string table in statistics.
Screen-shots of statistics:
I think, implement ...