~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/slot/query_cache.h

Merged in plugin-slot-reorg patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_QCACHE_H
21
 
#define DRIZZLED_QCACHE_H
22
 
 
23
 
#include <drizzled/plugin/qcache.h>
24
 
 
25
 
void add_query_cache(QueryCache *handler);
26
 
void remove_query_cache(QueryCache *handler);
27
 
 
28
 
namespace drizzled {
29
 
namespace query_cache {
30
 
/* These are the functions called by the rest of the Drizzle server */
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
 
}
39
 
 
40
 
#endif /* DRIZZLED_QCACHE_H */
 
20
#ifndef DRIZZLED_SLOT_QUERY_CACHE_H
 
21
#define DRIZZLED_SLOT_QUERY_CACHE_H
 
22
 
 
23
#include <vector>
 
24
 
 
25
namespace drizzled
 
26
{
 
27
 
 
28
namespace plugin
 
29
{
 
30
  class QueryCache;
 
31
}
 
32
 
 
33
namespace slot
 
34
{
 
35
 
 
36
class QueryCache
 
37
{
 
38
private:
 
39
  std::vector<plugin::QueryCache *> all_query_cache;
 
40
 
 
41
public:
 
42
  QueryCache() : all_query_cache() {}
 
43
  ~QueryCache() {}
 
44
 
 
45
  void add(plugin::QueryCache *handler);
 
46
  void remove(plugin::QueryCache *handler);
 
47
 
 
48
  /* These are the functions called by the rest of the Drizzle server */
 
49
  bool try_fetch_and_send(Session *session, bool transactional);
 
50
  bool set(Session *session, bool transactional);
 
51
  bool invalidate_table(Session *session, bool transactional);
 
52
  bool invalidate_db(Session *session, const char *db_name,
 
53
                     bool transactional);
 
54
  bool flush(Session *session);
 
55
}; /* class QueryCache */
 
56
 
 
57
} /* namespace slot */
 
58
} /* namespace drizzled */
 
59
 
 
60
#endif /* DRIZZLED_SLOT_QUERY_CACHE_H */