ShortBlob contains an array of bytes no longer than DataTypeUtils#MAX_SHORT_BLOB_PROPERTY_LENGTH. Unlike Blob, ShortBlobs are
indexed by the datastore and can therefore be filtered and sorted on in queries. If your data is
too large to fit in a ShortBlob use Blob instead.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["`ShortBlob` is a class that stores an array of bytes, with a size limitation defined by `DataTypeUtils#MAX_SHORT_BLOB_PROPERTY_LENGTH`."],["Unlike `Blob`, `ShortBlob` data is indexed, allowing for filtering and sorting within datastore queries."],["`ShortBlob` implements the `Serializable` and `Comparable\u003cShortBlob\u003e` interfaces."],["`ShortBlob` objects are immutable after construction, with the bytes being set during initialization."],["If the data exceeds the `ShortBlob` size limit, `Blob` should be used instead."]]],[]]