Navigation Menu

Skip to content

Commit

Permalink
Extract cache related API
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 5, 2017
1 parent 02dd8e4 commit 64df1d4
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 17 deletions.
3 changes: 2 additions & 1 deletion include/groonga.h
@@ -1,5 +1,5 @@
/*
Copyright(C) 2014-2016 Brazil
Copyright(C) 2014-2017 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
Expand All @@ -23,6 +23,7 @@

#include "groonga/accessor.h"
#include "groonga/array.h"
#include "groonga/cache.h"
#include "groonga/column.h"
#include "groonga/config.h"
#include "groonga/dat.h"
Expand Down
1 change: 1 addition & 0 deletions include/groonga/Makefile.am
Expand Up @@ -2,6 +2,7 @@ groonga_includedir = $(pkgincludedir)/groonga
groonga_include_HEADERS = \
accessor.h \
array.h \
cache.h \
column.h \
command.h \
config.h \
Expand Down
42 changes: 42 additions & 0 deletions include/groonga/cache.h
@@ -0,0 +1,42 @@
/*
Copyright(C) 2013-2017 Brazil
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#pragma once

#ifdef __cplusplus
extern "C" {
#endif

#define GRN_CACHE_DEFAULT_MAX_N_ENTRIES 100
typedef struct _grn_cache grn_cache;

GRN_API grn_cache *grn_cache_open(grn_ctx *ctx);
GRN_API grn_rc grn_cache_close(grn_ctx *ctx, grn_cache *cache);

GRN_API grn_rc grn_cache_current_set(grn_ctx *ctx, grn_cache *cache);
GRN_API grn_cache *grn_cache_current_get(grn_ctx *ctx);

GRN_API grn_rc grn_cache_set_max_n_entries(grn_ctx *ctx,
grn_cache *cache,
unsigned int n);
GRN_API unsigned int grn_cache_get_max_n_entries(grn_ctx *ctx,
grn_cache *cache);

#ifdef __cplusplus
}
#endif
16 changes: 0 additions & 16 deletions include/groonga/groonga.h
Expand Up @@ -275,22 +275,6 @@ GRN_API grn_rc grn_set_default_match_escalation_threshold(long long int threshol
GRN_API int grn_get_lock_timeout(void);
GRN_API grn_rc grn_set_lock_timeout(int timeout);

/* cache */
#define GRN_CACHE_DEFAULT_MAX_N_ENTRIES 100
typedef struct _grn_cache grn_cache;

GRN_API grn_cache *grn_cache_open(grn_ctx *ctx);
GRN_API grn_rc grn_cache_close(grn_ctx *ctx, grn_cache *cache);

GRN_API grn_rc grn_cache_current_set(grn_ctx *ctx, grn_cache *cache);
GRN_API grn_cache *grn_cache_current_get(grn_ctx *ctx);

GRN_API grn_rc grn_cache_set_max_n_entries(grn_ctx *ctx,
grn_cache *cache,
unsigned int n);
GRN_API unsigned int grn_cache_get_max_n_entries(grn_ctx *ctx,
grn_cache *cache);

/* grn_encoding */

GRN_API const char *grn_encoding_to_string(grn_encoding encoding);
Expand Down

0 comments on commit 64df1d4

Please sign in to comment.