# HG changeset patch # User Mike Becker # Date 1739701308 -3600 # Node ID cc9f9a30869ff687298f704dc7a003830165ff9d # Parent 37cfb534800eeb33f1eaad216ff293d360956e7b intro text for parsers relates to #451 diff -r 37cfb534800e -r cc9f9a30869f docs/Writerside/topics/parsers.md --- a/docs/Writerside/topics/parsers.md Sat Feb 15 17:44:13 2025 +0100 +++ b/docs/Writerside/topics/parsers.md Sun Feb 16 11:21:48 2025 +0100 @@ -1,5 +1,8 @@ # Parsers - -New Features - will be documented soon! - +UCX offers parsers for two common formats: key/value [properties](properties.h.md) and [JSON](json.h.md). + +Both parser APIs are implemented in a memory efficient way. +Depending on the use case, the properties parser can avoid memory allocations completely +and the JSON parser minimizes allocations as good as possible. +Due to the nature of JSON, avoiding allocations altogether is of course not possible, though.