SlideShare uma empresa Scribd logo
1 de 16
Baixar para ler offline
Shakti Gohil
Senior Application Engineer
shakti.gohil@ektron.co.uk
Search
Copyright © 2013 Ektron, Inc.
Agenda
• New search provider SOLR in Ektron9
• Building blocks of Search API
• Examples and Hands On
Copyright © 2013 Ektron, Inc.
SOLR
• Based on Apache Lucene
• Provides a robust enterprise search
functionality
• Includes faceted search,
recommendation of similar results, spell
check and more
• Ektron Search is now built on SOLR
Copyright © 2013 Ektron, Inc.
SOLR – what you need?
• Based on JAVA
• Java development kit (JDK)
• Server
• Glassfish, JBoss, Jetty, Resin, Tomcat, WebLogic,
WebSphere
• User account
• User must have “Log on as a Service” right from
local security policy
• SQL server: TCP/IP enabled
• SOLR Install
Copyright © 2013 Ektron, Inc.
Building Blocks of Search API
• Search Manager
• Criteria
• Keyword Criteria
• Advanced Criteria
• SearchResponce
Copyright © 2013 Ektron, Inc.
Criteria
• Keyword Criteria
• Free text, keyword centric search query
• Intended for broad, traditional search
query
• Advance Criteria
• Narrow search results using expression tree
• For narrower, targeted query
Copyright © 2013 Ektron, Inc.
Example Code
• Simple search
• Spelling suggestion
• Expression Tree
• Content Property
• Smartform Property
• Metadata Property
• Faceted search on
• Smart form
• Metadata
• Taxonomy
Copyright © 2013 Ektron, Inc.
Simple Search
// Create instance search manager
Ektron.Cms.Search.SearchManager searchManager = new
Ektron.Cms.Search.SearchManager();
// Create instance of keyword criteria
Ektron.Cms.Search.KeywordSearchCriteria criteria = new
Ektron.Cms.Search.KeywordSearchCriteria();
// Search for pain text
criteria.QueryText = "product";
// pass criteria object in search method to get search results
var searchResponce = searchManager.Search(criteria);
Copyright © 2013 Ektron, Inc.
Spelling suggestion
// searchResponce object contains search results
var searchResponce = searchManager.Search(criteria);
// Check for spelling suggestion
if (!string.IsNullOrWhiteSpace(searchResponce.SpellingSuggestion))
{
// code to display spelling suggestion on page
// searchResponce.SpellingSuggestion – string stores suggested spelling
}
Copyright © 2013 Ektron, Inc.
Expression Tree
// Create instance of advanced criteria
Ektron.Cms.Search.AdvancedSearchCriteria criteria = new
Ektron.Cms.Search.AdvancedSearchCriteria();
// Build expression tree – add search content property
criteria.ExpressionTree = SearchContentProperty.Id > 0 &
SearchContentProperty.XmlConfigId.EqualTo(7);
// Add smart form property - date
criteria.ExpressionTree &=
SearchSmartFormProperty.GetDateProperty("/root/pubDate").GreaterThan(new
DateTime(2013, 5, 25));
// Add metadata property
criteria.ExpressionTree &=
SearchMetadataProperty.GetStringProperty("Region").EqualTo(“Europe");
Copyright © 2013 Ektron, Inc.
Faceted Search
• RefinementSpecification
• Identifies a field on which facets should be
generated.
• Does not specify any additional constraints.
• Refinement
• Identifies the facet field and a constraint that
should be applied to refine the query.
• This is applicable when the user has selected a
specific facet value/range by which they intend
to refine their query.
Copyright © 2013 Ektron, Inc.
Faceted Search
// Add refinement specification - Fields on which facet should be generated
criteria.Refinement.Add(new
StringRefinementSpecification(SearchSmartFormProperty.GetStringProperty("/root
/author")));
criteria.Refinement.Add(new
StringRefinementSpecification(Ektron.Cms.Search.Solr.SearchSolrProperty.CreateE
xactStringProperty(SearchContentProperty.TaxonomyCategory)));
criteria.Refinement.Add(new
StringRefinementSpecification(SearchMetadataProperty.GetStringProperty("Regio
n")));
Copyright © 2013 Ektron, Inc.
Faceted Search
// Add refinement specification - Fields on which facet should be generated
criteria.Refinement.Add(new
StringRefinementSpecification(SearchSmartFormProperty.GetStringProperty("/root
/author")));
// After SEARCH operation, Get facet information from SearchResponceData
var authorFacet =
searchResponce.Facets[SearchSmartFormProperty.GetStringProperty("/root/auth
or")];
foreach (UniqueFacetBucket<string> bucket in authorFacet.Buckets) {
if (bucket.Count > 0) {
// bucket.Refinement.Data – stored key:value pair
// bucket.Value – facet value
// bucket.Count – number of item fall in this bucket
}
}
Copyright © 2013 Ektron, Inc.
Faceted Search
How to add refinement condition.
// Smart form refinement
criteria.Refinement.Add(new
Ektron.Cms.Search.Refinement(Ektron.Cms.Search.SearchSmartFormProperty.Get
StringProperty("/root/author"), " estrootauthor:jonathan"));
// Metadata refinement
criteria.Refinement.Add(new
Ektron.Cms.Search.Refinement(SearchMetadataProperty.GetStringProperty("Regi
on"), “emtregion:europe”))
//searchManager.search operation code
var searchResponce = searchManager.Search(criteria);
Shakti Gohil
Senior Application Engineer
shakti.gohil@ektron.co.uk
Questions ?
Copyright © 2013 Ektron, Inc.
Thank You

Mais conteúdo relacionado

Destaque

Ektron 8.5 RC - Search
Ektron 8.5 RC - SearchEktron 8.5 RC - Search
Ektron 8.5 RC - SearchBillCavaUs
 
Глеб Сахрай, PR-Technologies
Глеб Сахрай, PR-TechnologiesГлеб Сахрай, PR-Technologies
Глеб Сахрай, PR-TechnologiesKlishina
 
Raytheon. Инициативы в синтетической биологии
Raytheon. Инициативы в синтетической биологииRaytheon. Инициативы в синтетической биологии
Raytheon. Инициативы в синтетической биологииIlya Klabukov
 
Elements of journalism (5)
Elements of journalism (5)Elements of journalism (5)
Elements of journalism (5)Muhammad Ahmad
 
Ektron London Conference: Myth Busting the Dark Art of SEO
Ektron London Conference: Myth Busting the Dark Art of SEOEktron London Conference: Myth Busting the Dark Art of SEO
Ektron London Conference: Myth Busting the Dark Art of SEOEktron
 
UID degree project - kick-off presentation
UID degree project - kick-off presentationUID degree project - kick-off presentation
UID degree project - kick-off presentationKilian Kreiser
 
Разнообразие клеток человека в структуре целого организма.
Разнообразие клеток человека в структуре целого организма.Разнообразие клеток человека в структуре целого организма.
Разнообразие клеток человека в структуре целого организма.Ilya Klabukov
 
Глобальные технологические тренды (НИУ-ВШЭ)
Глобальные технологические тренды (НИУ-ВШЭ)Глобальные технологические тренды (НИУ-ВШЭ)
Глобальные технологические тренды (НИУ-ВШЭ)Ilya Klabukov
 
Фундаментальные технологии - основа Русского века. На примере разработки по о...
Фундаментальные технологии - основа Русского века. На примере разработки по о...Фундаментальные технологии - основа Русского века. На примере разработки по о...
Фундаментальные технологии - основа Русского века. На примере разработки по о...Ilya Klabukov
 
США накануне президентских выборов: балансирование на грани чрезвычайного пол...
США накануне президентских выборов: балансирование на грани чрезвычайного пол...США накануне президентских выборов: балансирование на грани чрезвычайного пол...
США накануне президентских выборов: балансирование на грани чрезвычайного пол...Ilya Klabukov
 
U.S. BioBased Products Industry Economic Report 2015
U.S. BioBased Products Industry Economic Report 2015U.S. BioBased Products Industry Economic Report 2015
U.S. BioBased Products Industry Economic Report 2015Ilya Klabukov
 
Глобальные тренды развития науки и технологий: первые результаты долгосрочног...
Глобальные тренды развития науки и технологий: первые результаты долгосрочног...Глобальные тренды развития науки и технологий: первые результаты долгосрочног...
Глобальные тренды развития науки и технологий: первые результаты долгосрочног...Ilya Klabukov
 
Next Generation Diagnostics: Potential Clinical Applications of Illumina’sTec...
Next Generation Diagnostics: Potential Clinical Applications of Illumina’sTec...Next Generation Diagnostics: Potential Clinical Applications of Illumina’sTec...
Next Generation Diagnostics: Potential Clinical Applications of Illumina’sTec...Ilya Klabukov
 
Business Essentials budget, strategy & human resources
Business Essentials budget, strategy & human resourcesBusiness Essentials budget, strategy & human resources
Business Essentials budget, strategy & human resourcesAVIDWORX Productions Inc.
 
NEB Step-1 Formative Assessment-SEQ
NEB Step-1 Formative Assessment-SEQNEB Step-1 Formative Assessment-SEQ
NEB Step-1 Formative Assessment-SEQDrSaeed Shafi
 

Destaque (17)

Ektron 8.5 RC - Search
Ektron 8.5 RC - SearchEktron 8.5 RC - Search
Ektron 8.5 RC - Search
 
Turismo basic 2 baroni
Turismo basic 2 baroniTurismo basic 2 baroni
Turismo basic 2 baroni
 
Глеб Сахрай, PR-Technologies
Глеб Сахрай, PR-TechnologiesГлеб Сахрай, PR-Technologies
Глеб Сахрай, PR-Technologies
 
Raytheon. Инициативы в синтетической биологии
Raytheon. Инициативы в синтетической биологииRaytheon. Инициативы в синтетической биологии
Raytheon. Инициативы в синтетической биологии
 
Elements of journalism (5)
Elements of journalism (5)Elements of journalism (5)
Elements of journalism (5)
 
Ektron London Conference: Myth Busting the Dark Art of SEO
Ektron London Conference: Myth Busting the Dark Art of SEOEktron London Conference: Myth Busting the Dark Art of SEO
Ektron London Conference: Myth Busting the Dark Art of SEO
 
UID degree project - kick-off presentation
UID degree project - kick-off presentationUID degree project - kick-off presentation
UID degree project - kick-off presentation
 
Разнообразие клеток человека в структуре целого организма.
Разнообразие клеток человека в структуре целого организма.Разнообразие клеток человека в структуре целого организма.
Разнообразие клеток человека в структуре целого организма.
 
Глобальные технологические тренды (НИУ-ВШЭ)
Глобальные технологические тренды (НИУ-ВШЭ)Глобальные технологические тренды (НИУ-ВШЭ)
Глобальные технологические тренды (НИУ-ВШЭ)
 
Overview
OverviewOverview
Overview
 
Фундаментальные технологии - основа Русского века. На примере разработки по о...
Фундаментальные технологии - основа Русского века. На примере разработки по о...Фундаментальные технологии - основа Русского века. На примере разработки по о...
Фундаментальные технологии - основа Русского века. На примере разработки по о...
 
США накануне президентских выборов: балансирование на грани чрезвычайного пол...
США накануне президентских выборов: балансирование на грани чрезвычайного пол...США накануне президентских выборов: балансирование на грани чрезвычайного пол...
США накануне президентских выборов: балансирование на грани чрезвычайного пол...
 
U.S. BioBased Products Industry Economic Report 2015
U.S. BioBased Products Industry Economic Report 2015U.S. BioBased Products Industry Economic Report 2015
U.S. BioBased Products Industry Economic Report 2015
 
Глобальные тренды развития науки и технологий: первые результаты долгосрочног...
Глобальные тренды развития науки и технологий: первые результаты долгосрочног...Глобальные тренды развития науки и технологий: первые результаты долгосрочног...
Глобальные тренды развития науки и технологий: первые результаты долгосрочног...
 
Next Generation Diagnostics: Potential Clinical Applications of Illumina’sTec...
Next Generation Diagnostics: Potential Clinical Applications of Illumina’sTec...Next Generation Diagnostics: Potential Clinical Applications of Illumina’sTec...
Next Generation Diagnostics: Potential Clinical Applications of Illumina’sTec...
 
Business Essentials budget, strategy & human resources
Business Essentials budget, strategy & human resourcesBusiness Essentials budget, strategy & human resources
Business Essentials budget, strategy & human resources
 
NEB Step-1 Formative Assessment-SEQ
NEB Step-1 Formative Assessment-SEQNEB Step-1 Formative Assessment-SEQ
NEB Step-1 Formative Assessment-SEQ
 

Semelhante a Ektron London Conference: New Search Features in Ektron 9

SharePoint 2013 Search Based Solutions
SharePoint 2013 Search Based SolutionsSharePoint 2013 Search Based Solutions
SharePoint 2013 Search Based SolutionsSPC Adriatics
 
Developing Search-driven application in SharePoint 2013
 Developing Search-driven application in SharePoint 2013  Developing Search-driven application in SharePoint 2013
Developing Search-driven application in SharePoint 2013 SPC Adriatics
 
Writing Code To Interact With Enterprise Search
Writing Code To Interact With Enterprise SearchWriting Code To Interact With Enterprise Search
Writing Code To Interact With Enterprise SearchCorey Roth
 
Overview of Search in SharePoint Server 2013 - Australian SharePoint Conferen...
Overview of Search in SharePoint Server 2013 - Australian SharePoint Conferen...Overview of Search in SharePoint Server 2013 - Australian SharePoint Conferen...
Overview of Search in SharePoint Server 2013 - Australian SharePoint Conferen...Sezai Komur
 
SharePoint 2013 Search and Creating Dynamic Content Management Solutions
SharePoint 2013 Search and Creating Dynamic Content Management SolutionsSharePoint 2013 Search and Creating Dynamic Content Management Solutions
SharePoint 2013 Search and Creating Dynamic Content Management SolutionsInnoTech
 
The SharePoint & jQuery Guide
The SharePoint & jQuery GuideThe SharePoint & jQuery Guide
The SharePoint & jQuery GuideMark Rackley
 
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
The SharePoint and jQuery Guide by Mark Rackley - SPTechConThe SharePoint and jQuery Guide by Mark Rackley - SPTechCon
The SharePoint and jQuery Guide by Mark Rackley - SPTechConSPTechCon
 
Search Server Presentation
Search Server PresentationSearch Server Presentation
Search Server PresentationJoshua Haebets
 
Sumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced AnalyticsSumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced AnalyticsSumo Logic
 
Tagging search solution design
Tagging search solution designTagging search solution design
Tagging search solution designAlexander Tokarev
 
Grails 4 and Micronaut at Devnexus 2019
Grails 4 and Micronaut at Devnexus 2019Grails 4 and Micronaut at Devnexus 2019
Grails 4 and Micronaut at Devnexus 2019graemerocher
 
ESPC13 - 10 Things I Like in SharePoint 2013 Search
ESPC13 - 10 Things I Like in SharePoint 2013 SearchESPC13 - 10 Things I Like in SharePoint 2013 Search
ESPC13 - 10 Things I Like in SharePoint 2013 SearchAgnes Molnar
 
Houston tech fest dev intro to sharepoint search
Houston tech fest   dev intro to sharepoint searchHouston tech fest   dev intro to sharepoint search
Houston tech fest dev intro to sharepoint searchMichael Oryszak
 
SharePoint Search - SPSNYC 2014
SharePoint Search - SPSNYC 2014SharePoint Search - SPSNYC 2014
SharePoint Search - SPSNYC 2014Avtex
 
Search overview
Search overviewSearch overview
Search overviewHiep Luong
 
Lab EPiServer Find - Advanced developer scenarios
Lab EPiServer Find - Advanced developer scenariosLab EPiServer Find - Advanced developer scenarios
Lab EPiServer Find - Advanced developer scenariosPatrick van Kleef
 
Introduction to Solr
Introduction to SolrIntroduction to Solr
Introduction to SolrJayesh Bhoyar
 
Search Customizations in SharePoint 2013
Search Customizations in SharePoint 2013Search Customizations in SharePoint 2013
Search Customizations in SharePoint 2013Perficient, Inc.
 
(ATS4-DEV07) How to Build a Custom Search Panel for Symyx Notebook
(ATS4-DEV07) How to Build a Custom Search Panel for Symyx Notebook(ATS4-DEV07) How to Build a Custom Search Panel for Symyx Notebook
(ATS4-DEV07) How to Build a Custom Search Panel for Symyx NotebookBIOVIA
 

Semelhante a Ektron London Conference: New Search Features in Ektron 9 (20)

SharePoint 2013 Search Based Solutions
SharePoint 2013 Search Based SolutionsSharePoint 2013 Search Based Solutions
SharePoint 2013 Search Based Solutions
 
Developing Search-driven application in SharePoint 2013
 Developing Search-driven application in SharePoint 2013  Developing Search-driven application in SharePoint 2013
Developing Search-driven application in SharePoint 2013
 
Writing Code To Interact With Enterprise Search
Writing Code To Interact With Enterprise SearchWriting Code To Interact With Enterprise Search
Writing Code To Interact With Enterprise Search
 
Overview of Search in SharePoint Server 2013 - Australian SharePoint Conferen...
Overview of Search in SharePoint Server 2013 - Australian SharePoint Conferen...Overview of Search in SharePoint Server 2013 - Australian SharePoint Conferen...
Overview of Search in SharePoint Server 2013 - Australian SharePoint Conferen...
 
SharePoint 2013 Search and Creating Dynamic Content Management Solutions
SharePoint 2013 Search and Creating Dynamic Content Management SolutionsSharePoint 2013 Search and Creating Dynamic Content Management Solutions
SharePoint 2013 Search and Creating Dynamic Content Management Solutions
 
The SharePoint & jQuery Guide
The SharePoint & jQuery GuideThe SharePoint & jQuery Guide
The SharePoint & jQuery Guide
 
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
The SharePoint and jQuery Guide by Mark Rackley - SPTechConThe SharePoint and jQuery Guide by Mark Rackley - SPTechCon
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
 
Search Server Presentation
Search Server PresentationSearch Server Presentation
Search Server Presentation
 
Search
SearchSearch
Search
 
Sumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced AnalyticsSumo Logic "How to" Webinar: Advanced Analytics
Sumo Logic "How to" Webinar: Advanced Analytics
 
Tagging search solution design
Tagging search solution designTagging search solution design
Tagging search solution design
 
Grails 4 and Micronaut at Devnexus 2019
Grails 4 and Micronaut at Devnexus 2019Grails 4 and Micronaut at Devnexus 2019
Grails 4 and Micronaut at Devnexus 2019
 
ESPC13 - 10 Things I Like in SharePoint 2013 Search
ESPC13 - 10 Things I Like in SharePoint 2013 SearchESPC13 - 10 Things I Like in SharePoint 2013 Search
ESPC13 - 10 Things I Like in SharePoint 2013 Search
 
Houston tech fest dev intro to sharepoint search
Houston tech fest   dev intro to sharepoint searchHouston tech fest   dev intro to sharepoint search
Houston tech fest dev intro to sharepoint search
 
SharePoint Search - SPSNYC 2014
SharePoint Search - SPSNYC 2014SharePoint Search - SPSNYC 2014
SharePoint Search - SPSNYC 2014
 
Search overview
Search overviewSearch overview
Search overview
 
Lab EPiServer Find - Advanced developer scenarios
Lab EPiServer Find - Advanced developer scenariosLab EPiServer Find - Advanced developer scenarios
Lab EPiServer Find - Advanced developer scenarios
 
Introduction to Solr
Introduction to SolrIntroduction to Solr
Introduction to Solr
 
Search Customizations in SharePoint 2013
Search Customizations in SharePoint 2013Search Customizations in SharePoint 2013
Search Customizations in SharePoint 2013
 
(ATS4-DEV07) How to Build a Custom Search Panel for Symyx Notebook
(ATS4-DEV07) How to Build a Custom Search Panel for Symyx Notebook(ATS4-DEV07) How to Build a Custom Search Panel for Symyx Notebook
(ATS4-DEV07) How to Build a Custom Search Panel for Symyx Notebook
 

Mais de Ektron

How a Digital Strategy Using a CMS Can Drive Engagement
How a Digital Strategy Using a CMS Can Drive EngagementHow a Digital Strategy Using a CMS Can Drive Engagement
How a Digital Strategy Using a CMS Can Drive EngagementEktron
 
Creating a Winning Content Strategy
Creating a Winning Content StrategyCreating a Winning Content Strategy
Creating a Winning Content StrategyEktron
 
Five Capabilities that Will Engage Your Community
Five Capabilities that Will Engage Your CommunityFive Capabilities that Will Engage Your Community
Five Capabilities that Will Engage Your CommunityEktron
 
The Ektron CMP
The Ektron CMPThe Ektron CMP
The Ektron CMPEktron
 
Ektron Synergy 2014 - A Case Study in Using MVC with Ektron
Ektron Synergy 2014 - A Case Study in Using MVC with EktronEktron Synergy 2014 - A Case Study in Using MVC with Ektron
Ektron Synergy 2014 - A Case Study in Using MVC with EktronEktron
 
Ektron Synergy 2014 - The Power of Epic Content
Ektron Synergy 2014 - The Power of Epic ContentEktron Synergy 2014 - The Power of Epic Content
Ektron Synergy 2014 - The Power of Epic ContentEktron
 
Ektron Synergy 2014 - Thriving at the Intersection of Marketing & IT
Ektron Synergy 2014 - Thriving at the Intersection of Marketing & ITEktron Synergy 2014 - Thriving at the Intersection of Marketing & IT
Ektron Synergy 2014 - Thriving at the Intersection of Marketing & ITEktron
 
Ektron Synergy 2014 - Jazzing Up our Intranet with Ektron
Ektron Synergy 2014 - Jazzing Up our Intranet with EktronEktron Synergy 2014 - Jazzing Up our Intranet with Ektron
Ektron Synergy 2014 - Jazzing Up our Intranet with EktronEktron
 
Ektron Synergy 2014 - How to Create the Best Landing Pages Ever!
Ektron Synergy 2014 - How to Create the Best Landing Pages Ever!Ektron Synergy 2014 - How to Create the Best Landing Pages Ever!
Ektron Synergy 2014 - How to Create the Best Landing Pages Ever!Ektron
 
Lead Nurturing is More than Just Email
Lead Nurturing is More than Just EmailLead Nurturing is More than Just Email
Lead Nurturing is More than Just EmailEktron
 
How to Create the Best Landing Pages Ever!
How to Create the Best Landing Pages Ever!How to Create the Best Landing Pages Ever!
How to Create the Best Landing Pages Ever!Ektron
 
Keep Your Eyes on the Prize Why Context Matters More than Ever
Keep Your Eyes on the Prize   Why Context Matters More than EverKeep Your Eyes on the Prize   Why Context Matters More than Ever
Keep Your Eyes on the Prize Why Context Matters More than EverEktron
 
Why You Need to Move Your Website to the Cloud
Why You Need to Move Your Website to the CloudWhy You Need to Move Your Website to the Cloud
Why You Need to Move Your Website to the CloudEktron
 
Memorial Hermann Health System: Multiple Audiences, Multiple Sites, One Unif...
Memorial Hermann Health System: Multiple Audiences, Multiple Sites, One  Unif...Memorial Hermann Health System: Multiple Audiences, Multiple Sites, One  Unif...
Memorial Hermann Health System: Multiple Audiences, Multiple Sites, One Unif...Ektron
 
Wake Up Your Website Chicago October 22 2013
Wake Up Your Website Chicago October 22 2013Wake Up Your Website Chicago October 22 2013
Wake Up Your Website Chicago October 22 2013Ektron
 
Wake Up Your Website: Minneapolis, MN October 23 2013
Wake Up Your Website: Minneapolis, MN October 23 2013Wake Up Your Website: Minneapolis, MN October 23 2013
Wake Up Your Website: Minneapolis, MN October 23 2013Ektron
 
Wake Up Your Website - Boston September 26 2013
Wake Up Your Website - Boston September 26 2013Wake Up Your Website - Boston September 26 2013
Wake Up Your Website - Boston September 26 2013Ektron
 
Wake Up Your Website - NYC and Boston Presentation
Wake Up Your Website  - NYC and Boston PresentationWake Up Your Website  - NYC and Boston Presentation
Wake Up Your Website - NYC and Boston PresentationEktron
 
Wake Up Your Website - Ektron Breakfast Seminar
Wake Up Your Website - Ektron Breakfast SeminarWake Up Your Website - Ektron Breakfast Seminar
Wake Up Your Website - Ektron Breakfast SeminarEktron
 
Ektron London Conference - Ektron Case Study: The Global Fund
Ektron London Conference - Ektron Case Study: The Global FundEktron London Conference - Ektron Case Study: The Global Fund
Ektron London Conference - Ektron Case Study: The Global FundEktron
 

Mais de Ektron (20)

How a Digital Strategy Using a CMS Can Drive Engagement
How a Digital Strategy Using a CMS Can Drive EngagementHow a Digital Strategy Using a CMS Can Drive Engagement
How a Digital Strategy Using a CMS Can Drive Engagement
 
Creating a Winning Content Strategy
Creating a Winning Content StrategyCreating a Winning Content Strategy
Creating a Winning Content Strategy
 
Five Capabilities that Will Engage Your Community
Five Capabilities that Will Engage Your CommunityFive Capabilities that Will Engage Your Community
Five Capabilities that Will Engage Your Community
 
The Ektron CMP
The Ektron CMPThe Ektron CMP
The Ektron CMP
 
Ektron Synergy 2014 - A Case Study in Using MVC with Ektron
Ektron Synergy 2014 - A Case Study in Using MVC with EktronEktron Synergy 2014 - A Case Study in Using MVC with Ektron
Ektron Synergy 2014 - A Case Study in Using MVC with Ektron
 
Ektron Synergy 2014 - The Power of Epic Content
Ektron Synergy 2014 - The Power of Epic ContentEktron Synergy 2014 - The Power of Epic Content
Ektron Synergy 2014 - The Power of Epic Content
 
Ektron Synergy 2014 - Thriving at the Intersection of Marketing & IT
Ektron Synergy 2014 - Thriving at the Intersection of Marketing & ITEktron Synergy 2014 - Thriving at the Intersection of Marketing & IT
Ektron Synergy 2014 - Thriving at the Intersection of Marketing & IT
 
Ektron Synergy 2014 - Jazzing Up our Intranet with Ektron
Ektron Synergy 2014 - Jazzing Up our Intranet with EktronEktron Synergy 2014 - Jazzing Up our Intranet with Ektron
Ektron Synergy 2014 - Jazzing Up our Intranet with Ektron
 
Ektron Synergy 2014 - How to Create the Best Landing Pages Ever!
Ektron Synergy 2014 - How to Create the Best Landing Pages Ever!Ektron Synergy 2014 - How to Create the Best Landing Pages Ever!
Ektron Synergy 2014 - How to Create the Best Landing Pages Ever!
 
Lead Nurturing is More than Just Email
Lead Nurturing is More than Just EmailLead Nurturing is More than Just Email
Lead Nurturing is More than Just Email
 
How to Create the Best Landing Pages Ever!
How to Create the Best Landing Pages Ever!How to Create the Best Landing Pages Ever!
How to Create the Best Landing Pages Ever!
 
Keep Your Eyes on the Prize Why Context Matters More than Ever
Keep Your Eyes on the Prize   Why Context Matters More than EverKeep Your Eyes on the Prize   Why Context Matters More than Ever
Keep Your Eyes on the Prize Why Context Matters More than Ever
 
Why You Need to Move Your Website to the Cloud
Why You Need to Move Your Website to the CloudWhy You Need to Move Your Website to the Cloud
Why You Need to Move Your Website to the Cloud
 
Memorial Hermann Health System: Multiple Audiences, Multiple Sites, One Unif...
Memorial Hermann Health System: Multiple Audiences, Multiple Sites, One  Unif...Memorial Hermann Health System: Multiple Audiences, Multiple Sites, One  Unif...
Memorial Hermann Health System: Multiple Audiences, Multiple Sites, One Unif...
 
Wake Up Your Website Chicago October 22 2013
Wake Up Your Website Chicago October 22 2013Wake Up Your Website Chicago October 22 2013
Wake Up Your Website Chicago October 22 2013
 
Wake Up Your Website: Minneapolis, MN October 23 2013
Wake Up Your Website: Minneapolis, MN October 23 2013Wake Up Your Website: Minneapolis, MN October 23 2013
Wake Up Your Website: Minneapolis, MN October 23 2013
 
Wake Up Your Website - Boston September 26 2013
Wake Up Your Website - Boston September 26 2013Wake Up Your Website - Boston September 26 2013
Wake Up Your Website - Boston September 26 2013
 
Wake Up Your Website - NYC and Boston Presentation
Wake Up Your Website  - NYC and Boston PresentationWake Up Your Website  - NYC and Boston Presentation
Wake Up Your Website - NYC and Boston Presentation
 
Wake Up Your Website - Ektron Breakfast Seminar
Wake Up Your Website - Ektron Breakfast SeminarWake Up Your Website - Ektron Breakfast Seminar
Wake Up Your Website - Ektron Breakfast Seminar
 
Ektron London Conference - Ektron Case Study: The Global Fund
Ektron London Conference - Ektron Case Study: The Global FundEktron London Conference - Ektron Case Study: The Global Fund
Ektron London Conference - Ektron Case Study: The Global Fund
 

Último

Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesThousandEyes
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Scott Andery
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Hiroshi SHIBATA
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationKnoldus Inc.
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 

Último (20)

Assure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyesAssure Ecommerce and Retail Operations Uptime with ThousandEyes
Assure Ecommerce and Retail Operations Uptime with ThousandEyes
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
Enhancing User Experience - Exploring the Latest Features of Tallyman Axis Lo...
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 
Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024Long journey of Ruby standard library at RubyConf AU 2024
Long journey of Ruby standard library at RubyConf AU 2024
 
Data governance with Unity Catalog Presentation
Data governance with Unity Catalog PresentationData governance with Unity Catalog Presentation
Data governance with Unity Catalog Presentation
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 

Ektron London Conference: New Search Features in Ektron 9

  • 1. Shakti Gohil Senior Application Engineer shakti.gohil@ektron.co.uk Search
  • 2. Copyright © 2013 Ektron, Inc. Agenda • New search provider SOLR in Ektron9 • Building blocks of Search API • Examples and Hands On
  • 3. Copyright © 2013 Ektron, Inc. SOLR • Based on Apache Lucene • Provides a robust enterprise search functionality • Includes faceted search, recommendation of similar results, spell check and more • Ektron Search is now built on SOLR
  • 4. Copyright © 2013 Ektron, Inc. SOLR – what you need? • Based on JAVA • Java development kit (JDK) • Server • Glassfish, JBoss, Jetty, Resin, Tomcat, WebLogic, WebSphere • User account • User must have “Log on as a Service” right from local security policy • SQL server: TCP/IP enabled • SOLR Install
  • 5. Copyright © 2013 Ektron, Inc. Building Blocks of Search API • Search Manager • Criteria • Keyword Criteria • Advanced Criteria • SearchResponce
  • 6. Copyright © 2013 Ektron, Inc. Criteria • Keyword Criteria • Free text, keyword centric search query • Intended for broad, traditional search query • Advance Criteria • Narrow search results using expression tree • For narrower, targeted query
  • 7. Copyright © 2013 Ektron, Inc. Example Code • Simple search • Spelling suggestion • Expression Tree • Content Property • Smartform Property • Metadata Property • Faceted search on • Smart form • Metadata • Taxonomy
  • 8. Copyright © 2013 Ektron, Inc. Simple Search // Create instance search manager Ektron.Cms.Search.SearchManager searchManager = new Ektron.Cms.Search.SearchManager(); // Create instance of keyword criteria Ektron.Cms.Search.KeywordSearchCriteria criteria = new Ektron.Cms.Search.KeywordSearchCriteria(); // Search for pain text criteria.QueryText = "product"; // pass criteria object in search method to get search results var searchResponce = searchManager.Search(criteria);
  • 9. Copyright © 2013 Ektron, Inc. Spelling suggestion // searchResponce object contains search results var searchResponce = searchManager.Search(criteria); // Check for spelling suggestion if (!string.IsNullOrWhiteSpace(searchResponce.SpellingSuggestion)) { // code to display spelling suggestion on page // searchResponce.SpellingSuggestion – string stores suggested spelling }
  • 10. Copyright © 2013 Ektron, Inc. Expression Tree // Create instance of advanced criteria Ektron.Cms.Search.AdvancedSearchCriteria criteria = new Ektron.Cms.Search.AdvancedSearchCriteria(); // Build expression tree – add search content property criteria.ExpressionTree = SearchContentProperty.Id > 0 & SearchContentProperty.XmlConfigId.EqualTo(7); // Add smart form property - date criteria.ExpressionTree &= SearchSmartFormProperty.GetDateProperty("/root/pubDate").GreaterThan(new DateTime(2013, 5, 25)); // Add metadata property criteria.ExpressionTree &= SearchMetadataProperty.GetStringProperty("Region").EqualTo(“Europe");
  • 11. Copyright © 2013 Ektron, Inc. Faceted Search • RefinementSpecification • Identifies a field on which facets should be generated. • Does not specify any additional constraints. • Refinement • Identifies the facet field and a constraint that should be applied to refine the query. • This is applicable when the user has selected a specific facet value/range by which they intend to refine their query.
  • 12. Copyright © 2013 Ektron, Inc. Faceted Search // Add refinement specification - Fields on which facet should be generated criteria.Refinement.Add(new StringRefinementSpecification(SearchSmartFormProperty.GetStringProperty("/root /author"))); criteria.Refinement.Add(new StringRefinementSpecification(Ektron.Cms.Search.Solr.SearchSolrProperty.CreateE xactStringProperty(SearchContentProperty.TaxonomyCategory))); criteria.Refinement.Add(new StringRefinementSpecification(SearchMetadataProperty.GetStringProperty("Regio n")));
  • 13. Copyright © 2013 Ektron, Inc. Faceted Search // Add refinement specification - Fields on which facet should be generated criteria.Refinement.Add(new StringRefinementSpecification(SearchSmartFormProperty.GetStringProperty("/root /author"))); // After SEARCH operation, Get facet information from SearchResponceData var authorFacet = searchResponce.Facets[SearchSmartFormProperty.GetStringProperty("/root/auth or")]; foreach (UniqueFacetBucket<string> bucket in authorFacet.Buckets) { if (bucket.Count > 0) { // bucket.Refinement.Data – stored key:value pair // bucket.Value – facet value // bucket.Count – number of item fall in this bucket } }
  • 14. Copyright © 2013 Ektron, Inc. Faceted Search How to add refinement condition. // Smart form refinement criteria.Refinement.Add(new Ektron.Cms.Search.Refinement(Ektron.Cms.Search.SearchSmartFormProperty.Get StringProperty("/root/author"), " estrootauthor:jonathan")); // Metadata refinement criteria.Refinement.Add(new Ektron.Cms.Search.Refinement(SearchMetadataProperty.GetStringProperty("Regi on"), “emtregion:europe”)) //searchManager.search operation code var searchResponce = searchManager.Search(criteria);
  • 15. Shakti Gohil Senior Application Engineer shakti.gohil@ektron.co.uk Questions ?
  • 16. Copyright © 2013 Ektron, Inc. Thank You