~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/qcache.h

  • Committer: Brian Aker
  • Date: 2009-07-09 19:49:32 UTC
  • mfrom: (1085.1.10 mordred)
  • Revision ID: brian@gaz-20090709194932-o90qfzgk9xem5di1
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
void add_query_cache(QueryCache *handler);
26
26
void remove_query_cache(QueryCache *handler);
27
27
 
 
28
namespace drizzled {
 
29
namespace query_cache {
28
30
/* These are the functions called by the rest of the Drizzle server */
29
 
bool qcache_try_fetch_and_send(Session *session, bool transactional);
30
 
bool qcache_set(Session *session, bool transactional);
31
 
bool qcache_invalidate_table(Session *session, bool transactional);
32
 
bool qcache_invalidate_db(Session *session, const char *db_name,
33
 
                          bool transactional);
34
 
bool qcache_flush(Session *session);
 
31
bool try_fetch_and_send(Session *session, bool transactional);
 
32
bool set(Session *session, bool transactional);
 
33
bool invalidate_table(Session *session, bool transactional);
 
34
bool invalidate_db(Session *session, const char *db_name,
 
35
                   bool transactional);
 
36
bool flush(Session *session);
 
37
}
 
38
}
35
39
 
36
40
#endif /* DRIZZLED_QCACHE_H */