Apache Solr enterprise search server : enhance your searches with faceted navigation, result highlighting, relevancy-ranked sorting, and much more with this comprehensive guide to Apache Solr 4 /

Saved in:
Bibliographic Details
Author / Creator:Smiley, David, author.
Edition:Third edition.
Imprint:Birmingham, UK : Packt Publishing, 2015.
Description:1 online resource (1 volume) : illustrations
Language:English
Series:Community experience distilled
Community experience distilled.
Subject:
Format: E-Resource Book
URL for this record:http://pi.lib.uchicago.edu/1001/cat/bib/11305967
Hidden Bibliographic Details
Varying Form of Title:Enhance your searches with faceted navigation, result highlighting, relevancy-ranked sorting, and much more with this comprehensive guide to Apache Solr 4
ISBN:9781782161370
1782161376
1782161368
9781782161363
9781782161363
Digital file characteristics:text file
Notes:Includes index.
Includes bibliographical references and index.
Online resource; title from cover (Safari, viewed June 10, 2015).
Online resource; title from PDF title page (EBSCO, viewed July 10, 2017).
Summary:This book is for developers who want to learn how to get the most out of Solr in their applications, whether you are new to the field, have used Solr but don't know everything, or simply want a good reference. It would be helpful to have some familiarity with basic programming concepts, but no prior experience is required.
Other form:Print version: Smiley, David. Apache Solr Enterprise Search Server. Birmingham : Packt Publishing, ©2015 9781782161363

MARC

LEADER 00000cam a2200000Ii 4500
001 11305967
005 20210426223217.8
006 m o d
007 cr unu||||||||
008 150618s2015 enka ob 001 0 eng d
019 |a 910815523  |a 921985120  |a 968045932  |a 969024024  |a 972014157 
020 |a 9781782161370 
020 |a 1782161376 
020 |a 1782161368 
020 |a 9781782161363 
020 |z 9781782161363 
035 |a (OCoLC)911187039  |z (OCoLC)910815523  |z (OCoLC)921985120  |z (OCoLC)968045932  |z (OCoLC)969024024  |z (OCoLC)972014157 
035 9 |a (OCLCCM-CC)911187039 
037 |a CL0500000605  |b Safari Books Online 
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d DEBBG  |d EBLCP  |d IDEBK  |d E7B  |d DEBSZ  |d COO  |d YDXCP  |d OCLCF  |d N$T  |d LVT  |d FEM  |d OCLCQ  |d ZCU  |d AGLDB  |d OCLCQ  |d MERUC  |d OCLCQ  |d OCLCO  |d D6H  |d VTS  |d CEF  |d ICG  |d OCLCQ  |d WYU  |d STF  |d DKC  |d AU@  |d OCLCO  |d OCLCQ  |d OCLCO  |d OCLCQ  |d K6U 
049 |a MAIN 
050 4 |a TK5105.884 
072 7 |a COM  |x 060120  |2 bisacsh 
072 7 |a COM060160  |2 bisacsh 
072 7 |a COM  |x 051390  |2 bisacsh 
100 1 |a Smiley, David,  |e author.  |0 http://id.loc.gov/authorities/names/no2009146123 
245 1 0 |a Apache Solr enterprise search server :  |b enhance your searches with faceted navigation, result highlighting, relevancy-ranked sorting, and much more with this comprehensive guide to Apache Solr 4 /  |c David Smiley [and three others]. 
246 3 0 |a Enhance your searches with faceted navigation, result highlighting, relevancy-ranked sorting, and much more with this comprehensive guide to Apache Solr 4 
250 |a Third edition. 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2015. 
300 |a 1 online resource (1 volume) :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file  |2 rda 
490 1 |a Community experience distilled 
588 0 |a Online resource; title from cover (Safari, viewed June 10, 2015). 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed July 10, 2017). 
500 |a Includes index. 
505 0 |a Cover; Copyright; Credits; About the Authors; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Quick Starting Solr; An introduction to Solr; Lucene-the underlying engine; Solr-a Lucene-based search server; Comparison to database technology; A few differences between Solr 4 and Solr 5; Getting started; Solr's installation directory structure; Running Solr; A quick tour of Solr; Loading sample data; A simple query; Some statistics; The sample browse interface; Configuration files; What's next?; Schema design and indexing; Text analysis; Searching; Integration. 
505 8 |a Resources outside this bookSummary; Chapter 2: Schema Design; Is Solr schemaless?; MusicBrainz.org; One combined index or separate indices; One combined index; Problems with using a single combined index; Separate indices; Schema design; Step 1 -- determine which searches are going to be powered by Solr; Step 2 -- determine the entities returned from each search; Step 3 -- denormalize related data; Denormalizing -- one-to-one associated data; Denormalizing -- one-to-many associated data; Step 4 -- omit the inclusion of fields only used in search results (optional); The schema.xml file. 
505 8 |a Field definitionsDynamic field definitions; Advanced field options for indexed fields; The unique key; The default search field and query operator; Copying fields; Our MusicBrainz field definitions; Defining field types; Built-in field type classes; Numbers and dates; Some other field types; Summary; Chapter 3: Text Analysis; Configuring field types; Experimenting with text analysis; Character filters; Tokenization; Filtering; Stemming; Correcting and augmenting stemming; Processing synonyms; Synonym expansion at index time versus query time; Working with stop words; Phonetic analysis. 
505 8 |a Substring indexing and wildcardsReversedWildcardFilter; N-gram analysis; N-gram costs; Sorting text; Miscellaneous token filters; The multilingual search; The multifield approach; The multicore approach; The single field approach; Summary; Chapter 4: Indexing Data; Communicating with Solr; Using direct HTTP or a convenient client API; Pushing data to Solr or have Solr pull it; Data formats; Solr's HTTP POST options; Remote streaming; Solr's Update-XML format; Deleting documents; Commit, optimize, and rollback the transaction log; Don't overlap commits; Index optimization. 
505 8 |a Rolling back an uncommitted changeThe transaction log; Atomic updates and optimistic concurrency; Sending CSV-formatted data to Solr; Configuration options; The DataImportHandler framework; Configuring the DataImportHandler framework; The development console; Writing a DIH configuration file; Data sources; Entity processors; Fields and transformers; Example DIH configurations; Importing from databases; Importing XML from a file with XSLT; Importing multiple rich document files -- crawling; Importing commands; Delta imports; Indexing documents with Solr Cell. 
520 |a This book is for developers who want to learn how to get the most out of Solr in their applications, whether you are new to the field, have used Solr but don't know everything, or simply want a good reference. It would be helpful to have some familiarity with basic programming concepts, but no prior experience is required. 
504 |a Includes bibliographical references and index. 
630 0 0 |a Apache (Computer file : Apache Group)  |0 http://id.loc.gov/authorities/names/no97023874 
630 0 7 |a Apache (Computer file : Apache Group)  |2 fast  |0 (OCoLC)fst01387458 
650 0 |a Search engines  |x Programming.  |0 http://id.loc.gov/authorities/subjects/sh00001051 
650 0 |a Web search engines.  |0 http://id.loc.gov/authorities/subjects/sh97007463 
650 0 |a Open source software.  |0 http://id.loc.gov/authorities/subjects/sh99003437 
650 7 |a COMPUTERS  |x Web  |x Search Engines.  |2 bisacsh 
650 7 |a COMPUTERS  |x Web  |x Web Programming.  |2 bisacsh 
650 7 |a COMPUTERS  |x Programming  |x Open Source.  |2 bisacsh 
650 7 |a Open source software.  |2 fast  |0 (OCoLC)fst01046097 
650 7 |a Search engines  |x Programming.  |2 fast  |0 (OCoLC)fst01110373 
650 7 |a Web search engines.  |2 fast  |0 (OCoLC)fst01173234 
655 0 |a Electronic books. 
655 4 |a Electronic books. 
776 0 8 |i Print version:  |a Smiley, David.  |t Apache Solr Enterprise Search Server.  |d Birmingham : Packt Publishing, ©2015  |z 9781782161363 
830 0 |a Community experience distilled.  |0 http://id.loc.gov/authorities/names/no2011030603 
903 |a HeVa 
929 |a oclccm 
999 f f |i 4d30c185-3f0f-59d1-b68b-1a34c8c16fcc  |s 02214ccf-c6de-5a64-b5cf-ccce587c9ac2 
928 |t Library of Congress classification  |a TK5105.884  |l Online  |c UC-FullText  |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=e000xna&AN=999134  |z eBooks on EBSCOhost  |g ebooks  |i 12426879