SlideShare a Scribd company logo
1 of 39
Download to read offline
Tworzenie
wyszukiwarek w
ElasticSearch
Marcin
Lewandowski
kurs-elasticsearch.pl
PROBLEM 1
LIKE
PROBLEM 1
LIKE
PROBLEM 1
LIKE
LIKE %fraza%
LIKE %buty%
buty
PROBLEM 1
LIKE
LIKE %avatar%
avatar
LIKE %rozpętałem wojnę%
rozpętałem wojnę
PROBLEM 1
LIKE
LIKE %rozpętałem wojnę%
LIKE %rozpętałem% OR
LIKE %wojnę%
PROBLEM 1
LIKE
LIKE %rozpętałem wojnę%
LIKE %rozpętałem% AND
LIKE %wojnę%
PROBLEM 1
LIKE
PROBLEM 1
LIKE
buty skórzane
LIKE %buty% OR
LIKE %skórzane%
PROBLEM 1
LIKE
LIKE %buty%
OR
LIKE %skórzane%
"match": {
"name": {
"query": "buty skórzane",
"operator": "or"
}
}
1
2
3
4
5
6
PROBLEM 1
LIKE
LIKE %buty%
AND
LIKE %skórzane%
"match": {
"name": {
"query": "buty skórzane",
"operator": "and"
}
}
1
2
3
4
5
6
PROBLEM 1
LIKE
LIKE %buty%
OR
LIKE %skórzane%
"bool": {
"must": [
{
"match": {
"name": {
"query": "buty skórzane",
"operator": "or"
}
}
}
],
"should": [
{
"match": {
"name": {
"query": "buty skórzane",
"operator": "and"
}
}
}
]
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
LIKE %buty%
AND
LIKE %skórzane%
PROBLEM 2
ZBYT SKOMPLIKOWANA
PROBLEM 2
ZBYT SKOMPLIKOWANA
PROBLEM 2
ZBYT SKOMPLIKOWANA
PROBLEM 2
ZBYT SKOMPLIKOWANA
PROBLEM 2
ZBYT SKOMPLIKOWANA
PROBLEM 2
ZBYT SKOMPLIKOWANA
INDEX 1 INDEX 2
PROBLEM 2
ZBYT SKOMPLIKOWANA
PROBLEM 3
LITERÓWKI
PROBLEM 3
LITERÓWKI
PROBLEM 3
LITERÓWKI
odległość = 1
PROBLEM 3
LITERÓWKI
-- Levenshtein function
-- Source: https://openquery.com.au/blog/lev
-- Levenshtein reference: http://en.wikipedi
-- Arjen note: because the levenshtein value
-- thus the maximum string length this imple
DELIMITER $$
DROP FUNCTION IF EXISTS LEVENSHTEIN $$
CREATE FUNCTION LEVENSHTEIN(s1 VARCHAR(255)
RETURNS INT
DETERMINISTIC
BEGIN
DECLARE s1_len, s2_len, i, j, c, c_temp, cos
DECLARE s1_char CHAR CHARACTER SET utf8;
-- max strlen=255 for this function
DECLARE cv0, cv1 VARBINARY(256);
SET s1_len = CHAR_LENGTH(s1),
s2_len = CHAR_LENGTH(s2),
cv1 = 0x00,
j = 1,
i = 1,
c = 0;
IF (s1 = s2) THEN
RETURN (0);
ELSEIF (s1_len = 0) THEN
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
SELECT * FROM `catalog_product_flat_1` WHE
`name` LIKE '%_agento%' OR
`name` LIKE '%M_gento%' OR
`name` LIKE '%Ma_ento%' OR
`name` LIKE '%Mag_nto%' OR
`name` LIKE '%Mage_to%' OR
`name` LIKE '%Magen_o%' OR
`name` LIKE '%Magent_%' OR
`name` LIKE '%_Magento%' OR
`name` LIKE '%M_agento%' OR
`name` LIKE '%Ma_gento%' OR
`name` LIKE '%Mag_ento%' OR
`name` LIKE '%Mage_nto%' OR
`name` LIKE '%Magen_to%' OR
`name` LIKE '%Magent_o%' OR
`name` LIKE '%Magento_%' OR
`name` LIKE '%agento%' OR
`name` LIKE '%Mgento%' OR
`name` LIKE '%Maento%' OR
`name` LIKE '%Magnto%' OR
`name` LIKE '%Mageto%' OR
`name` LIKE '%Mageno%' OR
`name` LIKE '%Magent%'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Funkcja LIKE
PROBLEM 3
LITERÓWKI
"fuzziness": 1
"match": {1
"name": {2
"query": "buty skorzane",3
4
}5
}6
PROBLEM 4
JEZYKI
PROBLEM 4
JEZYKI
SKÓRA
SKÓRZANE
SKÓRY
PROBLEM 4
JEZYKI
PROBLEM 4
JEZYKI
"analyzer": "polish",
GET _analyze1
{2
3
"text": ["Anna miała czerwoną sukienkę."]4
}5
PROBLEM 4
JEZYKI
"analyzer": "polish",
GET _analyze1
{2
3
"text": ["Anna miała czerwoną sukienkę."]4
}5
"text": ["Anna miała czerwoną sukienkę."]
GET _analyze1
{2
"analyzer": "polish",3
4
}5
PROBLEM 4
JEZYKI
"analyzer": "polish",
GET _analyze1
{2
3
"text": ["Anna miała czerwoną sukienkę."]4
}5
"text": ["Anna miała czerwoną sukienkę."]
GET _analyze1
{2
"analyzer": "polish",3
4
}5
GET _analyze
{
"analyzer": "polish",
"text": ["Anna miała czerwoną sukienkę."]
}
1
2
3
4
5
PROBLEM 5
100 MS
PROBLEM 5
100 MS
PROBLEM 5
100 MS
PROBLEM 5
100 MS
PROBLEM 5
100 MS
PROBLEM 5
100 MS
PROBLEM 5
100 MS
DZIĘKUJĘ ;)
Marcin
Lewandowski
kurs-elasticsearch.pl
PYTANIA ??
Marcin
Lewandowski
kurs-elasticsearch.pl

More Related Content

What's hot

17. uud 45 + amandemen
17. uud 45 + amandemen17. uud 45 + amandemen
17. uud 45 + amandemenKhusny Kamal
 
Parameter estimation for the truncated weibull model using the ordinary diffe...
Parameter estimation for the truncated weibull model using the ordinary diffe...Parameter estimation for the truncated weibull model using the ordinary diffe...
Parameter estimation for the truncated weibull model using the ordinary diffe...Hideo Hirose
 
Unpacking GLEs Presentation
Unpacking GLEs PresentationUnpacking GLEs Presentation
Unpacking GLEs Presentationtblanchet
 
삼성인터넷쇼핑몰을통해본국내전자상거래
삼성인터넷쇼핑몰을통해본국내전자상거래삼성인터넷쇼핑몰을통해본국내전자상거래
삼성인터넷쇼핑몰을통해본국내전자상거래ㅁㅁㅁ
 
Distracter Analysis - Index of Effectiveness
Distracter Analysis - Index of EffectivenessDistracter Analysis - Index of Effectiveness
Distracter Analysis - Index of EffectivenessMr. Ronald Quileste, PhD
 
Etats financiers des sociétés
Etats financiers des sociétés Etats financiers des sociétés
Etats financiers des sociétés Lachgar Abdellah
 
Toan t1 chuong 8-1_tich_phanhailop_4
Toan t1   chuong 8-1_tich_phanhailop_4Toan t1   chuong 8-1_tich_phanhailop_4
Toan t1 chuong 8-1_tich_phanhailop_4Informatics and Maths
 
My Sister's Keeper Variety
My Sister's Keeper VarietyMy Sister's Keeper Variety
My Sister's Keeper VarietyScott Goldman
 
4. alps computerize motor rewind
4. alps computerize motor rewind4. alps computerize motor rewind
4. alps computerize motor rewindalpsmsi
 
operasi unit kontrol
operasi unit kontroloperasi unit kontrol
operasi unit kontrolLela Warni
 

What's hot (15)

06uud1945amandemen
06uud1945amandemen06uud1945amandemen
06uud1945amandemen
 
17. uud 45 + amandemen
17. uud 45 + amandemen17. uud 45 + amandemen
17. uud 45 + amandemen
 
Parameter estimation for the truncated weibull model using the ordinary diffe...
Parameter estimation for the truncated weibull model using the ordinary diffe...Parameter estimation for the truncated weibull model using the ordinary diffe...
Parameter estimation for the truncated weibull model using the ordinary diffe...
 
Unpacking GLEs Presentation
Unpacking GLEs PresentationUnpacking GLEs Presentation
Unpacking GLEs Presentation
 
삼성인터넷쇼핑몰을통해본국내전자상거래
삼성인터넷쇼핑몰을통해본국내전자상거래삼성인터넷쇼핑몰을통해본국내전자상거래
삼성인터넷쇼핑몰을통해본국내전자상거래
 
MOB presentació general
MOB presentació generalMOB presentació general
MOB presentació general
 
Anexo I
Anexo IAnexo I
Anexo I
 
Distracter Analysis - Index of Effectiveness
Distracter Analysis - Index of EffectivenessDistracter Analysis - Index of Effectiveness
Distracter Analysis - Index of Effectiveness
 
Analisis estructural parte 3
Analisis estructural parte 3Analisis estructural parte 3
Analisis estructural parte 3
 
Etats financiers des sociétés
Etats financiers des sociétés Etats financiers des sociétés
Etats financiers des sociétés
 
Toan t1 chuong 8-1_tich_phanhailop_4
Toan t1   chuong 8-1_tich_phanhailop_4Toan t1   chuong 8-1_tich_phanhailop_4
Toan t1 chuong 8-1_tich_phanhailop_4
 
My Sister's Keeper Variety
My Sister's Keeper VarietyMy Sister's Keeper Variety
My Sister's Keeper Variety
 
Plan1
Plan1Plan1
Plan1
 
4. alps computerize motor rewind
4. alps computerize motor rewind4. alps computerize motor rewind
4. alps computerize motor rewind
 
operasi unit kontrol
operasi unit kontroloperasi unit kontrol
operasi unit kontrol
 

Similar to Tworzenie wyszukiwarek w elastic search

Abordagem socio cultural-da_alimentacao_no_egito-libre
Abordagem socio cultural-da_alimentacao_no_egito-libreAbordagem socio cultural-da_alimentacao_no_egito-libre
Abordagem socio cultural-da_alimentacao_no_egito-libreEdson de Souza Couto
 
презентация итог коррект
презентация итог корректпрезентация итог коррект
презентация итог корректAlexandra Kiseleva
 
презентация итог коррект
презентация итог корректпрезентация итог коррект
презентация итог корректAlexandra Kiseleva
 
презентация итог коррект
презентация итог корректпрезентация итог коррект
презентация итог корректAlexandra Kiseleva
 
Gloria Aluminium India Pvt ltd Manish
Gloria Aluminium India Pvt ltd Manish Gloria Aluminium India Pvt ltd Manish
Gloria Aluminium India Pvt ltd Manish Gloria Alluminium
 
Can Confidence Assessment Enhance Traditional Multiple-Choice Testing?
Can Confidence Assessment Enhance Traditional Multiple-Choice Testing?Can Confidence Assessment Enhance Traditional Multiple-Choice Testing?
Can Confidence Assessment Enhance Traditional Multiple-Choice Testing?Martin Ebner
 
What Problem Is Your Startup Solving?
What Problem Is Your Startup Solving?What Problem Is Your Startup Solving?
What Problem Is Your Startup Solving?Zach Nies
 
Web應用程式以及資安問題的探討
Web應用程式以及資安問題的探討Web應用程式以及資安問題的探討
Web應用程式以及資安問題的探討Mu Chun Wang
 
Mega Media Presentation
Mega Media PresentationMega Media Presentation
Mega Media PresentationShendi Bri
 
Ridehailing vs Traditional transportation: Demand difference in Vietnam
Ridehailing vs Traditional transportation: Demand difference in VietnamRidehailing vs Traditional transportation: Demand difference in Vietnam
Ridehailing vs Traditional transportation: Demand difference in VietnamQ&Me Vietnam Market Research
 
Alimentos suplementarios-para-rumiantes
Alimentos suplementarios-para-rumiantesAlimentos suplementarios-para-rumiantes
Alimentos suplementarios-para-rumiantesPedro Benitez
 
Architectural portfolio of Narcisse Tshituka
Architectural portfolio of Narcisse TshitukaArchitectural portfolio of Narcisse Tshituka
Architectural portfolio of Narcisse TshitukaNarcisseTshituka
 
Os Pruett Sessionnotes
Os Pruett SessionnotesOs Pruett Sessionnotes
Os Pruett Sessionnotesoscon2007
 
Julius Joseph-SAP BASIS Resume
Julius Joseph-SAP BASIS ResumeJulius Joseph-SAP BASIS Resume
Julius Joseph-SAP BASIS ResumeJulius Joseph
 
Colección Primavera de Blaubloom
Colección Primavera de BlaubloomColección Primavera de Blaubloom
Colección Primavera de BlaubloomMASmedia
 
Data and Behavior Change: Is Seeing Believing, and is That Enough?
Data and Behavior Change: Is Seeing Believing, and is That Enough?Data and Behavior Change: Is Seeing Believing, and is That Enough?
Data and Behavior Change: Is Seeing Believing, and is That Enough?Sustainable Brands
 
Presentación de Jeffrey Hayzlett Conecta 2012
Presentación de Jeffrey Hayzlett Conecta 2012Presentación de Jeffrey Hayzlett Conecta 2012
Presentación de Jeffrey Hayzlett Conecta 2012IAB México
 
NASA Open Source Proceedings
NASA Open Source ProceedingsNASA Open Source Proceedings
NASA Open Source ProceedingsNick Skytland
 
What the !@#$ is UX? A fun and concise introduction
What the !@#$ is UX? A fun and concise introductionWhat the !@#$ is UX? A fun and concise introduction
What the !@#$ is UX? A fun and concise introductionSean Buch
 

Similar to Tworzenie wyszukiwarek w elastic search (20)

Abordagem socio cultural-da_alimentacao_no_egito-libre
Abordagem socio cultural-da_alimentacao_no_egito-libreAbordagem socio cultural-da_alimentacao_no_egito-libre
Abordagem socio cultural-da_alimentacao_no_egito-libre
 
презентация итог коррект
презентация итог корректпрезентация итог коррект
презентация итог коррект
 
презентация итог коррект
презентация итог корректпрезентация итог коррект
презентация итог коррект
 
презентация итог коррект
презентация итог корректпрезентация итог коррект
презентация итог коррект
 
Gloria Aluminium India Pvt ltd Manish
Gloria Aluminium India Pvt ltd Manish Gloria Aluminium India Pvt ltd Manish
Gloria Aluminium India Pvt ltd Manish
 
Can Confidence Assessment Enhance Traditional Multiple-Choice Testing?
Can Confidence Assessment Enhance Traditional Multiple-Choice Testing?Can Confidence Assessment Enhance Traditional Multiple-Choice Testing?
Can Confidence Assessment Enhance Traditional Multiple-Choice Testing?
 
What Problem Is Your Startup Solving?
What Problem Is Your Startup Solving?What Problem Is Your Startup Solving?
What Problem Is Your Startup Solving?
 
ESWC 2009 Lightning Talks
ESWC 2009 Lightning TalksESWC 2009 Lightning Talks
ESWC 2009 Lightning Talks
 
Web應用程式以及資安問題的探討
Web應用程式以及資安問題的探討Web應用程式以及資安問題的探討
Web應用程式以及資安問題的探討
 
Mega Media Presentation
Mega Media PresentationMega Media Presentation
Mega Media Presentation
 
Ridehailing vs Traditional transportation: Demand difference in Vietnam
Ridehailing vs Traditional transportation: Demand difference in VietnamRidehailing vs Traditional transportation: Demand difference in Vietnam
Ridehailing vs Traditional transportation: Demand difference in Vietnam
 
Alimentos suplementarios-para-rumiantes
Alimentos suplementarios-para-rumiantesAlimentos suplementarios-para-rumiantes
Alimentos suplementarios-para-rumiantes
 
Architectural portfolio of Narcisse Tshituka
Architectural portfolio of Narcisse TshitukaArchitectural portfolio of Narcisse Tshituka
Architectural portfolio of Narcisse Tshituka
 
Os Pruett Sessionnotes
Os Pruett SessionnotesOs Pruett Sessionnotes
Os Pruett Sessionnotes
 
Julius Joseph-SAP BASIS Resume
Julius Joseph-SAP BASIS ResumeJulius Joseph-SAP BASIS Resume
Julius Joseph-SAP BASIS Resume
 
Colección Primavera de Blaubloom
Colección Primavera de BlaubloomColección Primavera de Blaubloom
Colección Primavera de Blaubloom
 
Data and Behavior Change: Is Seeing Believing, and is That Enough?
Data and Behavior Change: Is Seeing Believing, and is That Enough?Data and Behavior Change: Is Seeing Believing, and is That Enough?
Data and Behavior Change: Is Seeing Believing, and is That Enough?
 
Presentación de Jeffrey Hayzlett Conecta 2012
Presentación de Jeffrey Hayzlett Conecta 2012Presentación de Jeffrey Hayzlett Conecta 2012
Presentación de Jeffrey Hayzlett Conecta 2012
 
NASA Open Source Proceedings
NASA Open Source ProceedingsNASA Open Source Proceedings
NASA Open Source Proceedings
 
What the !@#$ is UX? A fun and concise introduction
What the !@#$ is UX? A fun and concise introductionWhat the !@#$ is UX? A fun and concise introduction
What the !@#$ is UX? A fun and concise introduction
 

More from Anna Ossowski

Load testing Elasticsearch with Gatling
Load testing Elasticsearch with GatlingLoad testing Elasticsearch with Gatling
Load testing Elasticsearch with GatlingAnna Ossowski
 
How Elastic Security Meets SOC Needs
How Elastic Security Meets SOC NeedsHow Elastic Security Meets SOC Needs
How Elastic Security Meets SOC NeedsAnna Ossowski
 
Elastic Morocco Meetup Nov 2020
Elastic Morocco Meetup Nov 2020Elastic Morocco Meetup Nov 2020
Elastic Morocco Meetup Nov 2020Anna Ossowski
 
Elastic stockholm-meetup
Elastic stockholm-meetupElastic stockholm-meetup
Elastic stockholm-meetupAnna Ossowski
 
Elastic Morocco user group meetup June
Elastic Morocco user group meetup JuneElastic Morocco user group meetup June
Elastic Morocco user group meetup JuneAnna Ossowski
 
Elastic Morocco user group meetup July
Elastic Morocco user group meetup JulyElastic Morocco user group meetup July
Elastic Morocco user group meetup JulyAnna Ossowski
 
Visualise Covid-19 Data Using the Elastic Stack
Visualise Covid-19 Data Using the Elastic StackVisualise Covid-19 Data Using the Elastic Stack
Visualise Covid-19 Data Using the Elastic StackAnna Ossowski
 
Elastic stack upgrade
Elastic stack upgradeElastic stack upgrade
Elastic stack upgradeAnna Ossowski
 
Elastic South Africa Meetup September 2020
Elastic South Africa Meetup September 2020Elastic South Africa Meetup September 2020
Elastic South Africa Meetup September 2020Anna Ossowski
 
Elastic South Africa Meetup July 2020
Elastic South Africa Meetup July 2020Elastic South Africa Meetup July 2020
Elastic South Africa Meetup July 2020Anna Ossowski
 
Elastic South Africa Meetup June 2020
Elastic South Africa Meetup June 2020Elastic South Africa Meetup June 2020
Elastic South Africa Meetup June 2020Anna Ossowski
 
Elastic South Africa Meetup April 2020
Elastic South Africa Meetup April 2020Elastic South Africa Meetup April 2020
Elastic South Africa Meetup April 2020Anna Ossowski
 
[Virtual Meetup] Using Elasticsearch as a Time-Series Database in the Endpoin...
[Virtual Meetup] Using Elasticsearch as a Time-Series Database in the Endpoin...[Virtual Meetup] Using Elasticsearch as a Time-Series Database in the Endpoin...
[Virtual Meetup] Using Elasticsearch as a Time-Series Database in the Endpoin...Anna Ossowski
 
Tracking and visualizing COVID-19 with Elastic stack
Tracking and visualizing COVID-19 with Elastic stackTracking and visualizing COVID-19 with Elastic stack
Tracking and visualizing COVID-19 with Elastic stackAnna Ossowski
 

More from Anna Ossowski (14)

Load testing Elasticsearch with Gatling
Load testing Elasticsearch with GatlingLoad testing Elasticsearch with Gatling
Load testing Elasticsearch with Gatling
 
How Elastic Security Meets SOC Needs
How Elastic Security Meets SOC NeedsHow Elastic Security Meets SOC Needs
How Elastic Security Meets SOC Needs
 
Elastic Morocco Meetup Nov 2020
Elastic Morocco Meetup Nov 2020Elastic Morocco Meetup Nov 2020
Elastic Morocco Meetup Nov 2020
 
Elastic stockholm-meetup
Elastic stockholm-meetupElastic stockholm-meetup
Elastic stockholm-meetup
 
Elastic Morocco user group meetup June
Elastic Morocco user group meetup JuneElastic Morocco user group meetup June
Elastic Morocco user group meetup June
 
Elastic Morocco user group meetup July
Elastic Morocco user group meetup JulyElastic Morocco user group meetup July
Elastic Morocco user group meetup July
 
Visualise Covid-19 Data Using the Elastic Stack
Visualise Covid-19 Data Using the Elastic StackVisualise Covid-19 Data Using the Elastic Stack
Visualise Covid-19 Data Using the Elastic Stack
 
Elastic stack upgrade
Elastic stack upgradeElastic stack upgrade
Elastic stack upgrade
 
Elastic South Africa Meetup September 2020
Elastic South Africa Meetup September 2020Elastic South Africa Meetup September 2020
Elastic South Africa Meetup September 2020
 
Elastic South Africa Meetup July 2020
Elastic South Africa Meetup July 2020Elastic South Africa Meetup July 2020
Elastic South Africa Meetup July 2020
 
Elastic South Africa Meetup June 2020
Elastic South Africa Meetup June 2020Elastic South Africa Meetup June 2020
Elastic South Africa Meetup June 2020
 
Elastic South Africa Meetup April 2020
Elastic South Africa Meetup April 2020Elastic South Africa Meetup April 2020
Elastic South Africa Meetup April 2020
 
[Virtual Meetup] Using Elasticsearch as a Time-Series Database in the Endpoin...
[Virtual Meetup] Using Elasticsearch as a Time-Series Database in the Endpoin...[Virtual Meetup] Using Elasticsearch as a Time-Series Database in the Endpoin...
[Virtual Meetup] Using Elasticsearch as a Time-Series Database in the Endpoin...
 
Tracking and visualizing COVID-19 with Elastic stack
Tracking and visualizing COVID-19 with Elastic stackTracking and visualizing COVID-19 with Elastic stack
Tracking and visualizing COVID-19 with Elastic stack
 

Recently uploaded

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
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
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
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
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024The Digital Insurer
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbuapidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
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
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 

Recently uploaded (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
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
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
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...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
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
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 

Tworzenie wyszukiwarek w elastic search