| clear query|facets|time |
Search criteria: schema.http.
Results from 1 to 10 from
106128 (0.556s).
|
|
|
Loading phrases to help you refine your search...
|
|
IndexSchema from CommonsHttpSolrServer - Solr - [mail # user]
|
|
...Hi, Is there any way to create an IndexSchema from a CommonsHttpSolrServer. (where u don't know the location of schema.xml and solrconfig.xml or those files are in some other...
|
|
... machine.) I tried looking for solrJ api's for the same. but coudn't find it. or is there any way to retrieve schema file from the index using solrj? schema.xml file can be retrieved from http...
|
[+ show more]
[- hide]
| ...://localhost:8983/solr/CoreX/admin/file/?file=schema.xml Any Pointers??? Regards, Raakhi ... |
|
|
Author: Rakhi Khatwani,
2010-06-08, 10:39
|
|
|
Re: IndexSchema from CommonsHttpSolrServer - Solr - [mail # user]
|
|
...Hi Raakhi, I am not sure if I understand your usecase correctly, but if you need this custom location to test against an existing schema/config file I found this snippet [1]. Otherwise...
|
|
...SolrTestCase { @Override public String getSchemaFile() { return "solr/conf/schema.xml"; } @Override public String getSolrConfigFile() { return "solr...
|
[+ show more]
[- hide]
| ....getCore().getName()); } @After @Override public void tearDown() throws Exception { super.tearDown(); } ... [2] http://wiki.apache.org/solr/SolrTomcat ... |
|
|
Author: Peter Karich,
2010-06-08, 12:16
|
|
|
Re: IndexSchema from CommonsHttpSolrServer - Solr - [mail # user]
|
|
...To get the schema.xml file, look at how Solr's admin/index.jsp fetches it under the "Schema" button. You cannot get a nice, cleanly parsed schema object tree from SolrJ. On Tue, Jun 8...
|
|
|
Author: Lance Norskog,
2010-06-09, 01:44
|
|
|
SchemaRESTAPI - Solr - [wiki]
|
|
....g. to get all field declarations for collection1: http://localhost:8983/solr/collection1/schema/fields
Supported requests (URLs are for single/default core):
Schema component...
|
|
... requests
wt, indent
?wt=json&indent=on
All (entire schema) ( Solr 4.3)
GET
http...
|
[+ show more]
[- hide]
| ...
http://localhost:8983/solr/schema/fields
fl, includeDynamic, showDefaults
&... |
| ...;showDefaults=false
GET
http://localhost:8983/solr/schema/fields/name
includeDynamic, showDefaults
&showDefaults=false
Dynamic... |
| ... Fields
GET
http://localhost:8983/solr/schema/dynamicfields
fl, showDefaults
&... |
|
|
http://wiki.apache.org/solr/SchemaRESTAPI
Author: SteveRowe,
2013-04-25, 23:16
|
|
|
SchemaXml - Solr - [wiki]
|
|
...The schema.xml file contains all of the details about which fields your documents can contain, and how those fields should be dealt with when adding documents to the index, or when querying...
|
|
...3.6 Solr4.0
A sample Solr schema.xml with detailed comments can be found in the Source Repository.
Contents
Data Types
Fields
Recommended fields
Common field options
Dynamic...
|
[+ show more]
[- hide]
| ...
Similarity
Poly Field Types
Schema version attribute in the root node
TODO
Data Types
The <types> section allows you to define a list of <fieldtype> declarations you wish... |
| ... to use in your schema, along with the underlying Solr class that should be used for that type, as well as the default options you want for fields that use that type.
Any subclass of Field... |
| ...TermFreqAndPositions=true|false Solr1.4
omitPositions=true|false Solr3.4
positionIncrementGap=N
autoGeneratePhraseQueries=true|false (in schema version 1.4 and later this now defaults to false)
postings... |
|
|
http://wiki.apache.org/solr/SchemaXml
Author: AndyLester,
2013-05-14, 20:02
|
|
|
Import Data Schemas - OpenRelevance - [wiki]
|
|
.../editpage.action?pageId=23337989"> Edit Page &nb...
|
|
|
http://cwiki.apache.org/ORP/import-data-schemas.html
|
|
|
HttpAuthenticationSchemes - Nutch - [wiki]
|
|
... Scope
Credentials for Specific Authentication Scopes
Catch-all Authentication Scope for a Web Server
Important Points
A note on NTLM domains
Underlying HttpClient Library...
|
|
... not do POST based authentication that depends on cookies. More information on this can be found at: HttpPostAuthentication
Necessity
There were two plugins already present, viz. 'protocol-http...
|
[+ show more]
[- hide]
| ...' and 'protocol-httpclient'. However, 'protocol-http' could not support HTTP 1.1, HTTPS and NTLM, Basic and Digest authentication schemes. 'protocol-httpclient' supported HTTPS and had code for NTLM... |
| ....
Prerequisites
In order to use HTTP Authentication, the Nutch crawler must be configured to use 'protocol-httpclient' instead of the default 'protocol-http'. To do this copy 'plugin.includes' property... |
| ... from 'conf/nutch-default.xml' into 'conf/nutch-site.xml'. Replace 'protocol-http' with 'protocol-httpclient' in the value of the property. If you have made no other changes it should look... |
|
|
http://wiki.apache.org/nutch/HttpAuthenticationSchemes
Author: ArkadiKosmynin,
2011-11-30, 05:34
|
|
|
HttpPostAuthentication - Nutch - [wiki]
|
|
... with fetching the pages from it. Currently, the development version of Nutch can do Basic, Digest and NTLM based authentication. This is documented in HttpAuthenticationSchemes. In this project, we...
|
|
... would be adding HTTP POST based authentication, which is the most popular form of authentication on most websites. It should be possible to configure different credentials for different websites...
|
[+ show more]
[- hide]
| ... challenges discussed in the mailing list
The authentication failure page may be returned as HTTP 200 OK status which makes it more difficult. Three possible ways to solve it:-
We use pattern... |
| ....
Original discussion in the mailing list
http://www.mail-archive.com/[EMAIL PROTECTED]/msg10248.html
HttpPostAuthentication... |
|
|
http://wiki.apache.org/nutch/HttpPostAuthentication
Author: localhost,
2009-09-20, 23:09
|
|
|
HttpUnitExample - Lucene - Lucene - [wiki]
|
|
...
Description
SpideringDemo.java is an example of how to use httpunit http://httpunit.sourceforge.net/ to index web pages. There is no guarante on how well this works. It's document...
|
|
... be with httpunit)
Source
SpiderDemo.java.ksh
HttpUnitExample...
|
|
|
http://wiki.apache.org/lucene-java/HttpUnitExample
Author: localhost,
2009-09-20, 21:47
|
|
|
CoreAdmin - Solr - [wiki]
|
|
...://localhost:8983/solr/admin/cores?action=STATUS&core=core0
http://localhost:8983/solr/admin/cores?action=STATUS
CREATE
Creates a new core based on preexisting instanceDir/solrconfig.xml/schema...
|
|
...
Quick Review: What are Multiple Cores?
Multiple cores let you have a single Solr instance with separate configurations and indexes, with their own config and schema for very different...
|
[+ show more]
[- hide]
| ...Path attribute is set in solr.xml. If this attribute is absent, the CoreAdminHandler will not be available.
STATUS
Get the status for a given core or all cores if no core is specified:
http... |
| ... is initalizing, the "old" one will continue to accept requests. Once it has finished, all new request will go to the "new" core, and the "old" core will be unloaded.
http://localhost:8983/solr/admin... |
| .../cores?action=CREATE&name=coreX&instanceDir=path_to_instance_directory&config=config_file_name.xml&schema=schem_file_name.xml&dataDir=data
instanceDir is a required... |
|
|
http://wiki.apache.org/solr/CoreAdmin
Author: ShawnHeisey,
2013-05-21, 15:17
|
|
|
|