Skip to content

guide blob support

travis edited this page Feb 11, 2020 · 10 revisions
Table of Contents

BLOB support

BLOB stands for Binary Large Object. A BLOB may be an image, an office document, ZIP archive or any other multimedia object. Often these BLOBs are large. if this is the case you need to take care, that you do not copy all the blob data into you application heap, e.g. when providing them via a REST service. This could easily lead to performance problems or out of memory errors. As solution for that problem is "streaming" those BLOBs directly from the database to the client. To demonstrate how this can be accomblished, devonfw provides a example.

Clone this wiki locally