We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1519b41 commit 8c3b024Copy full SHA for 8c3b024
jsonbc.c
@@ -46,7 +46,6 @@ static shm_toc *toc = NULL;
46
/* global */
47
void *workers_data = NULL;
48
int jsonbc_nworkers = -1;
49
-int jsonbc_cache_size = 0;
50
int jsonbc_queue_size = 0;
51
52
static void init_memory_context(bool);
@@ -182,19 +181,6 @@ setup_guc_variables(void)
182
181
NULL,
183
NULL);
184
185
- DefineCustomIntVariable("jsonbc.cache_size",
186
- "Cache size for each compression options (kilobytes)",
187
- NULL,
188
- &jsonbc_cache_size,
189
- 1, /* 1kb by default */
190
- 0, /* no cache */
191
- 1024, /* 1 mb */
192
- PGC_SUSET,
193
- GUC_UNIT_KB,
194
195
196
- NULL);
197
-
198
DefineCustomIntVariable("jsonbc.queue_size",
199
"Size of queue used for communication with workers (kilobytes)",
200
0 commit comments