Navigation Menu

Skip to content

Commit

Permalink
doc: fix English and markup
Browse files Browse the repository at this point in the history
  • Loading branch information
komainu8 committed Feb 7, 2018
1 parent 638758e commit 68b4194
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions doc/source/news.rst
Expand Up @@ -17,31 +17,32 @@ Improvements

* [:doc:`/reference/commands/select`] Added ``--drilldown_adjuster`` and
``--drilldowns[LABEL].adjuster``.
You can score adjust against result of drilldown.
You can adjust score against result of drilldown.

* [:ref:`online-index-construction`] Changed environment variable name
``GRN_II_REDUCE_EXPIRE_ENABLE`` to ``GRN_II_REDUCE_EXPIRE_THRESHOLD``.

GRN_II_REDUCE_EXPIRE_THRESHOLD=0 == GRN_II_REDUCE_EXPIRE_ENABLE=no.
GRN_II_REDUCE_EXPIRE_THRESHOLD=-1 (default) uses
``GRN_II_REDUCE_EXPIRE_THRESHOLD=0 == GRN_II_REDUCE_EXPIRE_ENABLE=no``.
``GRN_II_REDUCE_EXPIRE_THRESHOLD=32`` (default) uses
ii->chunk->max_map_seg / 2 as threshold.
GRN_II_REDUCE_EXPIRE_THRESHOLD > 0 uses
MIN(ii->chunk->max_map_seg / 2, GRN_II_REDUCE_EXPIRE_THRESHOLD)
``GRN_II_REDUCE_EXPIRE_THRESHOLD > 0`` uses
MIN(ii->chunk->max_map_seg / 2, ``GRN_II_REDUCE_EXPIRE_THRESHOLD``)
as threshold.

* [:doc:`/reference/functions/between`] Accept between() without borders.
If the number of arguments passed to between() is 3, the 2nd and 3rd
arguments are handled as the inclusive edges.[GitHub#685]
* [:doc:`/reference/functions/between`] Accept ``between()`` without borders.
If the number of arguments passed to ``between()`` is 3, the 2nd and 3rd
arguments are handled as the inclusive edges. [GitHub#685]

Fixes
^^^^^

* Fixed a memory leak for not tiny hash table.
* Fixed a memory leak for normal hash table.
[GitHub:mroonga/mroonga#190][Reported by fuku1]

* Fix a memory leak for not tiny array.
* Fix a memory leak for normal array.

* [:doc:`/reference/commands/select`] Don't cache when output_columns uses not stable function.
* [:doc:`/reference/commands/select`] Stopped to cache when ``output_columns``
uses not stable function.

* [Windows] Fixed wrong value report on WSASend error.

Expand Down

0 comments on commit 68b4194

Please sign in to comment.