SlideShare une entreprise Scribd logo
1  sur  13
Использование MongoDB / Clojure ,[object Object],[object Object],Илья Обшадко, ENTARENA Inc.
Постановка проблемы March 03, 10 © ENTARENA, Inc. 2 ,[object Object],[object Object],[object Object]
Традиционное решение March 03, 10 © ENTARENA, Inc. 2 ,[object Object],[object Object],[object Object]
Enter MongoDB March 03, 10 © ENTARENA, Inc. 2 ,[object Object],[object Object],[object Object]
MongoDB: объекты March 03, 10 © ENTARENA, Inc. 2 ,[object Object],[object Object],[object Object]
MongoDB: коллекции March 03, 10 © ENTARENA, Inc. 2 ,[object Object],[object Object],[object Object]
MongoDB: JavaScript March 03, 10 © ENTARENA, Inc. 2 ,[object Object],$ bin/mongo > use mydb > record1 = { key1: ‘value1’, key2: [1, 2, 3] } > record2 = { key1: ‘value2’, key2: [4, 5, 6] } > db.mycoll.save ( record1 ) > db.mycoll.save ( record2 ) > db.mycoll.find() { "_id" : ObjectId("4b8eb748230f141638cae177"), "key1" : "value1", "key2" : [ 1, 2, 3 ] }{ "_id" : ObjectId("4b8eb74d230f141638cae178"), "key1" : "value2", "key2" : [ 4, 5, 6 ] } > db.mycoll.ensureIndex({key1: 1}) > db.mycoll.find({key1:'value1'}){ "_id" : ObjectId("4b8eb748230f141638cae177"), "key1" : "value1", "key2" : [ 1, 2, 3 ] } > db.mycoll.update({key1:'value2'}, {'$set':{key3:'some other data'}})> db.mycoll.find(){ "_id" : ObjectId("4b8eb748230f141638cae177"), "key1" : "value1", "key2" : [ 1, 2, 3 ] }{ "_id" : ObjectId("4b8eb74d230f141638cae178"), "key1" : "value2", "key2" : [ 4, 5, 6 ], "key3" : "some other data" }
MongoDB: построение схемы March 03, 10 © ENTARENA, Inc. 2 ,[object Object],[object Object],[object Object],[object Object]
Clojure: executive overview March 03, 10 © ENTARENA, Inc. 2 ,[object Object],[object Object],[object Object],[object Object]
Clojure: интеграция с MongoDB March 03, 10 © ENTARENA, Inc. 2 ,[object Object],[object Object],[object Object]
Clojure: MongoDB API March 03, 10 © ENTARENA, Inc. 2 ( defn  mongo-find  ( [ collection query skip limit ] ( let   [ result  ( . find  collection  ( native-to-dbobject query ) )   result  ( if  skip  ( . skip result skip )  result )     result  ( if  limit  ( . limit result limit )  result ) ]   ( map  dbobject-to-native    ( iterator-seq   ( . iterator result ) ) ) ) ) .... ( defn  dbobject-to-native  [ dbobject ] ( cond ( instance?  java.util.List dbobject ) ( into   []   ( map  dbobject-to-native dbobject ) ) ( instance?  com.mongodb.ObjectId dbobject ) ( str   *oid-prefix*   ( . toString dbobject ) ) ( instance?  com.mongodb.DBObject dbobject ) ( if   ( . get  dbobject  "$keyword" ) ( keyword   ( . get  dbobject  "$keyword" ) ) ( into   {} ( map  # ( let   [[ k v ]  % ]   ( vector   ( keyword  k )   ( dbobject-to-native v ) ) )  dbobject ) ) ) :default dbobject ) ) ....
Clojure: MongoDB API contd. March 03, 10 © ENTARENA, Inc. 2 ( defn  native-to-dbobject  [ data ] ( cond ( map?  data ) ( let   [ result  ( BasicDBObject. ) ] ( doseq   [[ k v ]  data ] ( . put result  ( if   ( keyword?  k )   ( name  k )   ( str  k ) ) ( native-to-dbobject v ) ) )   result ) ( vector?  data ) ( collection-to-dbobject data ) ( set?  data ) ( throw   ( IllegalArgumentException.  "sets are not supported by MongoDB, use vector" ) ) ( list?  data ) ( throw   ( IllegalArgumentException.  "lists are not supported by MongoDB, use vector" ) ) ( keyword?  data ) ( native-to-dbobject  { :$keyword   ( name  data ) } ) ( mongo-oid? data )   ( com.mongodb.ObjectId.  ( . substring data  ( . length  *oid-prefix* ) ) ) :default data ) )
Спасибо! Илья Обшадко, ENTARENA Inc. [email_address]

Contenu connexe

En vedette

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

En vedette (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Mongodb Keynote 20100304 Ilya Obshadko

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11. Clojure: MongoDB API March 03, 10 © ENTARENA, Inc. 2 ( defn mongo-find ( [ collection query skip limit ] ( let [ result ( . find collection ( native-to-dbobject query ) ) result ( if skip ( . skip result skip ) result ) result ( if limit ( . limit result limit ) result ) ] ( map dbobject-to-native ( iterator-seq ( . iterator result ) ) ) ) ) .... ( defn dbobject-to-native [ dbobject ] ( cond ( instance? java.util.List dbobject ) ( into [] ( map dbobject-to-native dbobject ) ) ( instance? com.mongodb.ObjectId dbobject ) ( str *oid-prefix* ( . toString dbobject ) ) ( instance? com.mongodb.DBObject dbobject ) ( if ( . get dbobject "$keyword" ) ( keyword ( . get dbobject "$keyword" ) ) ( into {} ( map # ( let [[ k v ] % ] ( vector ( keyword k ) ( dbobject-to-native v ) ) ) dbobject ) ) ) :default dbobject ) ) ....
  • 12. Clojure: MongoDB API contd. March 03, 10 © ENTARENA, Inc. 2 ( defn native-to-dbobject [ data ] ( cond ( map? data ) ( let [ result ( BasicDBObject. ) ] ( doseq [[ k v ] data ] ( . put result ( if ( keyword? k ) ( name k ) ( str k ) ) ( native-to-dbobject v ) ) ) result ) ( vector? data ) ( collection-to-dbobject data ) ( set? data ) ( throw ( IllegalArgumentException. "sets are not supported by MongoDB, use vector" ) ) ( list? data ) ( throw ( IllegalArgumentException. "lists are not supported by MongoDB, use vector" ) ) ( keyword? data ) ( native-to-dbobject { :$keyword ( name data ) } ) ( mongo-oid? data ) ( com.mongodb.ObjectId. ( . substring data ( . length *oid-prefix* ) ) ) :default data ) )
  • 13. Спасибо! Илья Обшадко, ENTARENA Inc. [email_address]