Hi, I am implementing a custom post filter for permission checks along the lines described by Erik at https://lucidworks.com/blog/2012/02/22/custom-security-filtering-in-solr/
Is there a limit to the length (number of characters) of the custom post filter? In our case, length of this "fq" could be up to a maximum of 15000 characters. Also, if the post filter is not accessing any external system (no DB access and no REST/Web-service calls) and just only doing a look-up of about 4 field values (for each document) against the passed "fq" values (stored in couple of HashSets), would the performance degrade significantly (I do understand there will be some cost) when compared to not applying the security filter. Thanks, Vasu