Re: Can I combine these 2 query filters with a logical OR?

2024-09-30 Thread Carlo Ascani
getting when trying > > to combine the filters using your method? What happens if you don’t wrap > > with parentheses? > > > > Thank you > > > > On 2024/09/19 07:32:05 Carlo Ascani wrote: > > > Hi all, > > > > > > I am trying to combine t

Unable to POST booleans using the Schema API

2024-10-30 Thread Carlo Ascani
Hi all, in solr 8.11, I am trying to post booleans using the Schema API, but it looks like I always get strings back. Request 1: curl -X POST -H 'Content-type:application/json' --data-binary '{ "replace-field-type":{ "name":"rpt", "class": "solr.SpatialRecursivePrefixTreeFieldType",

Can I combine these 2 query filters with a logical OR?

2024-09-19 Thread Carlo Ascani
Hi all, I am trying to combine these 2 filters with a logical OR, without success: 1. {!tag=REGION}(geo_bezirk_id:("2" OR "4")) 2. {!field f=geo_rpt}Intersects(POLYGON((9.262772086904576 47.98679078170882,9.043045524404576 46.616047902306306,10.427322868154576 46.60095313349165,10.5042271650295

org.locationtech.jts.geom.TopologyException with a topology that "looks" valid?

2024-10-24 Thread Carlo Ascani
Hi all, I am getting: { "responseHeader": { "status": 400, "QTime": 62, "params": { "q": "*:*", "fq": "{!field f=geo_rpt v='Intersects(MULTIPOLYGON(((13.272047419856218 48.20342387325925,13.370237727473405 48.244137723977545,13.44302215130153 48.17504227627839,13.3839706

Options to manage multiple Solr versions on my development machine?

2025-05-28 Thread Carlo Ascani
Greetings, I would love to set up multiple Solr versions on my development machine. What are my options? I am thinking about writing some bash to manage multiple solr, is there any previous work in this field? Some notes: - My current tool of choice is devbox, which is a wrapper of nix, but I am

Re: Options to manage multiple Solr versions on my development machine?

2025-05-28 Thread Carlo Ascani
lar that are available in Debian for Postgresql. Cheers! > Thomas > > Op wo 28 mei 2025 om 09:07 schreef Carlo Ascani : > > > Greetings, > > > > I would love to set up multiple Solr versions on my development machine. > > > > What are my options? > &

Re: Options to manage multiple Solr versions on my development machine?

2025-05-28 Thread Carlo Ascani
; Sure, thanks. > > But is there any utility to manage them? > > > > I was thinking at something like `pg_lsclusters`, `pg_ctlcluster`... > > and similar that are available in Debian for Postgresql. > > > > Cheers! > > > > > >> Thomas > >

Re: Options to manage multiple Solr versions on my development machine?

2025-05-29 Thread Carlo Ascani
instances, I just do a one-off "docker run --rm -ti -p > 28983:8983 solr:9.7.0" or wrap a similar command in a start script inside a > folder. > > Jan > > > 28. mai 2025 kl. 14:21 skrev Carlo Ascani : > > > > In the meantime, > > I wrote an helper scr