~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to docs/options.rst

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

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