SlideShare ist ein Scribd-Unternehmen logo
1 von 54
Downloaden Sie, um offline zu lesen
Demystifying
Luís Cobucci

@lcobucci
https://goo.gl/oZPuRc
cache in Doctrine ORM
Reliability
https://goo.gl/1shwsY
Maintainability
https://goo.gl/D4DvKC
Scalability
https://goo.gl/M67mS8
Trade-offs
https://goo.gl/L7YdSp
Minions of users!
https://goo.gl/7MAkHZ
“ There are two hard things in
Computer Science: cache invalidation,
naming things, and off-by-one errors
Common sense
Luís Cobucci

@lcobucci
“ a hardware or software component
that stores data so future requests for
that data can be served faster; the data
stored in a cache might be the result of
an earlier computation, or the duplicate
of data stored elsewhere.
Cache (computing) - Wikipedia
Our software
Cache
External API
Our software
Cache
External API1. Give me
“external.result”
Our software
Cache
External API
2. Cache miss
1. Give me
“external.result”
Our software
Cache
External API
2. Cache miss
3. Give me
data1. Give me
“external.result”
Our software
Cache
External API
2. Cache miss
3. Give me
data
4. There you
go
1. Give me
“external.result”
Our software
Cache
External API
2. Cache miss
1. Give me
“external.result”
3. Give me
data
4. There you
go
5. Store
“external.result”
Our software
Cache
External API
2. Cache miss
1. Give me
“external.result”
3. Give me
data
4. There you
go
5. Store
“external.result” 6. Stored!
Our software
Cache
External API1. Give me
“external.result”
Our software
Cache
External API
2. Cache hit!
1. Give me
“external.result”
Doctrine ORM?
https://goo.gl/xCBz84
Template
Message
ConsumerCampaign
1
1
1
*
*
*
Template
Message
ConsumerCampaign
1
1
1
*
*
*
Template
Message
ConsumerCampaign
1
1
1
*
*
*
Order
matters
Template
Message
ConsumerCampaign
1
1
1
*
*
*
INSERT INTO consumer (name, email)

VALUES (“Luís Cobucci”, “luis@me.com”);

SET @consumer_id = LAST_INSERT_ID();
Template
Message
ConsumerCampaign
1
1
1
*
*
*
INSERT INTO consumer (name, email)

VALUES (“Luís Cobucci”, “luis@me.com”);

SET @consumer_id = LAST_INSERT_ID();
INSERT INTO template (name, body)

VALUES (“Template 1”, “blah… blah… blah…”);
Template
Message
ConsumerCampaign
1
1
1
*
*
*
INSERT INTO consumer (name, email)

VALUES (“Luís Cobucci”, “luis@me.com”);

SET @consumer_id = LAST_INSERT_ID();
INSERT INTO template (name, body)

VALUES (“Template 1”, “blah… blah… blah…”);
INSERT INTO campaign (title, template_id, message)

VALUES (“Test”, LAST_INSERT_ID(), “blah… blah… blah…”);
Template
Message
ConsumerCampaign
1
1
1
*
*
*
INSERT INTO consumer (name, email)

VALUES (“Luís Cobucci”, “luis@me.com”);

SET @consumer_id = LAST_INSERT_ID();
INSERT INTO template (name, body)

VALUES (“Template 1”, “blah… blah… blah…”);
INSERT INTO campaign (title, template_id, message)

VALUES (“Test”, LAST_INSERT_ID(), “blah… blah… blah…”);
INSERT INTO message (campaign_id, consumer_id, sent)

VALUES (LAST_INSERT_ID(), @consumer_id, FALSE);
Template
Message
ConsumerCampaign
1
1
1
*
*
*
INSERT INTO consumer (name, email)

VALUES (“Luís Cobucci”, “luis@me.com”);

SET @consumer_id = LAST_INSERT_ID();
INSERT INTO template (name, body)

VALUES (“Template 1”, “blah… blah… blah…”);
INSERT INTO campaign (title, template_id, message)

VALUES (“Test”, LAST_INSERT_ID(), “blah… blah… blah…”);
INSERT INTO message (campaign_id, consumer_id, sent)

VALUES (LAST_INSERT_ID(), @consumer_id, FALSE);
Don’t forget to use a
transaction!
EntityManager
persist()
flush()
find()
remove()
declare(strict_types=1);
$consumer = new Consumer('Luís Cobucci', 'luis@me.com');

$template = new Template('Template 1', 'blah… blah… blah…');

$campaign = new Campaign($template, 'Test', 'blah… blah… blah…');

$message = new Message($campaign, $consumer, false);



$entityManager->persist($consumer);
$entityManager->persist($template);
$entityManager->persist($campaign);
$entityManager->persist($message);
$entityManager->flush();
declare(strict_types=1);
$consumer = $entityManager->find('Consumer', 2);
$campaign = $entityManager->find('Campaign', 1);



$message = new Message($campaign, $consumer, false);



$entityManager->persist($message);
$entityManager->flush();
http://goo.gl/gH0hsx
Amazing, right?
Metadata
Result set
Query
Second Level Cache
Metadata
Result set
Query
Second Level Cache
/** @ORMEntity */
class Consumer

{

/** 

* @ORMId

* @ORMGeneratedValue 

* @ORMColumn(type="integer")

*/
private $id;



/** @ORMColumn(type="string") */

private $name;



/** @ORMColumn(type="string") */

private $email;
}
Metadata
Result set
Query
Second Level Cache
SELECT consumer FROM Consumer consumer;
SELECT consumer FROM Consumer consumer;
SELECT

c0.id AS id_0,

c0.name AS name_1,
c0.email AS email_2,

FROM consumer c0;
Metadata
Result set
Query
Second Level Cache
$query = 'SELECT COUNT(m) FROM Message m WHERE m.user = :user';


$count = $entityManager->createQuery($query)

->setParameter('user', 1)

->getSingleScalarResult();
$query = 'SELECT COUNT(m) FROM Message m WHERE m.user = :user';


$count = $entityManager->createQuery($query)

->setParameter('user', 1)

->useResultCache(true)

->useResultCacheLifeTime(3600)

->getSingleScalarResult();
Metadata
Result set
Query
Second Level Cache
https://goo.gl/cuLYT9
Bugs…
https://goo.gl/1y3fvm
Bugs…
https://goo.gl/D3Gw7e
Bugs…
EntityManager UnitOfWork DB
EntityManager UnitOfWork L2C
DB
/**

* @ORMEntity

* @ORMCache(usage="NONSTRICT_READ_WRITE")

*/
class Consumer

{

// …

}
/**

* @ORMEntity

* @ORMCache(usage="NONSTRICT_READ_WRITE")

*/
class Consumer

{

// …

}
READ_ONLY

NONSTRICT_READ_WRITE

READ_WRITE
/**

* @ORMEntity

* @ORMCache(usage="NONSTRICT_READ_WRITE")

*/
class Message

{

// …



/**

* @ORMManyToOne(targetEntity="Consumer")
* @ORMCache(usage="READ_ONLY")
*/

private $consumer;


// …

}
$query = ‘SELECT m FROM Message m WHERE m.user = :user';


$messages = $entityManager->createQuery($query)

->setParameter('user', 1)

->setCacheable(true)

->getResult();
https://goo.gl/bGP8u8
Warming up
Awesome tool!
https://goo.gl/8pbG3y
Demystifying
Luís Cobucci

@lcobucci
https://goo.gl/oZPuRc
cache in Doctrine ORM
Thanks!
@lcobucci

Weitere ähnliche Inhalte

Ähnlich wie Demystifying cache in doctrine ORM

PHP - Getting good with cookies
PHP - Getting good with cookiesPHP - Getting good with cookies
PHP - Getting good with cookiesFirdaus Adib
 
Introduction to Google Cloud platform technologies
Introduction to Google Cloud platform technologiesIntroduction to Google Cloud platform technologies
Introduction to Google Cloud platform technologiesChris Schalk
 
Just fire lti at it!
Just fire lti at it!Just fire lti at it!
Just fire lti at it!kingmook
 
 Exchange migration of legacy public folders to 2013
 Exchange   migration of legacy public folders to 2013 Exchange   migration of legacy public folders to 2013
 Exchange migration of legacy public folders to 2013Gary Jackson
 
Enhancing Web-Security with Stronger Captchas
Enhancing Web-Security with Stronger CaptchasEnhancing Web-Security with Stronger Captchas
Enhancing Web-Security with Stronger CaptchasEditor IJCATR
 
Having Fun Building Web Applications (Day 2 slides)
Having Fun Building Web Applications (Day 2 slides)Having Fun Building Web Applications (Day 2 slides)
Having Fun Building Web Applications (Day 2 slides)Clarence Ngoh
 
A Novel Secure Cloud SAAS Integration for User Authenticated Information
A Novel Secure Cloud SAAS Integration for User Authenticated InformationA Novel Secure Cloud SAAS Integration for User Authenticated Information
A Novel Secure Cloud SAAS Integration for User Authenticated Informationijtsrd
 
12-security.ppt - PHP and Arabic Language - Index
12-security.ppt - PHP and Arabic Language - Index12-security.ppt - PHP and Arabic Language - Index
12-security.ppt - PHP and Arabic Language - Indexwebhostingguy
 
Andrew and Zac RVA-Beyond-Automated-Testing-2016.ppt
Andrew and Zac RVA-Beyond-Automated-Testing-2016.pptAndrew and Zac RVA-Beyond-Automated-Testing-2016.ppt
Andrew and Zac RVA-Beyond-Automated-Testing-2016.pptBUSHRASHAIKH804312
 
Designing CakePHP plugins for consuming APIs
Designing CakePHP plugins for consuming APIsDesigning CakePHP plugins for consuming APIs
Designing CakePHP plugins for consuming APIsNeil Crookes
 
Brian hogg word camp preparing a plugin for translation
Brian hogg   word camp preparing a plugin for translationBrian hogg   word camp preparing a plugin for translation
Brian hogg word camp preparing a plugin for translationwcto2017
 
CyberArk Impact 2017 - REST for the Rest of Us
CyberArk Impact 2017 - REST for the Rest of UsCyberArk Impact 2017 - REST for the Rest of Us
CyberArk Impact 2017 - REST for the Rest of UsJoe Garcia
 

Ähnlich wie Demystifying cache in doctrine ORM (20)

PHP - Getting good with cookies
PHP - Getting good with cookiesPHP - Getting good with cookies
PHP - Getting good with cookies
 
Introduction to Google Cloud platform technologies
Introduction to Google Cloud platform technologiesIntroduction to Google Cloud platform technologies
Introduction to Google Cloud platform technologies
 
PHP 2
PHP 2PHP 2
PHP 2
 
Just fire lti at it!
Just fire lti at it!Just fire lti at it!
Just fire lti at it!
 
 Exchange migration of legacy public folders to 2013
 Exchange   migration of legacy public folders to 2013 Exchange   migration of legacy public folders to 2013
 Exchange migration of legacy public folders to 2013
 
SEA Open Hack - YAP
SEA Open Hack - YAPSEA Open Hack - YAP
SEA Open Hack - YAP
 
Enhancing Web-Security with Stronger Captchas
Enhancing Web-Security with Stronger CaptchasEnhancing Web-Security with Stronger Captchas
Enhancing Web-Security with Stronger Captchas
 
2018 03 20_biological_databases_part3
2018 03 20_biological_databases_part32018 03 20_biological_databases_part3
2018 03 20_biological_databases_part3
 
Having Fun Building Web Applications (Day 2 slides)
Having Fun Building Web Applications (Day 2 slides)Having Fun Building Web Applications (Day 2 slides)
Having Fun Building Web Applications (Day 2 slides)
 
4 php-advanced
4 php-advanced4 php-advanced
4 php-advanced
 
YAP / Open Mail Overview
YAP / Open Mail OverviewYAP / Open Mail Overview
YAP / Open Mail Overview
 
A Novel Secure Cloud SAAS Integration for User Authenticated Information
A Novel Secure Cloud SAAS Integration for User Authenticated InformationA Novel Secure Cloud SAAS Integration for User Authenticated Information
A Novel Secure Cloud SAAS Integration for User Authenticated Information
 
12-security.ppt - PHP and Arabic Language - Index
12-security.ppt - PHP and Arabic Language - Index12-security.ppt - PHP and Arabic Language - Index
12-security.ppt - PHP and Arabic Language - Index
 
Security.ppt
Security.pptSecurity.ppt
Security.ppt
 
FP512 Cookies sessions
FP512 Cookies sessionsFP512 Cookies sessions
FP512 Cookies sessions
 
Andrew and Zac RVA-Beyond-Automated-Testing-2016.ppt
Andrew and Zac RVA-Beyond-Automated-Testing-2016.pptAndrew and Zac RVA-Beyond-Automated-Testing-2016.ppt
Andrew and Zac RVA-Beyond-Automated-Testing-2016.ppt
 
Designing CakePHP plugins for consuming APIs
Designing CakePHP plugins for consuming APIsDesigning CakePHP plugins for consuming APIs
Designing CakePHP plugins for consuming APIs
 
Brian hogg word camp preparing a plugin for translation
Brian hogg   word camp preparing a plugin for translationBrian hogg   word camp preparing a plugin for translation
Brian hogg word camp preparing a plugin for translation
 
CyberArk Impact 2017 - REST for the Rest of Us
CyberArk Impact 2017 - REST for the Rest of UsCyberArk Impact 2017 - REST for the Rest of Us
CyberArk Impact 2017 - REST for the Rest of Us
 
Session and cookies,get and post methods
Session and cookies,get and post methodsSession and cookies,get and post methods
Session and cookies,get and post methods
 

Kürzlich hochgeladen

MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...Jittipong Loespradit
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxAnnaArtyushina1
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...chiefasafspells
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park masabamasaba
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2
 
WSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationJuha-Pekka Tolvanen
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...masabamasaba
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2
 

Kürzlich hochgeladen (20)

MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
WSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaSWSO2CON 2024 Slides - Open Source to SaaS
WSO2CON 2024 Slides - Open Source to SaaS
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security Program
 

Demystifying cache in doctrine ORM