Skip to content

Commit

Permalink
Fixed some typos and added additional info on Solr startup parameter …
Browse files Browse the repository at this point in the history
…for auto hard commits timing
  • Loading branch information
paulborgermans committed Feb 17, 2014
1 parent c6262c1 commit a9da7f4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion java/solr.languages/README.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changes in multi-language/multicore support in eZ Find 5.3
==========================================================

The monolytic schema.xml has been split up in several parts, which are
The monolithic schema.xml has been split up in several parts, which are
re-assembled upon startup of Solr or a core (stand alone or master/slave)
reload or collection (SolrCloud) reload.

Expand Down
7 changes: 5 additions & 2 deletions settings/ezfind.ini
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ CustomAttributeMap[]
[IndexOptions]
## OptimizeOnCommit controls the behaviour of the addObject and deleteObject calls
# with respect to Optimizing the Solr Index on commits
# Since eZ Find 5.3, this is desabled by default
# Since eZ Find 5.3, this is disabled by default
# A cron job should be set up to schedule optimize actions typically every day or every week
# Not doing optimizes at all has a rather low impact
OptimizeOnCommit=disabled
Expand All @@ -198,10 +198,13 @@ DisableDeleteCommits=false
# EnableSolrAttributeStorage=true | false
EnableSolrAttributeStorage=false

# Since eZ Find 5.3 with Solr 4.x, you can enable soft commits which results in faster
# Since eZ Find 5.3 with Solr 4.x, you can enable soft commits which results in faster, yet lighter
# indexing and searching for write heavy installations
# By default, hard commits are issued every 15 seconds after any addition (soft commit
# or documents added without commit over the API)
# The value for the auto hard commits can also be changed upon Solr startup:
# Example: java -Dsolr.autoCommit.maxTime=30000 -jar start.jar guarantees hard commits
# after maximum 30 seconds
# EnableSoftCommits=true|false
EnableSoftCommits=false

Expand Down

0 comments on commit a9da7f4

Please sign in to comment.