diff options
| author | Yoshiki Shibukawa <yoshiki@shibu.jp> | 2014-01-22 02:12:04 -0800 |
|---|---|---|
| committer | Yoshiki Shibukawa <yoshiki@shibu.jp> | 2014-01-22 02:12:04 -0800 |
| commit | d8c8fa8240b0d4dd67702a5da388055d4429c393 (patch) | |
| tree | e202a140420722fcd215a2a248673a3dbcc21b77 /doc/config.rst | |
| parent | 49238644401fa2728f171f5fa29c18f9150b96d5 (diff) | |
| download | sphinx-d8c8fa8240b0d4dd67702a5da388055d4429c393.tar.gz | |
Add development memo about stemming JS code, acceleration tips about stemming, small bug fix
Diffstat (limited to 'doc/config.rst')
| -rw-r--r-- | doc/config.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/config.rst b/doc/config.rst index 260ccddd..2fd1cf66 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -747,6 +747,15 @@ that use Sphinx' HTMLWriter class. * ``sv`` -- Swedish * ``tr`` -- Turkish + .. admonition:: Accelerate build speed + + Each language (except Japanese) provides its own stemming algorithm. + Sphinx uses Python implementation by default. You can use + C implementation to accelerate building the index file. + + * `PorterStemmer <https://pypi.python.org/pypi/PorterStemmer>`_ (`en`) + * `PyStemmer <https://pypi.python.org/pypi/PyStemmer>`_ (all languages) + .. versionadded:: 1.1 .. versionchanged:: 1.3 |
