-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from mpi2/5-redundant-batch-request-functions
[Batch_solr_request] refactor: function to batch query and multiple value search
- Loading branch information
Showing
10 changed files
with
1,212 additions
and
218 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from .solr_request import solr_request, batch_request | ||
from .iterator_solr_request import iterator_solr_request | ||
from .solr_request import solr_request | ||
from .batch_solr_request import batch_solr_request | ||
from .utils import validators, warnings | ||
|
||
# Control what gets imported by client | ||
__all__ = ["solr_request", "batch_request", "iterator_solr_request"] | ||
__all__ = ["solr_request", "batch_solr_request"] |
Oops, something went wrong.