Tag

XML Parsing

1 views collected around this technical thread.

Top Architect
Top Architect
Jan 16, 2025 · Backend Development

Optimizing XML‑to‑MySQL Data Import: Reducing Execution Time from 300 s to 4 s

This article describes how to dramatically speed up the import of 60,000+ XML records into MySQL by analyzing the original environment, measuring baseline performance, and applying a series of backend optimizations—including MySQL batch mode, rewriteBatchedStatements, multithreaded asynchronous writes with Disruptor, and XML parsing improvements—ultimately cutting the total runtime from five minutes to just a few seconds.

DisruptorJavaMySQL
0 likes · 14 min read
Optimizing XML‑to‑MySQL Data Import: Reducing Execution Time from 300 s to 4 s
Selected Java Interview Questions
Selected Java Interview Questions
Oct 20, 2024 · Backend Development

Optimizing XML‑to‑MySQL Bulk Import: Reducing Execution Time from 300 s to 4 s with JDBC Batch and Disruptor

This article details how a Java‑based XML‑to‑MySQL import of over 60,000 records was accelerated from 300 seconds to just 4 seconds by enabling JDBC batch processing, configuring rewriteBatchedStatements, and employing a multithreaded Disruptor pipeline for asynchronous writes, while also discussing further tuning options.

DisruptorJDBC BatchJava
0 likes · 11 min read
Optimizing XML‑to‑MySQL Bulk Import: Reducing Execution Time from 300 s to 4 s with JDBC Batch and Disruptor
Test Development Learning Exchange
Test Development Learning Exchange
Jul 16, 2024 · Fundamentals

Parsing XML Data with Python's xml.etree.ElementTree

This article provides a comprehensive guide on using Python's xml.etree.ElementTree library to parse XML data, covering installation, parsing methods, data extraction, and handling nested structures with practical code examples.

Data ProcessingPython ProgrammingXML Parsing
0 likes · 4 min read
Parsing XML Data with Python's xml.etree.ElementTree
FunTester
FunTester
Oct 11, 2020 · Backend Development

XML File Parsing Methods and a Groovy‑Based DOM4J Utility Class

The article explains four XML parsing approaches (DOM, SAX, JDOM, DOM4J), highlights the use of Groovy for scripting, provides a sample XML snippet, and presents a complete Groovy/Java utility class that leverages dom4j to parse XML files for backend applications.

DOM4JGroovyJava
0 likes · 6 min read
XML File Parsing Methods and a Groovy‑Based DOM4J Utility Class