SlideShare uma empresa Scribd logo
1 de 49
PRESENTATION
COVER TITLE
LOREM IPSUM DOLOR SIT AMET,
CONSECTETUR ADIPISCING ELIT.
SITECORE SXA SEARCH
SITECORE USER GROUP UAE – DUBAI
29TH AUG 2020
WHO IS YOUR PRESENTER TODAY?
• 13+ years of IT experience.
• 7+ years Sitecore.
• 8 Sitecore projects.
• 5 Sitecore XP and XC new project.
• Search (Solr, Azure, Coveo and Fusion).
• Living in Sydney with family.
• Awarded by President of India in 2000
• State level winner for Genius student
award -1996
SOFTWARE DEVELOPMENT PERSONAL
2
• Sitecore certified
• Microsoft Technology Specialist- MCPD
• Coveo Certified Platform Developer
• Google GTM and GA Certified
• Sitecore Stack Exchange- http://sitecore.stackexchange.com
• Sitecore Community Portal - https://community.sitecore.net/
• Community Docs - https://sitecore-community.github.io/docs/
• Sitecore User group –
• Sitecore User Group Directory
• http://sitecoreug.org/
• http://www.MeetUp.com
• https://www.reddit.com/r/sitecore/wiki/user-groups
3
SITECORE COMMUNITY HOW YOU CAN CONNECT…..
Solr community connect…..
• I worked with Trey Grainger (Author of Solr in Action and AI Powered
Search) on one of the interesting Solr migration project.
4
Solr community connect…..
• Don’t miss to read this book by Doug Turnbull
5
Part 1 - SOLR
6
PART 1 - SOLR
Agenda
• Solr architectural view
• Basic algorithm for search – How it works
• Synonyms
• Stop word
• Protected word
• Spell checker
• Highlighter
• Analyzers – How it works
• Tokenizers – How it works
• Filters - How it works
• How to add custom filters and extending Solr core.
7
Solr architectural view.
8
Basic algorithm for search.
9
How does scoring works in Solr?
10
Term Frequency (TF)
The frequency of a search term in a document, the higher the frequency is the higher score the hit will get.
In plain English if a search term is found many times in a document the higher the score is.
Inverse Document Frequency (IDF)
The rarity of a search term in all documents, the lower the frequency is the higher score the hit will get. If a
search term only occurs at a few places in an index the higher the score is. This is to avoid high ranking hits
on very common words.
Coordination Factor (CF)
The number of search terms that are present in a document, the more search terms that are found in a hit
the higher the score is. If many search terms are used documents that contain more of them will score
higher.
Fieldnorm (FN)
The length of a field value, the longer a field value with a hit is the lower the hit score will be. If a search
term is found in a very short text in a field the hit will score higher than if the text is long.
Solr basic search Example
11
How Does Synonym Works?
12
https://www.screencast.com/t/TCNkFaaDz
Synonyms – Multi dimensional
13
https://www.screencast.com/t/TCNkFaaDz
How does Stop word Works?
14
https://www.screencast.com/t/opAZHtMUX
How does protected word works?
15
https://www.screencast.com/t/opAZHtMUX
How does highlighter works?
16
https://www.screencast.com/t/opAZHtMUX
How does spell checker and suggestion
works?
17
https://localhost:8983/solr/sug_banglore/spell?df=text&spellcheck.q=testt
Understanding analyzers, tokenizers, and
filters
18
https://www.screencast.com/t/opAZHtMUX
analyzers, tokenizers, and filters
19
https://www.screencast.com/t/opAZHtMUX
<tokenizer class="solr.StandardTokenizerFactory"/>
<tokenizer class="solr.KeywordTokenizerFactory"/>
<tokenizer class="solr.WhitespaceTokenizerFactory"/>
<tokenizer class="solr.PathHierarchyTokenizerFactory"/>
<analyzer type="index">
<analyzer type="query">
<analyzer type="multiterm">
<filter class="solr.LowerCaseFilterFactory"/>
<filter class="solr.SynonymGraphFilterFactory" />
<filter class="solr.LowerCaseFilterFactory"/>
Filter Porter Stem Filter – How it works?
20
https://lucene.apache.org/solr/guide/8_1/filter-descriptions.html#porter-stem-filter
It does not accept a list of protected words
Snowball Porter Stemmer Filter– How it
works?
21
https://lucene.apache.org/solr/guide/8_1/filter-descriptions.html#porter-stem-filter
It does accept a list of protected words
How does facet works in Solr?
22
https://lucene.apache.org/solr/guide/8_1/filter-descriptions.html#porter-stem-filter
How does boost works in Solr?
23
https://localhost:8983/solr/sug_banglore/select?q=*%3A*&debug=true&bq=id:2^20000000000&dismax=true
There are two different types of boosting, index-time and query-time.
The two major differences between the two are:
•index-time boosting allows you to boost entire documents
•index-time boosting will have an effect on all your queries
The bf (Boost Functions) Parameter
The bq (Boost Query) Parameter
More read.. Solr LTR
24
http://jitendrasoni.blogspot.com/2019/11/solr-basic-algorithm-for-tf-and-idf.html
More read.. How Alibaba develop search
engine
25
Part 2 – Sitecore SXA Search
26
PART 2 - SITECORE
Agenda
• Sitecore SXA Search - Overview
• Understand OOTB options
• Facet
• Scope
• Tokens
• Boosting.
• Hands-on session
• Creating a search result page
• view more option
• sorting
• Facet
• Boosting and rule engine
• Extending scope, facet and new custom tokens resolver.
• New search features and update in 9.3
• Troubleshooting tips for search issues
27
Sitecore SXA Search - Overview
• SXA comes with flexible out-of-the-box search functionality
• All the filter parameters and values, such as current page, location,
and sort order, are stored in the browser URL after the hash sign
28
https://doc.sitecore.com/users/sxa/17/sitecore-experience-accelerator/en/search.html
What does facets means in Sitecore sxa?
• A facet is a way of refining search results by categorizing the items
returned by the search. For example, for a blog search page, all blogs
contain fields such as: author, date, and language. Based on these
fields, you can create facets to allow visitors to use them as filters.
• The facet types are: Bool Facet, Date Facet, Distance Facet, Float
Facet, Integer Facet, and List Facet.
The Sitecore platform facets are stored in
/sitecore/system/Settings/Buckets/Facets
29
What does facets means in Sitecore sxa?
continue..
• The following table lists which facets the components can use
30
Facet Component
Date Filter (Date)
Distance Filter (Radius), Location Finder
Float
Filter (Managed Range), Filter (Range Slider), Filter
(Slider)
Integer
Filter (Managed Range), Filter (Range Slider), Filter
(Slider)
List Filter (Checklist), Filter (Dropdown)
What does facets means in Sitecore sxa?
continue..
31
WHY RESULTS ARE NOT SHOWING?
WHEN YOU SEE NO SEARCH RESULT
SOLR - "SEARCHABLE_B":FALSE
32
searchable_b":false
33
Add the _Searchable
34
SXA Search- tips for troubleshooting and fix
https://jitendrasoni.blogspot.com/2020/04/sxa-search-result-tips-for.html
Demo – Search Result component
https://www.screencast.com/t/Kcjt4ZKgGes
Demo – Facet Result component
https://www.screencast.com/t/0ayUE30geK
Demo – Boosting
https://www.screencast.com/t/pqwQn2tFj
https://localhost:8983/solr/xp930_sxa_master_index/select?q=(((_path:(13a0ce8dd3264f629b81d52814b384e8)+AND+((_path:(1cd5ab17eaa54166b2261c9e7e92d27e)+AND+s
earchable_b:(True))+OR+(_path:(f9c67dea92bf46aa923d6bd073a554b9)+AND+searchable_b:(True))+OR+(_path:(13a0ce8dd3264f629b81d52814b384e8)+AND+searchable_b:(Tr
ue))))+AND+_latestversion:(True))+AND+((country_t:(India))^5000+OR+(-_name:(%22%22)++_name:[*+TO+*])))&facet.field=country_t&start=0&fq=((-_readaccess:(U-
_extranetAnonymous)++*:*)+AND+(((-_readaccess:(R-_Everyone)++*:*)+AND+(-_readaccess:(R-_extranetEveryone)++*:*))+OR+_readaccess:(U%2B_extranetAnonymous)))
demo – Token
https://www.screencast.com/t/joiDnIiVk2
More Read..
https://jitendrasoni.blogspot.com/2020/04/sitecore-sxa-search-custom.html
Result count functionality - Demo
https://www.screencast.com/t/9jjpsgDn
View More functionality - Demo
https://www.screencast.com/t/avfVa1HkR
Page selector functionality - Demo
https://www.screencast.com/t/8a4YbACqx
Aggregated facet filter
44
Allowing for creation of facet filter sets — dynamically showing and
hiding sub-components based on content available in Search
Results.
Facet summary filter – Demo
45
Showing the selected facets and allowing for removal of undesired filters
from the search context.
https://www.screencast.com/t/UZywVigqPNr
Free Text Search– Demo
46https://www.screencast.com/t/ItgWUqUeKT
More read..
47https://www.screencast.com/t/UZywVigqPNr
Any questions?
48
JITUSONIJK@GMAIL.COM
HTTPS://WWW.LINKEDIN.COM/IN/JITENDRA-SONI-58985317/
THANK YOU!

Mais conteúdo relacionado

Semelhante a Siteocre Sxa and Solr - Sitecore User Group UAE Dubai- Jitendra Soni

FLUID Templating in EXT:solr
FLUID Templating in EXT:solrFLUID Templating in EXT:solr
FLUID Templating in EXT:solrtimohund
 
Getting the Most out of Type-Ahead/Autocomplete - LavaCon 2015 propsoal by Br...
Getting the Most out of Type-Ahead/Autocomplete - LavaCon 2015 propsoal by Br...Getting the Most out of Type-Ahead/Autocomplete - LavaCon 2015 propsoal by Br...
Getting the Most out of Type-Ahead/Autocomplete - LavaCon 2015 propsoal by Br...Jack Molisani
 
Using Search API, Search API Solr and Facets in Drupal 8
Using Search API, Search API Solr and Facets in Drupal 8Using Search API, Search API Solr and Facets in Drupal 8
Using Search API, Search API Solr and Facets in Drupal 8Websolutions Agency
 
Sumo Logic QuickStart
Sumo Logic QuickStartSumo Logic QuickStart
Sumo Logic QuickStartSumo Logic
 
Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic
 
Search Analytics for Fun and Profit
Search Analytics for Fun and ProfitSearch Analytics for Fun and Profit
Search Analytics for Fun and ProfitLouis Rosenfeld
 
Apache Solr for TYPO3 what's new 2018
Apache Solr for TYPO3 what's new 2018Apache Solr for TYPO3 what's new 2018
Apache Solr for TYPO3 what's new 2018timohund
 
Basics of Solr and Solr Integration with AEM6
Basics of Solr and Solr Integration with AEM6Basics of Solr and Solr Integration with AEM6
Basics of Solr and Solr Integration with AEM6DEEPAK KHETAWAT
 
The Apache Solr Smart Data Ecosystem
The Apache Solr Smart Data EcosystemThe Apache Solr Smart Data Ecosystem
The Apache Solr Smart Data EcosystemTrey Grainger
 
Search Intelligence & MarkLogic Search API
Search Intelligence & MarkLogic Search APISearch Intelligence & MarkLogic Search API
Search Intelligence & MarkLogic Search APIWillThompson78
 
The Intent Algorithms of Search & Recommendation Engines
The Intent Algorithms of Search & Recommendation EnginesThe Intent Algorithms of Search & Recommendation Engines
The Intent Algorithms of Search & Recommendation EnginesTrey Grainger
 
UX: internal search for e-commerce
UX: internal search for e-commerceUX: internal search for e-commerce
UX: internal search for e-commerceMyriam Jessier
 
SURE Research Report
SURE Research ReportSURE Research Report
SURE Research ReportAlex Sumner
 
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
 
Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016Sumo Logic
 
Sumo Logic Cert Jam - Security & Compliance
Sumo Logic Cert Jam - Security & ComplianceSumo Logic Cert Jam - Security & Compliance
Sumo Logic Cert Jam - Security & ComplianceSumo Logic
 
Advanced full text searching techniques using Lucene
Advanced full text searching techniques using LuceneAdvanced full text searching techniques using Lucene
Advanced full text searching techniques using LuceneAsad Abbas
 
Welcome Webinar Slides
Welcome Webinar SlidesWelcome Webinar Slides
Welcome Webinar SlidesSumo Logic
 

Semelhante a Siteocre Sxa and Solr - Sitecore User Group UAE Dubai- Jitendra Soni (20)

FLUID Templating in EXT:solr
FLUID Templating in EXT:solrFLUID Templating in EXT:solr
FLUID Templating in EXT:solr
 
Getting the Most out of Type-Ahead/Autocomplete - LavaCon 2015 propsoal by Br...
Getting the Most out of Type-Ahead/Autocomplete - LavaCon 2015 propsoal by Br...Getting the Most out of Type-Ahead/Autocomplete - LavaCon 2015 propsoal by Br...
Getting the Most out of Type-Ahead/Autocomplete - LavaCon 2015 propsoal by Br...
 
Using Search API, Search API Solr and Facets in Drupal 8
Using Search API, Search API Solr and Facets in Drupal 8Using Search API, Search API Solr and Facets in Drupal 8
Using Search API, Search API Solr and Facets in Drupal 8
 
Sumo Logic QuickStart
Sumo Logic QuickStartSumo Logic QuickStart
Sumo Logic QuickStart
 
Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016Sumo Logic QuickStart - May 2016
Sumo Logic QuickStart - May 2016
 
Search Analytics for Fun and Profit
Search Analytics for Fun and ProfitSearch Analytics for Fun and Profit
Search Analytics for Fun and Profit
 
Apache Solr for TYPO3 what's new 2018
Apache Solr for TYPO3 what's new 2018Apache Solr for TYPO3 what's new 2018
Apache Solr for TYPO3 what's new 2018
 
Basics of Solr and Solr Integration with AEM6
Basics of Solr and Solr Integration with AEM6Basics of Solr and Solr Integration with AEM6
Basics of Solr and Solr Integration with AEM6
 
The Apache Solr Smart Data Ecosystem
The Apache Solr Smart Data EcosystemThe Apache Solr Smart Data Ecosystem
The Apache Solr Smart Data Ecosystem
 
Apache Solr Workshop
Apache Solr WorkshopApache Solr Workshop
Apache Solr Workshop
 
Search Intelligence & MarkLogic Search API
Search Intelligence & MarkLogic Search APISearch Intelligence & MarkLogic Search API
Search Intelligence & MarkLogic Search API
 
The Intent Algorithms of Search & Recommendation Engines
The Intent Algorithms of Search & Recommendation EnginesThe Intent Algorithms of Search & Recommendation Engines
The Intent Algorithms of Search & Recommendation Engines
 
UX: internal search for e-commerce
UX: internal search for e-commerceUX: internal search for e-commerce
UX: internal search for e-commerce
 
SURE Research Report
SURE Research ReportSURE Research Report
SURE Research Report
 
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
 
Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016Sumo Logic Quick Start - Feb 2016
Sumo Logic Quick Start - Feb 2016
 
Sumo Logic Cert Jam - Security & Compliance
Sumo Logic Cert Jam - Security & ComplianceSumo Logic Cert Jam - Security & Compliance
Sumo Logic Cert Jam - Security & Compliance
 
Advanced full text searching techniques using Lucene
Advanced full text searching techniques using LuceneAdvanced full text searching techniques using Lucene
Advanced full text searching techniques using Lucene
 
Welcome Webinar Slides
Welcome Webinar SlidesWelcome Webinar Slides
Welcome Webinar Slides
 
Solr 101
Solr 101Solr 101
Solr 101
 

Mais de Jitendra Soni

SUGCON ANZ 2022 Sitecore Personalize Technical.pptx
SUGCON ANZ 2022 Sitecore Personalize Technical.pptxSUGCON ANZ 2022 Sitecore Personalize Technical.pptx
SUGCON ANZ 2022 Sitecore Personalize Technical.pptxJitendra Soni
 
Sitecore MC best practices for DR and HA.pptx
Sitecore MC best practices for DR and HA.pptxSitecore MC best practices for DR and HA.pptx
Sitecore MC best practices for DR and HA.pptxJitendra Soni
 
Sitecore sxa best practices and secrets 29th june 2021
Sitecore sxa best practices and secrets   29th june 2021Sitecore sxa best practices and secrets   29th june 2021
Sitecore sxa best practices and secrets 29th june 2021Jitendra Soni
 
Sitecore 10 - ASP.NET Core Rendering with Docker and Sitecore 10
Sitecore 10 - ASP.NET Core Rendering with Docker and Sitecore 10Sitecore 10 - ASP.NET Core Rendering with Docker and Sitecore 10
Sitecore 10 - ASP.NET Core Rendering with Docker and Sitecore 10Jitendra Soni
 
Sitecore 10 asp.net core rendering with docker - 21st Nov 2020
Sitecore 10   asp.net core rendering with docker - 21st Nov 2020Sitecore 10   asp.net core rendering with docker - 21st Nov 2020
Sitecore 10 asp.net core rendering with docker - 21st Nov 2020Jitendra Soni
 
Sitecore user group chennai
Sitecore user group chennaiSitecore user group chennai
Sitecore user group chennaiJitendra Soni
 
Sitecore user group mumbai sitecore commerce extension
Sitecore user group mumbai  sitecore commerce extensionSitecore user group mumbai  sitecore commerce extension
Sitecore user group mumbai sitecore commerce extensionJitendra Soni
 
Solid principle 1-single responsibility principle (srp)
Solid principle   1-single responsibility principle (srp)Solid principle   1-single responsibility principle (srp)
Solid principle 1-single responsibility principle (srp)Jitendra Soni
 
Sitecore9 key features by jitendra soni - Presented in Sitecore User Group UK
Sitecore9 key features by jitendra soni - Presented in Sitecore User Group UKSitecore9 key features by jitendra soni - Presented in Sitecore User Group UK
Sitecore9 key features by jitendra soni - Presented in Sitecore User Group UKJitendra Soni
 

Mais de Jitendra Soni (9)

SUGCON ANZ 2022 Sitecore Personalize Technical.pptx
SUGCON ANZ 2022 Sitecore Personalize Technical.pptxSUGCON ANZ 2022 Sitecore Personalize Technical.pptx
SUGCON ANZ 2022 Sitecore Personalize Technical.pptx
 
Sitecore MC best practices for DR and HA.pptx
Sitecore MC best practices for DR and HA.pptxSitecore MC best practices for DR and HA.pptx
Sitecore MC best practices for DR and HA.pptx
 
Sitecore sxa best practices and secrets 29th june 2021
Sitecore sxa best practices and secrets   29th june 2021Sitecore sxa best practices and secrets   29th june 2021
Sitecore sxa best practices and secrets 29th june 2021
 
Sitecore 10 - ASP.NET Core Rendering with Docker and Sitecore 10
Sitecore 10 - ASP.NET Core Rendering with Docker and Sitecore 10Sitecore 10 - ASP.NET Core Rendering with Docker and Sitecore 10
Sitecore 10 - ASP.NET Core Rendering with Docker and Sitecore 10
 
Sitecore 10 asp.net core rendering with docker - 21st Nov 2020
Sitecore 10   asp.net core rendering with docker - 21st Nov 2020Sitecore 10   asp.net core rendering with docker - 21st Nov 2020
Sitecore 10 asp.net core rendering with docker - 21st Nov 2020
 
Sitecore user group chennai
Sitecore user group chennaiSitecore user group chennai
Sitecore user group chennai
 
Sitecore user group mumbai sitecore commerce extension
Sitecore user group mumbai  sitecore commerce extensionSitecore user group mumbai  sitecore commerce extension
Sitecore user group mumbai sitecore commerce extension
 
Solid principle 1-single responsibility principle (srp)
Solid principle   1-single responsibility principle (srp)Solid principle   1-single responsibility principle (srp)
Solid principle 1-single responsibility principle (srp)
 
Sitecore9 key features by jitendra soni - Presented in Sitecore User Group UK
Sitecore9 key features by jitendra soni - Presented in Sitecore User Group UKSitecore9 key features by jitendra soni - Presented in Sitecore User Group UK
Sitecore9 key features by jitendra soni - Presented in Sitecore User Group UK
 

Último

Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 

Último (20)

Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 

Siteocre Sxa and Solr - Sitecore User Group UAE Dubai- Jitendra Soni