SlideShare uma empresa Scribd logo
1 de 17
What LINQ is aboutor, Playingwith LINQ, MongoDB, and someold new patterns for developers.or, How to injectfunctionalparadigms in imperativelanguagesor, parallelism made easy. WebWorkersCamp, 03/07/2010 Pierre Couzy – Microsoft France
Who are you ? Worked in the Microsoft space for 20 years Speaker, trainer, developer, architect, … Primarilyinterested in Web topics Identity, architecture, WS-*, interop, cloud, … Recentinterop/OSS activity Worked on drupal for Sql server project Works on automateddrupaltesting on Windows Speaker at major PHP events DrupalCon, PHP Forum, Symfony live blog.couzy.com / pierre.couzy@microsoft.com
Agenda LINQ More LINQ LINQ for MongoDB GoingParallel GoingDistributed Q&A Disclosure: This session is heavily Microsoft-Biased (which is to be expected, I work there)
LINQ : Why ? C# is an imperativelanguage Whichisnice Except for a few things Splitting data manipulation betweenyour code and your data store Coding data manipulation Applying new manipulation patterns to existing data
Clumsyc#example
Whatwe’dlikeis Express more intent, lessimplementation Easy composition Strongtyping This issubject to hot debate Be as declarative as possible within the limitsimposed by C#
From C# to LINQ
Things to notice Lazyevaluation If westepintothis code, wesee LINQ triggers itsmagic on demand Easy composition If weadd new clauses after the LINQ expression isbuilt but beforeit’sconsumed, wesimplymerge the additions to the existing expression So far, we’veworked on objects Whichis how manynaive LINQ implementationswork : synchronously pipelining methods calls on collections LINQ has an interesting twist Expression trees
Expression Trees and IQueryable Let’stake the sameexample and introduceAsQueryable() Uponexecution, wecan notice the compiler didn’teatour LINQ expression It’sstill in there, using a tree format (an AbstractSymbolTree) That treewillberesolvedatruntime In the Linq to Objects case, wegetexactly the samebehaviour.  The iteration pattern maystillbeyield-based, but thisisleft to IQueryable’simplementationdetails.
Playingwith expression trees Let’stackleLinq To SQL My expression treeisnowpushed to the database layer If I want to block the flow to SQL, I just have to insert a new node in the tree. Whichallows me to balance things Using C# patterns and methodswhen I wantthem Pushing to the databasewhatitdoes best
IQueryable goodies So, if I wantmythings to be LINQ aware, I caneither Buildsomemethods and let the IEnumerable<T> do its pure objectmagic (I stillgetlazyeval) Or, playwithIQueryable And do myowninterpretation of the tree Let’sseeMongoDB in LINQ
Strongly-typed interaction when querying and updating collections. Improved interface to send common Mongo commands (creating indices, getting all the existing dbs and collections, etc.). Ultra-fast de/serialization of BSON to .Net CLR types and back. LINQ-to-Mongo Support for Mono
LINQ Patterns Having a LINQ Expression isnice: youbasicallydelegate the execution to someoneelse’s code Plus, your LINQ Expressions have every good aspect youusuallyexpectfromfunctionalprogramming (ie, they are closures). So, they are perfectlysuited to parallelisation All you have to do isaddanothernode to the expression tree Demo : AsParallel()
WritingMapReduce in LINQ  public static IQueryable<R>  MapReduce<S,M,K,R>(this IQueryable<S> source,                                 Expression<Func<S,IEnumerable<M>>> mapper,                                 Expression<Func<M,K>> keySelector,                                 Expression<Func<K,IEnumerable<M>,R>> reducer){    return source.SelectMany(mapper).GroupBy(keySelector, reducer);} Notice that the callingsyntax : Source.MapReduce(lMapper, lKeySelector, lReducer)issimply a new nodethatcanbeinserted in a larger expression tree. This MapReducemethodcanrun on N coresusing PLINQ, or on X machines (and N cores per machine) usingDryadLINQ
Collection<T> collection; boolIsLegal(Key k);	 string Hash(Key); var results = from c in collection 	where IsLegal(c.key) 	select new { Hash(c.key), c.value}; DryadLINQ = LINQ + Dryad Vertexcode Queryplan (Dryad job) Data collection C# C# C# C# results
Parallel execution var logentries =         from line in logs where !line.StartsWith("#") select new LogEntry(line); var user =          from access in logentries where access.user.EndsWith(@"lfar") select access; var accesses = from access in user group access by access.page into pages select new UserPageCount("ulfar", pages.Key, pages.Count()); var htmAccesses = from access in accesses where access.page.EndsWith(".htm") orderby access.count descending select access;
Thanks.

Mais conteúdo relacionado

Destaque (9)

EventMachine
EventMachineEventMachine
EventMachine
 
1 query processing
1 query processing1 query processing
1 query processing
 
Query execution
Query executionQuery execution
Query execution
 
RxJs - Reactive Extensions for JavaScript
RxJs - Reactive Extensions for JavaScriptRxJs - Reactive Extensions for JavaScript
RxJs - Reactive Extensions for JavaScript
 
MySQL Query Optimization (Basics)
MySQL Query Optimization (Basics)MySQL Query Optimization (Basics)
MySQL Query Optimization (Basics)
 
Using Netezza Query Plan to Improve Performace
Using Netezza Query Plan to Improve PerformaceUsing Netezza Query Plan to Improve Performace
Using Netezza Query Plan to Improve Performace
 
Apache Hive Hook
Apache Hive HookApache Hive Hook
Apache Hive Hook
 
Query Processing and Optimisation - Lecture 10 - Introduction to Databases (1...
Query Processing and Optimisation - Lecture 10 - Introduction to Databases (1...Query Processing and Optimisation - Lecture 10 - Introduction to Databases (1...
Query Processing and Optimisation - Lecture 10 - Introduction to Databases (1...
 
Presto - Hadoop Conference Japan 2014
Presto - Hadoop Conference Japan 2014Presto - Hadoop Conference Japan 2014
Presto - Hadoop Conference Japan 2014
 

Semelhante a What linq is about

Designing A Project Using Java Programming
Designing A Project Using Java ProgrammingDesigning A Project Using Java Programming
Designing A Project Using Java Programming
Katy Allen
 

Semelhante a What linq is about (20)

TechDayConf Edition 1 - 2020
TechDayConf Edition 1 -  2020TechDayConf Edition 1 -  2020
TechDayConf Edition 1 - 2020
 
Open source Technology
Open source TechnologyOpen source Technology
Open source Technology
 
CNCF, State of Serverless & Project Nuclio
CNCF, State of Serverless & Project NuclioCNCF, State of Serverless & Project Nuclio
CNCF, State of Serverless & Project Nuclio
 
Metaflow: The ML Infrastructure at Netflix
Metaflow: The ML Infrastructure at NetflixMetaflow: The ML Infrastructure at Netflix
Metaflow: The ML Infrastructure at Netflix
 
.NET per la Data Science e oltre
.NET per la Data Science e oltre.NET per la Data Science e oltre
.NET per la Data Science e oltre
 
What does OOP stand for?
What does OOP stand for?What does OOP stand for?
What does OOP stand for?
 
NDC Sydney 2019 - Microservices for building an IDE – The innards of JetBrain...
NDC Sydney 2019 - Microservices for building an IDE – The innards of JetBrain...NDC Sydney 2019 - Microservices for building an IDE – The innards of JetBrain...
NDC Sydney 2019 - Microservices for building an IDE – The innards of JetBrain...
 
A Linux Enthusiast's Perspective on Microsoft OSS & Azure
A Linux Enthusiast's Perspective on Microsoft OSS & AzureA Linux Enthusiast's Perspective on Microsoft OSS & Azure
A Linux Enthusiast's Perspective on Microsoft OSS & Azure
 
From hello world to goodbye code
From hello world to goodbye codeFrom hello world to goodbye code
From hello world to goodbye code
 
CI back to basis
CI back to basisCI back to basis
CI back to basis
 
LAMP is so yesterday, MEAN is so tomorrow! :)
LAMP is so yesterday, MEAN is so tomorrow! :) LAMP is so yesterday, MEAN is so tomorrow! :)
LAMP is so yesterday, MEAN is so tomorrow! :)
 
Build 2019 Recap
Build 2019 RecapBuild 2019 Recap
Build 2019 Recap
 
Mini .net conf 2020
Mini .net conf 2020Mini .net conf 2020
Mini .net conf 2020
 
Going open source with small teams
Going open source with small teamsGoing open source with small teams
Going open source with small teams
 
ConFoo Montreal - Microservices for building an IDE - The innards of JetBrain...
ConFoo Montreal - Microservices for building an IDE - The innards of JetBrain...ConFoo Montreal - Microservices for building an IDE - The innards of JetBrain...
ConFoo Montreal - Microservices for building an IDE - The innards of JetBrain...
 
Developer Efficiency
Developer EfficiencyDeveloper Efficiency
Developer Efficiency
 
Designing A Project Using Java Programming
Designing A Project Using Java ProgrammingDesigning A Project Using Java Programming
Designing A Project Using Java Programming
 
Engineering muscle training interface
Engineering muscle training interfaceEngineering muscle training interface
Engineering muscle training interface
 
WannaEat: A computer vision-based, multi-platform restaurant lookup app
WannaEat: A computer vision-based, multi-platform restaurant lookup appWannaEat: A computer vision-based, multi-platform restaurant lookup app
WannaEat: A computer vision-based, multi-platform restaurant lookup app
 
React Conf 17 Recap
React Conf 17 RecapReact Conf 17 Recap
React Conf 17 Recap
 

Mais de LeTesteur (11)

Drupal en environnement microsoft
Drupal en environnement microsoftDrupal en environnement microsoft
Drupal en environnement microsoft
 
Développer et déployer WordPress en environnement microsoft
Développer et déployer WordPress en environnement microsoftDévelopper et déployer WordPress en environnement microsoft
Développer et déployer WordPress en environnement microsoft
 
Développer et déployer une application php maintenable
Développer et déployer une application php maintenableDévelopper et déployer une application php maintenable
Développer et déployer une application php maintenable
 
Web dev open door
Web dev   open doorWeb dev   open door
Web dev open door
 
Joomla Days 2011 Lyon
Joomla Days 2011 LyonJoomla Days 2011 Lyon
Joomla Days 2011 Lyon
 
Drupal in the cloud with Windows Azure
Drupal in the cloud with Windows AzureDrupal in the cloud with Windows Azure
Drupal in the cloud with Windows Azure
 
Php sous Windows - webcamps Paris
Php sous Windows - webcamps ParisPhp sous Windows - webcamps Paris
Php sous Windows - webcamps Paris
 
Web Matrix (Microsoft WebCamps Paris)
Web Matrix (Microsoft WebCamps Paris)Web Matrix (Microsoft WebCamps Paris)
Web Matrix (Microsoft WebCamps Paris)
 
PHP Forum 2010 : Php et microsoft
PHP Forum 2010 : Php et microsoftPHP Forum 2010 : Php et microsoft
PHP Forum 2010 : Php et microsoft
 
Eclipse day paris
Eclipse day parisEclipse day paris
Eclipse day paris
 
Comment approcherlecloud
Comment approcherlecloudComment approcherlecloud
Comment approcherlecloud
 

Último

TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc
 
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
FIDO Alliance
 
Microsoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdfMicrosoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdf
Overkill Security
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
FIDO Alliance
 

Último (20)

TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
TrustArc Webinar - Unified Trust Center for Privacy, Security, Compliance, an...
 
ChatGPT and Beyond - Elevating DevOps Productivity
ChatGPT and Beyond - Elevating DevOps ProductivityChatGPT and Beyond - Elevating DevOps Productivity
ChatGPT and Beyond - Elevating DevOps Productivity
 
State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!
 
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
Event-Driven Architecture Masterclass: Engineering a Robust, High-performance...
 
Generative AI Use Cases and Applications.pdf
Generative AI Use Cases and Applications.pdfGenerative AI Use Cases and Applications.pdf
Generative AI Use Cases and Applications.pdf
 
Portal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russePortal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russe
 
Simplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptxSimplifying Mobile A11y Presentation.pptx
Simplifying Mobile A11y Presentation.pptx
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
How to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cfHow to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cf
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...Hyatt driving innovation and exceptional customer experiences with FIDO passw...
Hyatt driving innovation and exceptional customer experiences with FIDO passw...
 
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
Observability Concepts EVERY Developer Should Know (DevOpsDays Seattle)
 
Design Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptxDesign Guidelines for Passkeys 2024.pptx
Design Guidelines for Passkeys 2024.pptx
 
Microsoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdfMicrosoft BitLocker Bypass Attack Method.pdf
Microsoft BitLocker Bypass Attack Method.pdf
 
WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024
 
JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptx
 
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptxHarnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
Harnessing Passkeys in the Battle Against AI-Powered Cyber Threats.pptx
 
The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...
The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...
The Ultimate Prompt Engineering Guide for Generative AI: Get the Most Out of ...
 
Vector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptxVector Search @ sw2con for slideshare.pptx
Vector Search @ sw2con for slideshare.pptx
 
Cyber Insurance - RalphGilot - Embry-Riddle Aeronautical University.pptx
Cyber Insurance - RalphGilot - Embry-Riddle Aeronautical University.pptxCyber Insurance - RalphGilot - Embry-Riddle Aeronautical University.pptx
Cyber Insurance - RalphGilot - Embry-Riddle Aeronautical University.pptx
 

What linq is about

  • 1. What LINQ is aboutor, Playingwith LINQ, MongoDB, and someold new patterns for developers.or, How to injectfunctionalparadigms in imperativelanguagesor, parallelism made easy. WebWorkersCamp, 03/07/2010 Pierre Couzy – Microsoft France
  • 2. Who are you ? Worked in the Microsoft space for 20 years Speaker, trainer, developer, architect, … Primarilyinterested in Web topics Identity, architecture, WS-*, interop, cloud, … Recentinterop/OSS activity Worked on drupal for Sql server project Works on automateddrupaltesting on Windows Speaker at major PHP events DrupalCon, PHP Forum, Symfony live blog.couzy.com / pierre.couzy@microsoft.com
  • 3. Agenda LINQ More LINQ LINQ for MongoDB GoingParallel GoingDistributed Q&A Disclosure: This session is heavily Microsoft-Biased (which is to be expected, I work there)
  • 4. LINQ : Why ? C# is an imperativelanguage Whichisnice Except for a few things Splitting data manipulation betweenyour code and your data store Coding data manipulation Applying new manipulation patterns to existing data
  • 6. Whatwe’dlikeis Express more intent, lessimplementation Easy composition Strongtyping This issubject to hot debate Be as declarative as possible within the limitsimposed by C#
  • 7. From C# to LINQ
  • 8. Things to notice Lazyevaluation If westepintothis code, wesee LINQ triggers itsmagic on demand Easy composition If weadd new clauses after the LINQ expression isbuilt but beforeit’sconsumed, wesimplymerge the additions to the existing expression So far, we’veworked on objects Whichis how manynaive LINQ implementationswork : synchronously pipelining methods calls on collections LINQ has an interesting twist Expression trees
  • 9. Expression Trees and IQueryable Let’stake the sameexample and introduceAsQueryable() Uponexecution, wecan notice the compiler didn’teatour LINQ expression It’sstill in there, using a tree format (an AbstractSymbolTree) That treewillberesolvedatruntime In the Linq to Objects case, wegetexactly the samebehaviour. The iteration pattern maystillbeyield-based, but thisisleft to IQueryable’simplementationdetails.
  • 10. Playingwith expression trees Let’stackleLinq To SQL My expression treeisnowpushed to the database layer If I want to block the flow to SQL, I just have to insert a new node in the tree. Whichallows me to balance things Using C# patterns and methodswhen I wantthem Pushing to the databasewhatitdoes best
  • 11. IQueryable goodies So, if I wantmythings to be LINQ aware, I caneither Buildsomemethods and let the IEnumerable<T> do its pure objectmagic (I stillgetlazyeval) Or, playwithIQueryable And do myowninterpretation of the tree Let’sseeMongoDB in LINQ
  • 12. Strongly-typed interaction when querying and updating collections. Improved interface to send common Mongo commands (creating indices, getting all the existing dbs and collections, etc.). Ultra-fast de/serialization of BSON to .Net CLR types and back. LINQ-to-Mongo Support for Mono
  • 13. LINQ Patterns Having a LINQ Expression isnice: youbasicallydelegate the execution to someoneelse’s code Plus, your LINQ Expressions have every good aspect youusuallyexpectfromfunctionalprogramming (ie, they are closures). So, they are perfectlysuited to parallelisation All you have to do isaddanothernode to the expression tree Demo : AsParallel()
  • 14. WritingMapReduce in LINQ public static IQueryable<R>  MapReduce<S,M,K,R>(this IQueryable<S> source,                                 Expression<Func<S,IEnumerable<M>>> mapper,                                 Expression<Func<M,K>> keySelector,                                 Expression<Func<K,IEnumerable<M>,R>> reducer){    return source.SelectMany(mapper).GroupBy(keySelector, reducer);} Notice that the callingsyntax : Source.MapReduce(lMapper, lKeySelector, lReducer)issimply a new nodethatcanbeinserted in a larger expression tree. This MapReducemethodcanrun on N coresusing PLINQ, or on X machines (and N cores per machine) usingDryadLINQ
  • 15. Collection<T> collection; boolIsLegal(Key k); string Hash(Key); var results = from c in collection where IsLegal(c.key) select new { Hash(c.key), c.value}; DryadLINQ = LINQ + Dryad Vertexcode Queryplan (Dryad job) Data collection C# C# C# C# results
  • 16. Parallel execution var logentries = from line in logs where !line.StartsWith("#") select new LogEntry(line); var user = from access in logentries where access.user.EndsWith(@"lfar") select access; var accesses = from access in user group access by access.page into pages select new UserPageCount("ulfar", pages.Key, pages.Count()); var htmAccesses = from access in accesses where access.page.EndsWith(".htm") orderby access.count descending select access;