stevedlawrence commented on code in PR #195:
URL: https://github.com/apache/daffodil-site/pull/195#discussion_r2491360222


##########
site/binary-large-objects.md:
##########
@@ -0,0 +1,171 @@
+---
+description: Binary Large Objects Feature
+group: 'nav-right'
+layout: page
+title: 'Binary Large Objects Feature'
+---
+<!--
+{% comment %}
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to you under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+{% endcomment %}
+-->
+## Table of Contents
+{:.no_toc}
+<!-- The {: .no_toc } excludes the above heading from the ToC --> 
+
+1. yes, this is the standard Jekyll way to do a ToC (this line gets removed)
+{:toc}
+<!-- note the above line {:toc} cannot have whitespace at the start --> 
+
+
+<!--
+This page is linked from https://s.apache.org/daffodil-blob-feature.
+ If this page content moves, please update that link from https://s.apache.org.
+-->
+
+# Introduction
+
+Daffodil has implemented a DFDL extension that allows data much larger than 
memory to be manipulated.
+
+A variety of data formats, such as for image and video files, consist of 
fields of what is effectively metadata, surrounding large blocks of data 
containing compressed image or video data.
+
+An important use case for DFDL is to expose this metadata for easy use, and to 
provide access to 
+the large data via a streaming mechanism akin to opening a file, thereby 
avoiding
+large `xs:hexBinary` strings in the infoset.
+
+In RDBMS systems, BLOB (Binary Large Object) is the type used when the data 
row returned from an SQL query will not contain the actual value data, but 
rather a handle that can be used to open/read/write/close the BLOB.
+
+Daffodil has an analogous BLOB capability. 
+This enables processing of images or video of arbitrary size without the need 
to every hold all the data in memory.

Review Comment:
   s/every/ever



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to