Serialized Form
Package org.apache.solr.client.solrj |
method
SolrRequest.METHOD method
path
String path
responseParser
ResponseParser responseParser
binder
DocumentObjectBinder binder
serialVersionUID: -3371703521752000294L
Package org.apache.solr.client.solrj.impl |
_baseURL
String _baseURL
- The URL of the Solr server.
_invariantParams
ModifiableSolrParams _invariantParams
- Default value: null / empty.
Parameters that are added to every request regardless. This may be a place to add
something like an authentication token.
_parser
ResponseParser _parser
- Default response parser is BinaryResponseParser
This parser represents the default Response Parser chosen to
parse the response if the parser were not specified as part of
the request.
- See Also:
BinaryResponseParser
requestWriter
RequestWriter requestWriter
- The RequestWriter used to write all requests to Solr
- See Also:
RequestWriter
_httpClient
org.apache.commons.httpclient.HttpClient _httpClient
_followRedirects
boolean _followRedirects
- This defaults to false under the
assumption that if you are following a redirect to get to a Solr
installation, something is misconfigured somewhere.
_allowCompression
boolean _allowCompression
- If compression is enabled, both gzip and deflate compression will
be accepted in the HTTP response.
_maxRetries
int _maxRetries
- Maximum number of retries to attempt in the event of transient
errors. Default: 0 (no) retries. No more than 1 recommended.
useMultiPartPost
boolean useMultiPartPost
- Default value: false
If set to false, add the query parameters as URL-encoded parameters to the
POST request in a single part. If set to true, create a new part of a
multi-part request for each parameter.
The reason for adding all parameters as parts of a multi-part request is
that this allows us to specify the charset -- standards for single-part
requests specify that non-ASCII characters should be URL-encoded, but don't
specify the charset of the characters to be URL-encoded (cf.
http://www.w3.org/TR/html401/interact/forms.html#form-content-type).
Therefore you have to rely on your servlet container doing the right thing
with single-part requests.
aliveServers
CopyOnWriteArrayList<E> aliveServers
zombieServers
CopyOnWriteArrayList<E> zombieServers
aliveCheckExecutor
ScheduledExecutorService aliveCheckExecutor
httpClient
org.apache.commons.httpclient.HttpClient httpClient
counter
AtomicInteger counter
checkLock
ReentrantLock checkLock
interval
int interval
queue
BlockingQueue<E> queue
scheduler
ExecutorService scheduler
updateUrl
String updateUrl
runners
Queue<E> runners
lock
CountDownLatch lock
threadCount
int threadCount
Package org.apache.solr.client.solrj.request |
params
ModifiableSolrParams params
commitWithin
int commitWithin
contentStreams
List<E> contentStreams
core
String core
other
String other
action
CoreAdminParams.CoreAdminAction action
instanceDir
String instanceDir
configName
String configName
schemaName
String schemaName
dataDir
String dataDir
indexDirs
List<E> indexDirs
fileName
String fileName
xml
String xml
params
SolrParams params
documents
List<E> documents
query
String query
showMatch
boolean showMatch
fieldValue
String fieldValue
query
String query
showMatch
boolean showMatch
fieldNames
List<E> fieldNames
fieldTypes
List<E> fieldTypes
fields
List<E> fields
numTerms
int numTerms
showSchema
boolean showSchema
query
SolrParams query
params
ModifiableSolrParams params
documents
List<E> documents
docIterator
Iterator<E> docIterator
deleteById
List<E> deleteById
deleteQuery
List<E> deleteQuery
Package org.apache.solr.client.solrj.response |
documentAnalysisByKey
Map<K,V> documentAnalysisByKey
_name
String _name
_values
List<E> _values
_gap
String _gap
_end
Date _end
_name
String _name
_count
long _count
_ff
FacetField _ff
analysisByFieldTypeName
Map<K,V> analysisByFieldTypeName
analysisByFieldName
Map<K,V> analysisByFieldName
name
String name
min
Double min
max
Double max
sum
Double sum
count
Long count
missing
Long missing
mean
Double mean
sumOfSquares
Double sumOfSquares
stddev
Double stddev
facets
Map<K,V> facets
indexInfo
NamedList<T> indexInfo
fieldInfo
Map<K,V> fieldInfo
fieldTypeInfo
Map<K,V> fieldTypeInfo
name
String name
type
String type
schema
String schema
docs
int docs
distinct
int distinct
flags
EnumSet<E extends Enum<E>> flags
cacheableFaceting
boolean cacheableFaceting
topTerms
NamedList<T> topTerms
name
String name
className
String className
tokenized
boolean tokenized
analyzer
String analyzer
fields
List<E> fields
_header
NamedList<T> _header
_results
SolrDocumentList _results
_sortvalues
NamedList<T> _sortvalues
_facetInfo
NamedList<T> _facetInfo
_debugInfo
NamedList<T> _debugInfo
_highlightingInfo
NamedList<T> _highlightingInfo
_spellInfo
NamedList<T> _spellInfo
_statsInfo
NamedList<T> _statsInfo
_facetQuery
Map<K,V> _facetQuery
_facetFields
List<E> _facetFields
_limitingFacets
List<E> _limitingFacets
_facetDates
List<E> _facetDates
_highlighting
Map<K,V> _highlighting
_spellResponse
SpellCheckResponse _spellResponse
_fieldStatsInfo
Map<K,V> _fieldStatsInfo
_debugMap
Map<K,V> _debugMap
_explainMap
Map<K,V> _explainMap
elapsedTime
long elapsedTime
response
NamedList<T> response
requestUrl
String requestUrl
Package org.apache.solr.common |
_fields
Map<K,V> _fields
numFound
long numFound
start
long start
maxScore
Float maxScore
logged
boolean logged
code
int code
_fields
Map<K,V> _fields
_documentBoost
float _documentBoost
name
String name
value
Object value
boost
float boost
Package org.apache.solr.common.params |
params
SolrParams params
defaults
SolrParams defaults
map
Map<K,V> map
vals
Map<K,V> vals
map
Map<K,V> map
params
SolrParams params
Package org.apache.solr.common.util |
nvPairs
List<E> nvPairs
Copyright © 2011 Apache Software Foundation. All Rights Reserved.