SlideShare ist ein Scribd-Unternehmen logo
1 von 32
Downloaden Sie, um offline zu lesen
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
Delivering Great Search For Your
WordPress Content
Jon Handler, Amazon CloudSearch Solution Architect
Chris Scott, Vice President, Platforms Development
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
Today’s Webinar
!   Housekeeping
!   Introduction to Amazon CloudSearch
•  Jon Handler, CloudSearch Solution Architect
!   Using the Lift plugin with WordPress
•  Chris Scott, Vice President, Platforms Development
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
What is Search
Shoes
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
Amazon CloudSearch
!   Pay for infrastructure you need when you need it
!   Low cost
!   No need to guess capacity
!   Experiment fast with low risk
!   We do the undifferentiated heavy lifting
!   Go global in minutes
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
AGENDA!
•  Who is the Voce Platforms team?
•  Why do we need a better search for WordPress?
•  How we developed Lift for WordPress
•  Why we chose Amazon CloudSearch
•  How Lift works
•  Installing and using the Lift plugin
•  Lift in the wild
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
WHO WE ARE!
•  Developers and designers
•  We build publishing systems
•  http://voceplatforms.com
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
WHY A BETTER SEARCH?!
WORDPRESS SEARCH IS BASIC, LIMITED
•  A simple LIKE query on the post title and content
•  No ranking or faceting
•  Only posts and pages are searched (and with equal
priority)
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
WHY A BETTER SEARCH?!
OUR CLIENTS WANTED MORE
•  Better relevance
•  Custom post type support
•  Ranking and faceting
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
HOW WE DEVELOPED LIFT!
•  Started with a functional spec based on client needs
•  Created a technical spec to outline the
implementation details
•  Started coding on Monday at a team offsite and
finished on Friday for an initial release
•  Custom PHP, JS, CSS
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
WHY AMAZON CLOUDSEARCH?!
•  Doesn’t require us or our clients to host their own
search instances – fully managed
•  Dynamic scalability for data/query traffic
•  CloudSearch has an easy API for both search and
configuration
•  Relevancy was good out of the box with the ability to
fine tune if needed
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
HOW IT WORKS!
PLUGIN INITIALIZATION
•  A search domain is created via the configuration API
•  A default document schema is added
•  A WP_Cron job is added to queue all posts for
submission via the document service API
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
HOW IT WORKS!
DEFAULT DOCUMENT SCHEMA
Field Type Facet Result Search
----------------------- ------- ------------- ------ -------------
blog_id uint Yes (default) Yes Yes (default)
site_id uint Yes (default) Yes Yes (default)
id uint Yes (default) No Yes (default)
post_author uint Yes (default) No Yes (default)
post_author_name text No Yes Yes (default)
taxonomy_category_id literal Yes No No
taxonomy_category_label text No No Yes (default)
post_content text No No Yes (default)
post_date_gmt uint Yes (default) No Yes (default)
post_status literal Yes No No
post_title text No Yes Yes (default)
post_type literal Yes No Yes
taxonomy_post_tag_id literal Yes No No
taxonomy_post_tag_label text No No Yes (default)
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
HOW IT WORKS!
DOCUMENT SUBMISSION
•  Documents are batched
•  Batches use two queues (active and closed) to
prevent race conditions
•  Batches are run via WP_Cron
•  Document submission errors will be retried
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
HOW IT WORKS!
SEARCHING
•  Hooks into WP_Query to check for a search
•  Builds a boolean query from the WP_Query
•  Replaces WP_Query results with CloudSearch
results
•  This is all transparent to WordPress
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
INSTALLATION!
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
CONFIGURATION!
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
CONFIGURATION!
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
CONFIGURATION!
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
DASHBOARD!
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
LIFT IN USE!
BIG TEN NETWORK
•  A large number of pages along with continually added
post content
•  Not yet live in production so this is a demo of a
subset of their content
•  ~6K documents using 1 small instance
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
BTN.COM – STANDARD SEARCH!
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
BTN.COM – LIFT SEARCH!
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
BTN.COM – LIFT FILTERS!
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
01. WELCOME! MIKE MANUEL
GENERAL MANAGER
VOCE CONNECT
LIFT SEARCH WIDGET!
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
Do You Want Search With That?
!   Build your own – database, home-rolled, site search
!   Open source
!   Legacy enterprise search
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
Search Challenges
!   Complex, expertise required
!   Costly, often with up-front expenditure
!   Long time to market, innovation and experimentation are
slowed
!   Operational overhead is undifferentiated work
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
Amazon CloudSearch Architecture
DNS / Load Balancing
Search API Console
SEARCH SERVICE
Doc
Svc API
Command
Line Tools
Console
DOCUMENT SERVICE
AWS Query
Config
API
Command
Line Tools
Console
CONFIG SERVICE
Search Domain
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
CloudSearch Features
!   Free text, structured data, Boolean search
!   Customizable relevance ranking
!   Faceting
!   Fielded and Range search
!   Alphabetic or numeric sorting
!   Field weighting
!   Visually compare rank expressions
!   Reporting (zero result queries, top results, etc.)
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
Resources and Q&A
!   Amazon CloudSearch Overview Page
http://aws.amazon.com/cloudsearch/
•  30 Day Free Trial; FAQs; Community Forum; Tutorial
•  Introducing Amazon CloudSearch (Features)
•  Building a Search Application Using Amazon CloudSearch
!   Lift Search information: http://getliftsearch.com/
!   Lift Search plugin download:
http://wordpress.org/plugins/lift-search/
! Github page for feedback:
https://github.com/voceconnect/lift-search/issues
Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
Thank You!
Jon Handler / handler@amazon.com
Chris Scott / cscott@voceconnect.com

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

WordPress, Domain Names and Web Hosting Basics
WordPress, Domain Names and Web Hosting BasicsWordPress, Domain Names and Web Hosting Basics
WordPress, Domain Names and Web Hosting Basics
 
Advanced WordPress: Session II
Advanced WordPress: Session IIAdvanced WordPress: Session II
Advanced WordPress: Session II
 
WordPress SEO Tips
WordPress SEO TipsWordPress SEO Tips
WordPress SEO Tips
 
WordPress SEO Beginner to Advanced
WordPress SEO Beginner to AdvancedWordPress SEO Beginner to Advanced
WordPress SEO Beginner to Advanced
 
20 Tips to Improving WordPress Website - for Beginners-Aus-2017
20 Tips to Improving WordPress Website - for Beginners-Aus-201720 Tips to Improving WordPress Website - for Beginners-Aus-2017
20 Tips to Improving WordPress Website - for Beginners-Aus-2017
 
Wordpress SEO - Wordcamp Seattle #wcsea
Wordpress SEO - Wordcamp Seattle #wcseaWordpress SEO - Wordcamp Seattle #wcsea
Wordpress SEO - Wordcamp Seattle #wcsea
 
Web Performance Optimisation
Web Performance OptimisationWeb Performance Optimisation
Web Performance Optimisation
 
WordPress SEO & Optimisation
WordPress SEO & OptimisationWordPress SEO & Optimisation
WordPress SEO & Optimisation
 
Categories & Tags
Categories & TagsCategories & Tags
Categories & Tags
 
WordPress SEO Basics - Melbourne WordPress Meetup
WordPress SEO Basics - Melbourne WordPress MeetupWordPress SEO Basics - Melbourne WordPress Meetup
WordPress SEO Basics - Melbourne WordPress Meetup
 
Advanced Technical SEO - Index Bloat & Discovery: from Facets to Javascript F...
Advanced Technical SEO - Index Bloat & Discovery: from Facets to Javascript F...Advanced Technical SEO - Index Bloat & Discovery: from Facets to Javascript F...
Advanced Technical SEO - Index Bloat & Discovery: from Facets to Javascript F...
 
Maximize the All In One SEO Wordpress Plugin
Maximize the All In One SEO Wordpress PluginMaximize the All In One SEO Wordpress Plugin
Maximize the All In One SEO Wordpress Plugin
 
Wordcamp, India 2009 - How to Implement SEO on a Wordpress Blog - Wordpress S...
Wordcamp, India 2009 - How to Implement SEO on a Wordpress Blog - Wordpress S...Wordcamp, India 2009 - How to Implement SEO on a Wordpress Blog - Wordpress S...
Wordcamp, India 2009 - How to Implement SEO on a Wordpress Blog - Wordpress S...
 
Improve your Wordpress SEO Strategy
Improve your Wordpress SEO StrategyImprove your Wordpress SEO Strategy
Improve your Wordpress SEO Strategy
 
2-DMI-Wordpress-Workshop
2-DMI-Wordpress-Workshop2-DMI-Wordpress-Workshop
2-DMI-Wordpress-Workshop
 
Head Slapping WordPress Security
Head Slapping WordPress SecurityHead Slapping WordPress Security
Head Slapping WordPress Security
 
SearchLove Boston 2018 - Emily Grossman - The Marketer’s Guide to Performance...
SearchLove Boston 2018 - Emily Grossman - The Marketer’s Guide to Performance...SearchLove Boston 2018 - Emily Grossman - The Marketer’s Guide to Performance...
SearchLove Boston 2018 - Emily Grossman - The Marketer’s Guide to Performance...
 
Dawn Anderson SEO Consumer Choice Crawl Budget Optimization Conflicts
Dawn Anderson SEO Consumer Choice Crawl Budget Optimization ConflictsDawn Anderson SEO Consumer Choice Crawl Budget Optimization Conflicts
Dawn Anderson SEO Consumer Choice Crawl Budget Optimization Conflicts
 
Spooky Good Technical SEO for E-Commerce Sites - Adam Dince
Spooky Good Technical SEO for E-Commerce Sites - Adam DinceSpooky Good Technical SEO for E-Commerce Sites - Adam Dince
Spooky Good Technical SEO for E-Commerce Sites - Adam Dince
 
WordCamp Ireland - 40 tips for WordPress Optimization
WordCamp Ireland - 40 tips for WordPress OptimizationWordCamp Ireland - 40 tips for WordPress Optimization
WordCamp Ireland - 40 tips for WordPress Optimization
 

Andere mochten auch

Andere mochten auch (7)

Amazon Cloudsearch Session With Elsevier: re:Invent 2013
Amazon Cloudsearch Session With Elsevier: re:Invent 2013 Amazon Cloudsearch Session With Elsevier: re:Invent 2013
Amazon Cloudsearch Session With Elsevier: re:Invent 2013
 
Building Great Mobile Search with Productsy and Amazon CloudSearch
Building Great Mobile Search with Productsy and Amazon CloudSearchBuilding Great Mobile Search with Productsy and Amazon CloudSearch
Building Great Mobile Search with Productsy and Amazon CloudSearch
 
Amazon Redshift - Bay Area CloudSearch Meetup June 19, 2013
Amazon Redshift - Bay Area CloudSearch Meetup June 19, 2013Amazon Redshift - Bay Area CloudSearch Meetup June 19, 2013
Amazon Redshift - Bay Area CloudSearch Meetup June 19, 2013
 
Seeing Redshift: How Amazon Changed Data Warehousing Forever
Seeing Redshift: How Amazon Changed Data Warehousing ForeverSeeing Redshift: How Amazon Changed Data Warehousing Forever
Seeing Redshift: How Amazon Changed Data Warehousing Forever
 
Dzone Webinar: Search Patterns with Amazon CloudSearch
Dzone Webinar: Search Patterns with Amazon CloudSearchDzone Webinar: Search Patterns with Amazon CloudSearch
Dzone Webinar: Search Patterns with Amazon CloudSearch
 
Using Amazon CloudSearch With Databases - CloudSearch Meetup 061913
Using Amazon CloudSearch With Databases - CloudSearch Meetup 061913Using Amazon CloudSearch With Databases - CloudSearch Meetup 061913
Using Amazon CloudSearch With Databases - CloudSearch Meetup 061913
 
SlideShare 101
SlideShare 101SlideShare 101
SlideShare 101
 

Ähnlich wie Delivering Better Search For WordPress - AWS Webcast

AWS Webcast - Location Based Search
AWS Webcast - Location Based SearchAWS Webcast - Location Based Search
AWS Webcast - Location Based Search
Amazon Web Services
 
SEC303 Top 10 AWS Identity and Access Management Best Practices - AWS re:Inve...
SEC303 Top 10 AWS Identity and Access Management Best Practices - AWS re:Inve...SEC303 Top 10 AWS Identity and Access Management Best Practices - AWS re:Inve...
SEC303 Top 10 AWS Identity and Access Management Best Practices - AWS re:Inve...
Amazon Web Services
 
Onsite SEO Webinar
Onsite SEO WebinarOnsite SEO Webinar
Onsite SEO Webinar
Michaelsajax
 

Ähnlich wie Delivering Better Search For WordPress - AWS Webcast (20)

CIS13: AWS Identity and Access Management
CIS13: AWS Identity and Access ManagementCIS13: AWS Identity and Access Management
CIS13: AWS Identity and Access Management
 
AWS Webinar - Design for Availability-13_09_10
AWS Webinar - Design for Availability-13_09_10AWS Webinar - Design for Availability-13_09_10
AWS Webinar - Design for Availability-13_09_10
 
AWS Webcast - Location Based Search
AWS Webcast - Location Based SearchAWS Webcast - Location Based Search
AWS Webcast - Location Based Search
 
AWS Webcast - Accelerating Application Performance Using In-Memory Caching in...
AWS Webcast - Accelerating Application Performance Using In-Memory Caching in...AWS Webcast - Accelerating Application Performance Using In-Memory Caching in...
AWS Webcast - Accelerating Application Performance Using In-Memory Caching in...
 
AWS Webcast - Design for Availability
AWS Webcast - Design for AvailabilityAWS Webcast - Design for Availability
AWS Webcast - Design for Availability
 
Content Optimization - The New Style
Content Optimization - The New StyleContent Optimization - The New Style
Content Optimization - The New Style
 
SEC303 Top 10 AWS Identity and Access Management Best Practices - AWS re:Inve...
SEC303 Top 10 AWS Identity and Access Management Best Practices - AWS re:Inve...SEC303 Top 10 AWS Identity and Access Management Best Practices - AWS re:Inve...
SEC303 Top 10 AWS Identity and Access Management Best Practices - AWS re:Inve...
 
AWS Webcast - High Availability with Route 53 DNS Failover
AWS Webcast - High Availability with Route 53 DNS FailoverAWS Webcast - High Availability with Route 53 DNS Failover
AWS Webcast - High Availability with Route 53 DNS Failover
 
Backup and Recovery for Linux With Amazon S3
Backup and Recovery for Linux With Amazon S3Backup and Recovery for Linux With Amazon S3
Backup and Recovery for Linux With Amazon S3
 
Architecting Security & Governance across Your AWS Landing Zone - SEC301 - An...
Architecting Security & Governance across Your AWS Landing Zone - SEC301 - An...Architecting Security & Governance across Your AWS Landing Zone - SEC301 - An...
Architecting Security & Governance across Your AWS Landing Zone - SEC301 - An...
 
SEO Checklist 2018 - Ranking in the first page of SERP organically.
SEO Checklist 2018 - Ranking in the first page of SERP organically.SEO Checklist 2018 - Ranking in the first page of SERP organically.
SEO Checklist 2018 - Ranking in the first page of SERP organically.
 
Getting started-with-seo-web-gnomes
Getting started-with-seo-web-gnomesGetting started-with-seo-web-gnomes
Getting started-with-seo-web-gnomes
 
AWS Webinar - Intro to Amazon Cloudfront 13-09-17
AWS Webinar -  Intro to Amazon Cloudfront 13-09-17AWS Webinar -  Intro to Amazon Cloudfront 13-09-17
AWS Webinar - Intro to Amazon Cloudfront 13-09-17
 
Designing security & governance via AWS Control Tower & Organizations - SEC30...
Designing security & governance via AWS Control Tower & Organizations - SEC30...Designing security & governance via AWS Control Tower & Organizations - SEC30...
Designing security & governance via AWS Control Tower & Organizations - SEC30...
 
Seo 101
Seo 101Seo 101
Seo 101
 
Smash.wordpress
Smash.wordpressSmash.wordpress
Smash.wordpress
 
AWS Webcast - Amazon CloudFront Zone Apex Support & Custom SSL Domain Names
AWS Webcast - Amazon CloudFront Zone Apex Support & Custom SSL Domain Names  AWS Webcast - Amazon CloudFront Zone Apex Support & Custom SSL Domain Names
AWS Webcast - Amazon CloudFront Zone Apex Support & Custom SSL Domain Names
 
Building Better Search For Wikipedia: How We Did It Using Amazon CloudSearch ...
Building Better Search For Wikipedia: How We Did It Using Amazon CloudSearch ...Building Better Search For Wikipedia: How We Did It Using Amazon CloudSearch ...
Building Better Search For Wikipedia: How We Did It Using Amazon CloudSearch ...
 
Onsite SEO Webinar
Onsite SEO WebinarOnsite SEO Webinar
Onsite SEO Webinar
 
eMetrics Summit San Francisco 2013
eMetrics Summit San Francisco 2013 eMetrics Summit San Francisco 2013
eMetrics Summit San Francisco 2013
 

Mehr von Michael Bohlig

EDU2.0 and Amazon CloudSearch
EDU2.0 and Amazon CloudSearchEDU2.0 and Amazon CloudSearch
EDU2.0 and Amazon CloudSearch
Michael Bohlig
 
Coursera amazon cloudsearch presentation
Coursera amazon cloudsearch presentation Coursera amazon cloudsearch presentation
Coursera amazon cloudsearch presentation
Michael Bohlig
 

Mehr von Michael Bohlig (8)

Amazon CloudSearch User Talk - Naked Wines
Amazon CloudSearch User Talk - Naked Wines Amazon CloudSearch User Talk - Naked Wines
Amazon CloudSearch User Talk - Naked Wines
 
DynamoDB and Amazon Cloudsearch
DynamoDB and Amazon CloudsearchDynamoDB and Amazon Cloudsearch
DynamoDB and Amazon Cloudsearch
 
Tuning Search Requests - Amazon CloudSearch
Tuning Search Requests - Amazon CloudSearchTuning Search Requests - Amazon CloudSearch
Tuning Search Requests - Amazon CloudSearch
 
Snapguide - Amazon Cloudsearch
Snapguide - Amazon CloudsearchSnapguide - Amazon Cloudsearch
Snapguide - Amazon Cloudsearch
 
EDU2.0 and Amazon CloudSearch
EDU2.0 and Amazon CloudSearchEDU2.0 and Amazon CloudSearch
EDU2.0 and Amazon CloudSearch
 
Coursera amazon cloudsearch presentation
Coursera amazon cloudsearch presentation Coursera amazon cloudsearch presentation
Coursera amazon cloudsearch presentation
 
Geospatial Search With Amazon CloudSearch
Geospatial Search With Amazon CloudSearch Geospatial Search With Amazon CloudSearch
Geospatial Search With Amazon CloudSearch
 
Amazon CloudSearch - Relevance, Ranking, Tuning and Analytics
Amazon CloudSearch - Relevance, Ranking, Tuning and AnalyticsAmazon CloudSearch - Relevance, Ranking, Tuning and Analytics
Amazon CloudSearch - Relevance, Ranking, Tuning and Analytics
 

KĂźrzlich hochgeladen

FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
dollysharma2066
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
amitlee9823
 
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
lizamodels9
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
Renandantas16
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
lizamodels9
 

KĂźrzlich hochgeladen (20)

Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023Mondelez State of Snacking and Future Trends 2023
Mondelez State of Snacking and Future Trends 2023
 
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Majnu Ka Tilla, Delhi Contact Us 8377877756
 
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Hebbal Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Pune Just Call 9907093804 Top Class Call Girl Service Available
 
Monthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptxMonthly Social Media Update April 2024 pptx.pptx
Monthly Social Media Update April 2024 pptx.pptx
 
Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...Ensure the security of your HCL environment by applying the Zero Trust princi...
Ensure the security of your HCL environment by applying the Zero Trust princi...
 
Uneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration PresentationUneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration Presentation
 
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
Call Girls Electronic City Just Call 👗 7737669865 👗 Top Class Call Girl Servi...
 
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
👉Chandigarh Call Girls 👉9878799926👉Just Call👉Chandigarh Call Girl In Chandiga...
 
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
Call Girls Service In Old Town Dubai ((0551707352)) Old Town Dubai Call Girl ...
 
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
Call Girls In DLf Gurgaon ➥99902@11544 ( Best price)100% Genuine Escort In 24...
 
RSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors DataRSA Conference Exhibitor List 2024 - Exhibitors Data
RSA Conference Exhibitor List 2024 - Exhibitors Data
 
Falcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to ProsperityFalcon's Invoice Discounting: Your Path to Prosperity
Falcon's Invoice Discounting: Your Path to Prosperity
 
Cracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptxCracking the Cultural Competence Code.pptx
Cracking the Cultural Competence Code.pptx
 
Business Model Canvas (BMC)- A new venture concept
Business Model Canvas (BMC)-  A new venture conceptBusiness Model Canvas (BMC)-  A new venture concept
Business Model Canvas (BMC)- A new venture concept
 
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
The Path to Product Excellence: Avoiding Common Pitfalls and Enhancing Commun...
 
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf0183760ssssssssssssssssssssssssssss00101011 (27).pdf
0183760ssssssssssssssssssssssssssss00101011 (27).pdf
 
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRLBAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
BAGALUR CALL GIRL IN 98274*61493 ❤CALL GIRLS IN ESCORT SERVICE❤CALL GIRL
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
Call Girls From Pari Chowk Greater Noida ❤️8448577510 ⊹Best Escorts Service I...
 

Delivering Better Search For WordPress - AWS Webcast

  • 1. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. Delivering Great Search For Your WordPress Content Jon Handler, Amazon CloudSearch Solution Architect Chris Scott, Vice President, Platforms Development
  • 2. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. Today’s Webinar !   Housekeeping !   Introduction to Amazon CloudSearch •  Jon Handler, CloudSearch Solution Architect !   Using the Lift plugin with WordPress •  Chris Scott, Vice President, Platforms Development
  • 3. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. What is Search Shoes
  • 4. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. Amazon CloudSearch !   Pay for infrastructure you need when you need it !   Low cost !   No need to guess capacity !   Experiment fast with low risk !   We do the undifferentiated heavy lifting !   Go global in minutes
  • 5. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT AGENDA! •  Who is the Voce Platforms team? •  Why do we need a better search for WordPress? •  How we developed Lift for WordPress •  Why we chose Amazon CloudSearch •  How Lift works •  Installing and using the Lift plugin •  Lift in the wild
  • 6. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT WHO WE ARE! •  Developers and designers •  We build publishing systems •  http://voceplatforms.com
  • 7. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT WHY A BETTER SEARCH?! WORDPRESS SEARCH IS BASIC, LIMITED •  A simple LIKE query on the post title and content •  No ranking or faceting •  Only posts and pages are searched (and with equal priority)
  • 8. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT WHY A BETTER SEARCH?! OUR CLIENTS WANTED MORE •  Better relevance •  Custom post type support •  Ranking and faceting
  • 9. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT HOW WE DEVELOPED LIFT! •  Started with a functional spec based on client needs •  Created a technical spec to outline the implementation details •  Started coding on Monday at a team offsite and finished on Friday for an initial release •  Custom PHP, JS, CSS
  • 10. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT WHY AMAZON CLOUDSEARCH?! •  Doesn’t require us or our clients to host their own search instances – fully managed •  Dynamic scalability for data/query traffic •  CloudSearch has an easy API for both search and configuration •  Relevancy was good out of the box with the ability to fine tune if needed
  • 11. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT HOW IT WORKS! PLUGIN INITIALIZATION •  A search domain is created via the configuration API •  A default document schema is added •  A WP_Cron job is added to queue all posts for submission via the document service API
  • 12. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT HOW IT WORKS! DEFAULT DOCUMENT SCHEMA Field Type Facet Result Search ----------------------- ------- ------------- ------ ------------- blog_id uint Yes (default) Yes Yes (default) site_id uint Yes (default) Yes Yes (default) id uint Yes (default) No Yes (default) post_author uint Yes (default) No Yes (default) post_author_name text No Yes Yes (default) taxonomy_category_id literal Yes No No taxonomy_category_label text No No Yes (default) post_content text No No Yes (default) post_date_gmt uint Yes (default) No Yes (default) post_status literal Yes No No post_title text No Yes Yes (default) post_type literal Yes No Yes taxonomy_post_tag_id literal Yes No No taxonomy_post_tag_label text No No Yes (default)
  • 13. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT HOW IT WORKS! DOCUMENT SUBMISSION •  Documents are batched •  Batches use two queues (active and closed) to prevent race conditions •  Batches are run via WP_Cron •  Document submission errors will be retried
  • 14. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT HOW IT WORKS! SEARCHING •  Hooks into WP_Query to check for a search •  Builds a boolean query from the WP_Query •  Replaces WP_Query results with CloudSearch results •  This is all transparent to WordPress
  • 15. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT INSTALLATION!
  • 16. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT CONFIGURATION!
  • 17. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT CONFIGURATION!
  • 18. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT CONFIGURATION!
  • 19. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT DASHBOARD!
  • 20. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
  • 21. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT LIFT IN USE! BIG TEN NETWORK •  A large number of pages along with continually added post content •  Not yet live in production so this is a demo of a subset of their content •  ~6K documents using 1 small instance
  • 22. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT BTN.COM – STANDARD SEARCH!
  • 23. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT BTN.COM – LIFT SEARCH!
  • 24. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT BTN.COM – LIFT FILTERS!
  • 25. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. 01. WELCOME! MIKE MANUEL GENERAL MANAGER VOCE CONNECT LIFT SEARCH WIDGET!
  • 26. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. Do You Want Search With That? !   Build your own – database, home-rolled, site search !   Open source !   Legacy enterprise search
  • 27. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. Search Challenges !   Complex, expertise required !   Costly, often with up-front expenditure !   Long time to market, innovation and experimentation are slowed !   Operational overhead is undifferentiated work
  • 28. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc.
  • 29. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. Amazon CloudSearch Architecture DNS / Load Balancing Search API Console SEARCH SERVICE Doc Svc API Command Line Tools Console DOCUMENT SERVICE AWS Query Config API Command Line Tools Console CONFIG SERVICE Search Domain
  • 30. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. CloudSearch Features !   Free text, structured data, Boolean search !   Customizable relevance ranking !   Faceting !   Fielded and Range search !   Alphabetic or numeric sorting !   Field weighting !   Visually compare rank expressions !   Reporting (zero result queries, top results, etc.)
  • 31. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. Resources and Q&A !   Amazon CloudSearch Overview Page http://aws.amazon.com/cloudsearch/ •  30 Day Free Trial; FAQs; Community Forum; Tutorial •  Introducing Amazon CloudSearch (Features) •  Building a Search Application Using Amazon CloudSearch !   Lift Search information: http://getliftsearch.com/ !   Lift Search plugin download: http://wordpress.org/plugins/lift-search/ ! Github page for feedback: https://github.com/voceconnect/lift-search/issues
  • 32. Š 2013 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified or distributed in whole or in part without the express consent of Amazon.com, Inc. Thank You! Jon Handler / handler@amazon.com Chris Scott / cscott@voceconnect.com