~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/options.rst

merge innobase 1.0.9 build fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
178
178
 
179
179
  The size of the buffer that is used for full joins.
180
180
 
 
181
.. option:: --join-buffer-constraint arg (=0)
 
182
 
 
183
  A global constraint for join-buffer-size for all clients, cannot be set lower
 
184
  than --join-buffer-size.  Setting to 0 means unlimited.
 
185
 
181
186
.. Why is this a core arg?
182
 
.. option:: --max-allowed-packet arg (=1M)
 
187
.. option:: --max-allowed-packet arg (=64M)
183
188
 
184
189
  Max packetlength to send/receive from to server.
185
190
 
259
264
  each table it scans. If you do many sequential scans, you may want to
260
265
  increase this value.
261
266
 
 
267
.. option:: --read-buffer-constraint arg (=0)
 
268
 
 
269
  A global constraint for read-buffer-size for all clients, cannot be set lower
 
270
  than --read-buffer-size.  Setting to 0 means unlimited.
 
271
 
262
272
.. option:: --read-rnd-buffer-size arg (=262144)
263
273
 
264
274
  When reading rows in sorted order after a sort, the rows are read through
265
275
  this buffer to avoid a disk seeks. If not set, then it's set to the value of
266
276
  record_buffer.
267
277
 
 
278
.. option:: --read-rnd-constraint arg (=0)
 
279
 
 
280
  A global constraint for read-rnd-buffer-size for all clients, cannot be set
 
281
  lower than --read-rnd-buffer-size.  Setting to 0 means unlimited.
 
282
 
268
283
.. option:: --scheduler arg (=multi-thread)
269
284
 
270
285
  Select scheduler to be used.
273
288
 
274
289
  Each thread that needs to do a sort allocates a buffer of this size.
275
290
 
 
291
.. option:: --sort-buffer-constraint arg (=0)
 
292
 
 
293
  A global constraint for sort-buffer-size for all clients, cannot be set lower
 
294
  than --sort-buffer-size.  Setting to 0 means unlimited.
 
295
 
276
296
.. option:: --table-definition-cache arg (=128)
277
297
 
278
298
  The number of cached table definitions.