Uses of Class
org.apache.solr.client.solrj.response.UpdateResponse
Packages that use UpdateResponse
Package
Description
Primary APIs for communicating with a Solr Server from a Java client.
Convenience classes for dealing with various types of Solr requests.
-
Uses of UpdateResponse in org.apache.solr.client.solrj
Methods in org.apache.solr.client.solrj that return UpdateResponseModifier and TypeMethodDescriptionSolrClient.add(String collection, Collection<SolrInputDocument> docs) Adds a collection of documentsSolrClient.add(String collection, Collection<SolrInputDocument> docs, int commitWithinMs) Adds a collection of documents, specifying max time before they become committedSolrClient.add(String collection, Iterator<SolrInputDocument> docIterator) Adds the documents supplied by the given iterator.SolrClient.add(String collection, SolrInputDocument doc) Adds a single documentSolrClient.add(String collection, SolrInputDocument doc, int commitWithinMs) Adds a single document specifying max time before it becomes committedSolrClient.add(Collection<SolrInputDocument> docs) Adds a collection of documentsSolrClient.add(Collection<SolrInputDocument> docs, int commitWithinMs) Adds a collection of documents, specifying max time before they become committedSolrClient.add(Iterator<SolrInputDocument> docIterator) Adds the documents supplied by the given iterator.SolrClient.add(SolrInputDocument doc) Adds a single documentSolrClient.add(SolrInputDocument doc, int commitWithinMs) Adds a single document specifying max time before it becomes committedAdds a single beanAdds a single bean specifying max time before it becomes committedAdds a single beanAdds a single bean specifying max time before it becomes committedSolrClient.addBeans(String collection, Collection<?> beans) Adds a collection of beansSolrClient.addBeans(String collection, Collection<?> beans, int commitWithinMs) Adds a collection of beans specifying max time before they become committedAdds the beans supplied by the given iterator.SolrClient.addBeans(Collection<?> beans) Adds a collection of beansSolrClient.addBeans(Collection<?> beans, int commitWithinMs) Adds a collection of beans specifying max time before they become committedAdds the beans supplied by the given iterator.SolrClient.commit()Performs an explicit commit, causing pending documents to be committed for indexingSolrClient.commit(boolean waitFlush, boolean waitSearcher) Performs an explicit commit, causing pending documents to be committed for indexingSolrClient.commit(boolean waitFlush, boolean waitSearcher, boolean softCommit) Performs an explicit commit, causing pending documents to be committed for indexingPerforms an explicit commit, causing pending documents to be committed for indexingPerforms an explicit commit, causing pending documents to be committed for indexingPerforms an explicit commit, causing pending documents to be committed for indexingSolrClient.deleteById(String id) Deletes a single document by unique ID.SolrClient.deleteById(String id, int commitWithinMs) Deletes a single document by unique ID, specifying max time before commit.SolrClient.deleteById(String collection, String id) Deletes a single document by unique ID.SolrClient.deleteById(String collection, String id, int commitWithinMs) Deletes a single document by unique ID, specifying max time before commit.SolrClient.deleteById(String collection, List<String> ids) Deletes a list of documents by unique ID.SolrClient.deleteById(String collection, List<String> ids, int commitWithinMs) Deletes a list of documents by unique ID, specifying max time before commit.SolrClient.deleteById(List<String> ids) Deletes a list of documents by unique ID.SolrClient.deleteById(List<String> ids, int commitWithinMs) Deletes a list of documents by unique ID, specifying max time before commit.SolrClient.deleteByQuery(String query) Deletes documents from the index based on a querySolrClient.deleteByQuery(String query, int commitWithinMs) Deletes documents from the index based on a query, specifying max time before commitSolrClient.deleteByQuery(String collection, String query) Deletes documents from the index based on a querySolrClient.deleteByQuery(String collection, String query, int commitWithinMs) Deletes documents from the index based on a query, specifying max time before commitSolrClient.optimize()Performs an explicit optimize, causing a merge of all segments to one.SolrClient.optimize(boolean waitFlush, boolean waitSearcher) Performs an explicit optimize, causing a merge of all segments to one.SolrClient.optimize(boolean waitFlush, boolean waitSearcher, int maxSegments) Performs an explicit optimize, causing a merge of all segments to one.Performs an explicit optimize, causing a merge of all segments to one.Performs an explicit optimize, causing a merge of all segments to one.Performs an explicit optimize, causing a merge of all segments to one.SolrClient.rollback()Performs a rollback of all non-committed documents pending.Performs a rollback of all non-committed documents pending. -
Uses of UpdateResponse in org.apache.solr.client.solrj.request
Methods in org.apache.solr.client.solrj.request that return UpdateResponseModifier and TypeMethodDescriptionUpdateRequest.commit(SolrClient client, String collection) protected UpdateResponseAbstractUpdateRequest.createResponse(NamedList<Object> namedList)