Solr ‘n Stuff

For example, here is a filter that only allows authors between martin and rowling, specified using a standard range query: fq=author_last_name:[martin TO rowling] And the same filter using a function range query (frange): fq={!frange l=martin u=rowling}author_last_name

Notes

Top of Page