reklama - zainteresowany?

Apache Solr 4 Cookbook. Apache Soir 4 can transform the effectiveness of your search engines and this book will show you how. Jump straight into the hands-on recipes and get a fast understanding of the latest and greatest in open source search. - Second E - Helion

Apache Solr 4 Cookbook. Apache Soir 4 can transform the effectiveness of your search engines and this book will show you how. Jump straight into the hands-on recipes and get a fast understanding of the latest and greatest in open source search. - Second E

Apache Solr is a blazing fast, scalable, open source Enterprise search server built upon Apache Lucene. Solr is wildly popular because it supports complex search criteria, faceting, result highlighting, query-completion, query spell-checking, and relevancy tuning, amongst other numerous features."Apache Solr 4 Cookbook" will show you how to get the most out of your search engine. Full of practical recipes and examples, this book will show you how to set up Apache Solr, tune and benchmark performance as well as index and analyze your data to provide better, more precise, and useful search data."Apache Solr 4 Cookbook" will make your search better, more accurate and faster with practical recipes on essential topics such as SolrCloud, querying data, search faceting, text and data analysis, and cache configuration.With numerous practical chapters centered on important Solr techniques and methods, Apache Solr 4 Cookbook is an essential resource for developers who wish to take their knowledge and skills further. Thoroughly updated and improved, this Cookbook also covers the changes in Apache Solr 4 including the awesome capabilities of SolrCloud.

Dodaj do koszyka Apache Solr 4 Cookbook. Apache Soir 4 can transform the effectiveness of your search engines and this book will show you how. Jump straight into the hands-on recipes and get a fast understanding of the latest and greatest in open source search. - Second E

 

Osoby które kupowały "Apache Solr 4 Cookbook. Apache Soir 4 can transform the effectiveness of your search engines and this book will show you how. Jump straight into the hands-on recipes and get a fast understanding of the latest and greatest in open source search. - Second E", wybierały także:

  • Windows Media Center. Domowe centrum rozrywki
  • Ruby on Rails. Ćwiczenia
  • Przywództwo w Å›wiecie VUCA. Jak być skutecznym liderem w niepewnym Å›rodowisku
  • Scrum. O zwinnym zarzÄ…dzaniu projektami. Wydanie II rozszerzone
  • Od hierarchii do turkusu, czyli jak zarzÄ…dzać w XXI wieku

Dodaj do koszyka Apache Solr 4 Cookbook. Apache Soir 4 can transform the effectiveness of your search engines and this book will show you how. Jump straight into the hands-on recipes and get a fast understanding of the latest and greatest in open source search. - Second E

Spis treści

Apache Solr 4 Cookbook. Apache Soir 4 can transform the effectiveness of your search engines and this book will show you how. Jump straight into the hands-on recipes and get a fast understanding of the latest and greatest in open source search. - Second Edition eBook -- spis treści

  • Apache Solr 4 Cookbook
    • Table of Contents
    • Apache Solr 4 Cookbook
    • Credits
    • About the Author
    • Acknowledgement
    • About the Reviewers
    • www.PacktPub.com
      • Support files, eBooks, discount offers and more
        • Why Subscribe?
        • Free Access for Packt account holders
    • Preface
      • What this book covers
      • What you need for this book
      • Who this book is for
      • Conventions
      • Reader feedback
      • Customer support
        • Downloading the example code
        • Errata
        • Piracy
        • Questions
    • 1. Apache Solr Configuration
      • Introduction
      • Running Solr on Jetty
        • Getting ready
        • How to do it...
        • How it works...
        • Theres more...
          • I want Jetty to run on a different port
          • Buffer size is too small
      • Running Solr on Apache Tomcat
        • Getting ready
        • How to do it...
        • How it works...
        • There's more...
          • Changing the port on which we see Solr running on Tomcat
      • Installing a standalone ZooKeeper
        • Getting ready
        • How to do it...
        • How it works...
      • Clustering your data
        • Getting ready
        • How to do it...
        • How it works...
      • Choosing the right directory implementation
        • How to do it...
        • How it works...
      • Configuring spellchecker to not use its own index
        • How to do it...
        • How it works...
        • There's more...
          • More than one spellchecker
      • Solr cache configuration
        • Getting ready
        • How to do it...
        • How it works...
        • There's more...
          • Using a filter cache with faceting
          • When we have no cache hits
          • When we have more "puts" than "gets"
          • Filter cache
          • Query result cache
          • Document cache
          • Query result window
        • See also
      • How to fetch and index web pages
        • Getting ready
        • How to do it...
        • How it works...
        • There's more...
          • Multiple thread crawling
        • See also
      • How to set up the extracting request handler
        • How to do it...
        • How it works...
        • See also
      • Changing the default similarity implementation
        • Getting ready
        • How to do it...
        • How it works...
        • There's more...
          • Changing the global similarity
    • 2. Indexing Your Data
      • Introduction
      • Indexing PDF files
        • Getting ready
        • How to do it...
        • How it works...
      • Generating unique fields automatically
        • How to do it...
        • How it works...
      • Extracting metadata from binary files
        • Getting ready
        • How to do it...
        • How it works...
        • See also
      • How to properly configure Data Import Handler with JDBC
        • How to do it...
        • How it works...
        • There's more...
      • Indexing data from a database using Data Import Handler
        • Getting ready
        • How to do it...
        • How it works...
      • How to import data using Data Import Handler and delta query
        • Getting ready
        • How to do it...
        • How it works...
      • How to use Data Import Handler with the URL data source
        • Getting ready
        • How to do it...
        • How it works...
      • How to modify data while importing with Data Import Handler
        • Getting ready
        • How to do it...
        • How it works...
        • There's more...
      • Updating a single field of your document
        • How to do it...
        • How it works...
      • Handling multiple currencies
        • How to do it...
        • How it works...
        • There's more...
          • Setting up your own currency provider
      • Detecting the document's language
        • How to do it...
        • How it works...
        • There's more...
          • Language identification based on Apache Tika
      • Optimizing your primary key field indexing
        • How to do it...
        • How it works...
    • 3. Analyzing Your Text Data
      • Introduction
      • Storing additional information using payloads
        • How to do it...
        • How it works...
      • Eliminating XML and HTML tags from text
        • How to do it...
        • How it works...
      • Copying the contents of one field to another
        • How to do it...
        • How it works...
        • There's more...
          • Copying contents of dynamic fields to one field
          • Limiting the number of characters copied
      • Changing words to other words
        • How to do it...
        • How it works...
        • There's more...
          • Equivalent synonyms setup
      • Splitting text by CamelCase
        • How to do it...
        • How it works...
      • Splitting text by whitespace only
        • How to do it...
        • How it works...
      • Making plural words singular without stemming
        • How to do it...
        • How it works...
        • There's more...
      • Lowercasing the whole string
        • How to do it...
        • How it works...
      • Storing geographical points in the index
        • How to do it...
        • How it works...
      • Stemming your data
        • How to do it...
        • How it works...
        • There's more...
      • Preparing text to perform an efficient trailing wildcard search
        • How to do it...
        • How it works...
        • There's more...
        • See also
      • Splitting text by numbers and non-whitespace characters
        • How to do it...
        • How it works...
        • There's more...
        • See also
      • Using Hunspell as a stemmer
        • Getting ready
        • How to do it...
        • How it works...
      • Using your own stemming dictionary
        • Getting ready
        • How it works...
      • Protecting words from being stemmed
        • Getting started
        • How to do it...
        • How it works...
    • 4. Querying Solr
      • Introduction
      • Asking for a particular field value
        • How to do it...
        • How it works...
        • There's more...
          • Querying for a particular value using the DisMax query parser
          • Querying for multiple values in the same field
      • Sorting results by a field value
        • How to do it...
        • How it works...
      • How to search for a phrase, not a single word
        • How to do it...
        • How it works...
        • There's more...
          • Defining the distance between words in a phrase
      • Boosting phrases over words
        • Getting ready
        • How to do it...
        • How it works...
        • There's more...
      • Positioning some documents over others on a query
        • How to do it...
        • How it works...
        • There's more...
          • Excluding documents with QueryElevationComponent
        • See also
      • Positioning documents with words closer to each other first
        • How to do it...
        • How it works...
      • Sorting results by a distance from a point
        • Getting ready
        • How to do it...
        • How it works...
        • See also
      • Getting documents with only a partial match
        • Getting ready
        • How to do it...
        • How it works...
      • Affecting scoring with functions
        • How to do it...
        • How it works...
        • See also
      • Nesting queries
        • How to do it...
        • How it works...
      • Modifying returned documents
        • How to do it...
        • How it works...
      • Using parent-child relationships
        • How to do it...
        • How it works...
      • Ignoring typos in terms of performance
        • How to do it...
        • How it works...
      • Detecting and omitting duplicate documents
        • How to do it...
        • How it works...
      • Using field aliases
        • How to do it...
        • How it works...
      • Returning a value of a function in the results
        • Getting ready
        • How to do it...
        • How it works...
    • 5. Using the Faceting Mechanism
      • Introduction
      • Getting the number of documents with the same field value
        • How to do it...
        • How it works...
        • There's more...
      • Getting the number of documents with the same value range
        • How to do it...
        • How it works...
      • Getting the number of documents matching the query and subquery
        • How to do it...
        • How it works...
      • Removing filters from faceting results
        • Getting ready
        • How to do it...
        • How it works...
      • Sorting faceting results in alphabetical order
        • Getting ready
        • How to do it...
        • How it works...
      • Implementing the autosuggest feature using faceting
        • Getting ready
        • How to do it...
        • How it works...
        • There's more...
          • Suggesting words not whole phrases
      • Getting the number of documents that don't have a value in the field
        • Getting ready
        • How to do it...
        • How it works...
      • Having two different facet limits for two different fields in the same query
        • Getting ready
        • How to do it...
        • How it works...
      • Using decision tree faceting
        • How to do it...
        • How it works...
      • Calculating faceting for relevant documents in groups
        • Getting ready
        • How to do it...
        • How it works...
    • 6. Improving Solr Performance
      • Introduction
      • Paging your results quickly
        • How to do it...
        • How it works...
      • Configuring the document cache
        • How to do it...
        • How it works...
      • Configuring the query result cache
        • How to do it...
        • How it works...
      • Configuring the filter cache
        • How to do it...
        • How it works...
      • Improving Solr performance right after the startup or commit operation
        • How to do it...
        • How it works...
        • There's more...
          • Improving Solr performance after commit operations
      • Caching whole result pages
        • Getting ready
        • How to do it...
        • How it works...
      • Improving faceting performance for low cardinality fields
        • How to do it...
        • How it works...
        • There's more...
          • Specifying faceting method per field
      • What to do when Solr slows down during indexing
        • How to do it...
        • How it works...
        • There's more...
          • Commit after a set amount of documents
          • Commit within a set amount of time
      • Analyzing query performance
        • How to do it...
        • How it works...
      • Avoiding filter caching
        • How to do it...
        • How it works...
      • Controlling the order of execution of filter queries
        • Getting ready
        • How to do it...
        • How it works...
      • Improving the performance of numerical range queries
        • How to do it...
        • How it works...
    • 7. In the Cloud
      • Introduction
      • Creating a new SolrCloud cluster
        • Getting ready
        • How to do it...
        • How it works...
        • There's more...
          • Starting the embedded ZooKeeper server
      • Setting up two collections inside a single cluster
        • Getting ready
        • How to do it...
        • How it works...
      • Managing your SolrCloud cluster
        • Getting ready
        • How to do it...
        • How it works...
      • Understanding the SolrCloud cluster administration GUI
        • Getting ready
        • How to do it...
        • How it works...
      • Distributed indexing and searching
        • Getting ready
        • How to do it...
        • How it works...
      • Increasing the number of replicas on an already live cluster
        • Getting ready
        • How to do it...
        • How it works...
      • Stopping automatic document distribution among shards
        • Getting ready
        • How to do it...
        • How it works...
    • 8. Using Additional Solr Functionalities
      • Introduction
      • Getting more documents similar to those returned in the results list
        • How to do it...
        • How it works...
      • Highlighting matched words
        • How to do it...
        • How it works...
        • There's more...
          • Specifying the fields for highlighting
          • Changing the default HTML tags that surround the matched word
      • How to highlight long text fields and get good performance
        • How to do it...
        • How it works...
      • Sorting results by a function value
        • Getting ready
        • How to do it...
        • How it works...
      • Searching words by how they sound
        • How to do it...
        • How it works...
        • See also
      • Ignoring defined words
        • How to do it...
        • How it works...
      • Computing statistics for the search results
        • How to do it...
        • How it works...
      • Checking the user's spelling mistakes
        • Getting ready
        • How to do it...
        • How it works...
      • Using field values to group results
        • How to do it...
        • How it works...
        • There's more...
          • More than a single document in a group
      • Using queries to group results
        • Getting ready
        • How to do it
        • How it works...
      • Using function queries to group results
        • Getting ready
        • How to do it...
        • How it works...
    • 9. Dealing with Problems
      • Introduction
      • How to deal with too many opened files
        • How to do it...
        • How it works...
      • How to deal with out-of-memory problems
        • How to do it...
        • How it works...
        • There's more...
          • Monitoring heap when an out-of-memory error occurs
          • Reducing the amount of memory needed by Solr
      • How to sort non-English languages properly
        • How to do it...
        • How it works...
      • How to make your index smaller
        • How to do it...
        • How it works...
        • There's more...
          • Estimating your index size and memory usage
      • Diagnosing Solr problems
        • Getting ready
        • How to do it...
        • How it works...
      • How to avoid swapping
        • Getting ready
        • How to do it...
        • How it works...
    • A. Real-life Situations
      • Introduction
      • How to implement a product's autocomplete functionality
        • How to do it...
        • How it works...
      • How to implement a category's autocomplete functionality
        • How to do it...
        • How it works...
      • How to use different query parsers in a single query
        • How to do it...
        • How it works...
      • How to get documents right after they were sent for indexation
        • How to do it...
        • How it works...
      • How to search your data in a near real-time manner
        • How to do it...
        • How it works...
      • How to get the documents with all the query words to the top of the results set
        • How to do it...
        • How it works...
      • How to boost documents based on their publishing date
        • How to do it...
        • How it works...
        • There's more...
    • Index

Dodaj do koszyka Apache Solr 4 Cookbook. Apache Soir 4 can transform the effectiveness of your search engines and this book will show you how. Jump straight into the hands-on recipes and get a fast understanding of the latest and greatest in open source search. - Second E

Code, Publish & WebDesing by CATALIST.com.pl



(c) 2005-2025 CATALIST agencja interaktywna, znaki firmowe należą do wydawnictwa Helion S.A.