Return-Path: X-Original-To: apmail-lucene-solr-commits-archive@minotaur.apache.org Delivered-To: apmail-lucene-solr-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F3376D521 for ; Fri, 7 Sep 2012 11:54:57 +0000 (UTC) Received: (qmail 70511 invoked by uid 500); 7 Sep 2012 11:54:57 -0000 Delivered-To: apmail-lucene-solr-commits-archive@lucene.apache.org Received: (qmail 70330 invoked by uid 500); 7 Sep 2012 11:54:50 -0000 Mailing-List: contact solr-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-dev@lucene.apache.org Delivered-To: mailing list solr-commits@lucene.apache.org Received: (qmail 70039 invoked by uid 99); 7 Sep 2012 11:54:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Sep 2012 11:54:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.131] (HELO eos.apache.org) (140.211.11.131) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Sep 2012 11:54:46 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 5738FD44; Fri, 7 Sep 2012 11:54:25 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Apache Wiki To: Apache Wiki Date: Fri, 07 Sep 2012 11:54:25 -0000 Message-ID: <20120907115425.85392.7345@eos.apache.org> Subject: =?utf-8?q?=5BSolr_Wiki=5D_Update_of_=22SolrCaching=22_by_jpountz?= Auto-Submitted: auto-generated Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for chan= ge notification. The "SolrCaching" page has been changed by jpountz: http://wiki.apache.org/solr/SolrCaching?action=3Ddiff&rev1=3D35&rev2=3D36 Comment: add warnings about FastLRUCache = [[Solr1.4]] FastLRUCache is a 1.4 feature = [[Solr3.6]] LFUCache is a 3.6 feature + = + FastLRUCache is expected to have faster reads and slower insertions than = LRUCache. Moreover, its size does not have a hard upper limit, it might som= etimes exceed its maximum size in order no to slow down reads. Therefore, i= t should only be used for caches that have high hit ratios. = =3D Common Cache Configuration Parameters =3D Caching configuration is set-up in the Query section of [[SolrConfigXml|s= olrconfig.xml]]. For most caches, you can set the following parameters....