Re: dovecot-fts-solr Solr9 support

2023-04-24 Thread deano-dovecot
Shawn - You had mentioned in another email (somewhere) that were hopefully going to do a write-up of setting up Solr 9.x with Dovecot. Any chance you've had time for that ? Thanks - On 2022-09-30 1:52 pm, Shawn Heisey wrote: > On 9/27/22 19:32, Nathanael Anderson wrote: > >> I was tryin

Re: dovecot-fts-solr Solr9 support

2022-09-30 Thread Shawn Heisey
On 9/27/22 19:32, Nathanael Anderson wrote: I was trying a new install of dovecot w/ solr9.   I've manually fixed the file linking to the proper directories, however one plugin is no longer shipped.   Since the solr files aren't updated yet to 9, can anyone tell me if I need the discontinued ve

Re: dovecot-fts-solr Solr9 support

2022-09-29 Thread Aki Tuomi
> On 28/09/2022 04:32 EEST Nathanael Anderson wrote: > > > I was trying a new install of dovecot w/ solr9.   I've manually fixed > the file linking to the proper directories, however one plugin is no > longer shipped.   Since the solr files aren't updated yet to 9, can > anyone tell me if

Re: dovecot-fts-solr Solr9 support

2022-09-29 Thread Nathanael Anderson
I was trying a new install of dovecot w/ solr9.   I've manually fixed the file linking to the proper directories, however one plugin is no longer shipped.   Since the solr files aren't updated yet to 9, can anyone tell me if I need the discontinued velocity plugin that was default in the doveco

Re: dovecot-fts-solr Solr9 support

2022-05-23 Thread Shawn Heisey
On 5/17/2022 11:32 AM, PGNet Dev wrote: CaffeineCache  _should_ be a solution for both series. I'm just starting to do a bit of testing, but so far, indexing/search with Caffeine seems quicker, at least. I do not yet know in which case(s) CaffeineCache is _not_ an appropriate solution. Caffei

Re: dovecot-fts-solr Solr9 support

2022-05-17 Thread Shawn Heisey
On 5/17/22 11:32, PGNet Dev wrote: Something that is missing from the current instructions is how to initiate a FULL reindex of all data in the dovecot install. Beyond looping over each $acct  doveadm fts rescan -u ${acct}  doveadm index  -u ${acct} -q '*' I hadn't seen the fts rescan be

Re: dovecot-fts-solr Solr9 support

2022-05-17 Thread PGNet Dev
On 5/17/22 12:17 PM, Shawn Heisey wrote: I had made the change to CaffeineCache quite a while back. iiuc, solr8x still has support for *LRUCache classes, as well as CaffeineCache. in my 8x installs, i'd simply never noticed related search problems ... only after my 9x install, with the full d

Re: dovecot-fts-solr Solr9 support

2022-05-17 Thread Shawn Heisey
On 5/17/22 09:02, PGNet Dev wrote: Modifying the config to use CaffeineCache cp solr-config-7.7.0.xml solr-config-9.0.0.xml perl -pi -e '\ s|solr.FastLRUCache|solr.CaffeineCache|g; \ s|solr.LRUCache|solr.CaffeineCache|g; \ s|solr.search.LRUCache|solr.search.CaffeineCache|