| clear query|facets|time |
Search criteria: schema.html.
Results from 41 to 50 from
48226 (1.198s).
|
|
|
Loading phrases to help you refine your search...
|
|
SolrConfigXml - Solr - [wiki]
|
|
....
codecFactory
Solr4.0 Codec factories allow your schema to use custom codecs. For example, if you want to define per-field postings formats, you can use the built-in SchemaCodecFactory:
<...
|
|
...;codecFactory name="CodecFactory" class="solr.SchemaCodecFactory" />
Please note that there are some limitations and core reloading might not work as expected when custom codec factories are defined (SOLR...
|
[+ show more]
[- hide]
| ... -->
<formatter name="html" class="org.apache.solr.highlight.HtmlFormatter" default="true">
<lst name="defaults">
<str name="hl.simple.pre">... |
| ...;defaultQuery>solr</defaultQuery>
<gettableFiles>
solrconfig.xml
schema.xml
</gettableFiles>
<pingQuery>q=solr&version=2.0&start=0&rows=0<... |
| ...;str name="confFiles">schema.xml,stopwords.txt</str>
</lst>
</requestHandler>
Notes:
The included XML file must be valid self-contained XML with a single root node... |
|
|
http://wiki.apache.org/solr/SolrConfigXml
Author: FredrikRodland,
2013-03-04, 09:10
|
|
|
Nutch2Roadmap - Nutch - [wiki]
|
|
... and HDFS
extend it to other storages later e.g. MySQL etc...
Plugin cleanup : Tika only for parsing document formats (see http://wiki.apache.org/nutch/TikaPlugin)
keep only stuff Html...
|
|
|
http://wiki.apache.org/nutch/Nutch2Roadmap
Author: LewisJohnMcgibbney,
2013-03-26, 21:31
|
|
|
SolrSecurity - Solr - [wiki]
|
|
..., and delete documents (and of course search/read too), including access to the Solr configuration and schema files and the administrative user interface.
Besides limiting port access to the Solr...
|
|
... and escape the HTML output? Solution: One solution is to escape the HTML output and then reapply the em tags. Now the rest of the snippet is safe and the browser will recognize the highlighted...
|
[+ show more]
[- hide]
| ... text.
For example, with groovy/grails you could have the following in your controller:
snippet = snippet.encodeAsHTML()
snippet = snippet.replaceAll('<em>', '<... |
| ... the credentials in actual requests issued by jquery is TBD
<html>
<... |
| ...;username>:<password>" ) );
});
</script>
</head>
<body>
Javascript base64 encoding test
</body>
</html>
You might want to download jquery-x.y.z.js and jquery.base64.js... |
|
|
http://wiki.apache.org/solr/SolrSecurity
Author: JanHoydahl,
2013-03-08, 23:55
|
|
|
DataImportHandler - Solr - [wiki]
|
|
...Sources
Configuring JdbcDataSource
Configuration in data-config.xml
Schema for the data config
Commands
Full Import Example
A shorter data-config
Using delta-import command
Delta-Import Example...
|
|
..._REPEATABLE_READ,TRANSACTION_SERIALIZABLE,TRANSACTION_NONE] Solr1.4
Any extra attributes put into the tag are directly passed on to the jdbc driver.
Configuration in data-config.xml
A Solr document can be considered as a de-normalized schema...
|
[+ show more]
[- hide]
| ... field name, then another attribute name should be given. Rest of the required attributes such as type will be inferred directly from the Solr schema.xml. (Can be overridden)
In order to get... |
| ... is the central table whose columns can be used to join this table with other child entities.
Schema for the data config
The dataconfig does not have a rigid schema. The attributes in the entity... |
| ...Key defined in schema.xml but they both can be the same.
rootEntity : By default the entities falling under the document are root entities. If it is set to false , the entity directly falling under... |
|
|
http://wiki.apache.org/solr/DataImportHandler
Author: AlexandreRafalovitch,
2013-02-28, 13:05
|
|
|
LanguageDetection - Solr - [wiki]
|
|
....map.lcmap
langid.map.pattern and langid.map.replace
langid.enforceSchema
Examples
Detect and map Scandinavian languages with Tika and fallback to generic for other languages
Caveats
Resources...
|
|
...RequestProcessor, and there are two implementations:
Tika implementation based upon Tika's language detection capabilities, which covers many, but not all, languages. See http://tika.apache.org/0.10/detection.html...
|
[+ show more]
[- hide]
| ... that exist in your schema.
Value: A comma separated list of language codes accepted. Note that these are codes as output from your detector before mapping with langid.map.lcmap
Default: (Empty... |
| ... Japanese, Korean and Chinese texts to the same schema field "*_cjk", do: langid.map.lcmap=ja:cjk zh:cjk ko:cjk. Another use is if your language identification outputs something like en_US or en... |
| ... with the detected language code (or the mapped equivalent).
Value: pattern is a java style regex pattern and replace is a java style replace
Default: (Empty - not used)
langid.enforceSchema
Normally... |
|
|
http://wiki.apache.org/solr/LanguageDetection
Author: JanHoydahl,
2013-02-06, 12:37
|
|
|
SolrEcosystem - Solr - [wiki]
|
|
...ETL
A common problem amongst the ETLs is that each step in the pipeline accepts and emits records in a fixed flat schema, they don't support dynamic name-value pairs. And these are not document...
|
|
|
http://wiki.apache.org/solr/SolrEcosystem
Author: OtisGospodnetic,
2013-03-11, 20:13
|
|
|
RunNutchInEclipse - Nutch - [wiki]
|
|
... for building Nutch 2.x, please check Nutch2Plugins for more information
Other Resources
http://florianhartl.com/nutch-installation.html. http://techvineyard.blogspot.com/2010/12/build-nutch-20.html...
|
|
|
http://wiki.apache.org/nutch/RunNutchInEclipse
Author: kiranchitturi,
2013-03-21, 21:35
|
|
|
CurrencyField - Solr - [wiki]
|
|
... re-indexing, since all conversions are done query-time. You simply choose for each document which currency to index, and this will be fixed.
Configuration
See example schema for example...
|
|
... of how to use the field type. The field type and field is defined in schema.xml as follows:
<dynamicField name="*_c" type="currency" />
<fieldType name="currency" class...
|
[+ show more]
[- hide]
| ... currency is USD. In the example schema there is a copyField from "price" to "price_c", meaning that you can test this on the example data:
# Both of these will query for USD 25.00 since USD... |
|
|
http://wiki.apache.org/solr/CurrencyField
Author: HossMan,
2013-03-05, 02:59
|
|
|
PoweredBy - Lucene - Lucene - [wiki]
|
|
...-applications by mail)
DBSight - search engine RAD tool on any database, without changing existing schema, highly scalable and customizable. Web based, no Java/Lucene experience required, good for learning...
|
|
... document management software that connects people, processes, and ideas.
Krugle - search-driven development system for programmers
LIUS - is an indexing Java framework for files(XML, HTML...
|
[+ show more]
[- hide]
| ... you are looking for.
regain - Open-source desktop search engine. Supports the common file formats (Word, Excel, Powerpoint, OpenOffice / StarOffice, PDF, RTF, HTML and more). Indexes both... |
| ....
zefaimages - stock images search engine
Zilverline - personal/intranet search engine as a complete web application with support for Word, PDF, HTML, Excel, Powerpoint, Text, Java, ZIP, CHM, RAR... |
|
|
http://wiki.apache.org/lucene-java/PoweredBy
Author: CagdasTatlici,
2013-02-28, 14:03
|
|
|
MetadataDiscussion - Tika - [wiki]
|
|
... automatically find the document boundaries that matter to me and make everything I consider a single document look like the following:
<html xmlns="http://www.w3.org/1999/xhtml">
<...
|
|
...;body>
...
</body>
</html>
It turns out that, for lots of good reasons, the Tika developers decided not to make things work this way. Here is my understanding of why this is the case...
|
|
|
http://wiki.apache.org/tika/MetadataDiscussion
Author: ChrisMattmann,
2013-03-09, 21:58
|
|
|
|