InfoQ Homepage Parsing Content on InfoQ
Presentations
RSS Feed-
Parsing JSON Really Quickly: Lessons Learned
Daniel Lemire talks about the lessons learned while writing the fast JSON parser, simdjson. One of the most important lessons is the importance of a nearly obsessive focus on performance.
-
Parsing Safely, from 500MB/s to 2GB/s
Geoffroy Couprie describes a few common issues in parsers, and how they interact with performance, showing how to get the performance of handwritten C parsers using Rust.
-
Unfrying Your Brain with F#
Andrea Magnorsky discusses active patterns, computation expressions, parsers, using type providers and more. These language features help make code simpler and easier to maintain.
-
The Quest for the One True Parser
Terence Parr shows the key practical advances in parsing from the last 25 years, provides algorithm comparisons, and separates the promises from reality.
-
Parser Combinators: How to Parse (nearly) Anything
Nate Young presents parser combinators, what they are useful for and how to make use of them, demoing how to write one.
-
Creating DSLs in Java
Venkat Subramaniam explains what DSLs are good for, then he demos the creation of a DSL in Java, starting with a grammar and a parser, with an emphasis on useful patterns to be used along the way.