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

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Último (20)

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
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
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
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
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
 
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
 
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
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
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
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
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...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 

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;