You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pysolr is actually a very thin wrapper passing query parameters to requests. We could easily implement this ourselves, or use another wrapper such as SolrClient - which, for example, has paging results support and schema field listing, but we don't actually need any of that if all we want to do is execute the REST endpoint.
The text was updated successfully, but these errors were encountered:
Note that there is a difference in SOLR-land between collections with or without schemas. That could be used to define whether the tabular or sequential data source if preferred. If there is a schema, it seems you can get the field types without pulling any data https://lucene.apache.org/solr/guide/6_6/schema-api.html#SchemaAPI-ListFields .
pysolr
is actually a very thin wrapper passing query parameters to requests. We could easily implement this ourselves, or use another wrapper such as SolrClient - which, for example, has paging results support and schema field listing, but we don't actually need any of that if all we want to do is execute the REST endpoint.The text was updated successfully, but these errors were encountered: