im facing the problem that our uri's sent to solr (jetty) are getting to long, way over 9k bytes which exceeds the default limit by jetty.
the solution would be to switch from GET requests to POST requests because we do not want to increase the requestHeaderSize jetty can accept.
so while upgrading the project we also switched to solarium as php solr client. now the question is what is the correct way to set POST as default method or on a request basis and on what level does that happen? solr client or request or something else?
help is much appreciated.