jsonb
jsonb copied to clipboard
Performance: Using SIMD to imporve object key match
When we search whether the key in the object matches, we read the data of jentry and key in sequence, and the performance will be poor when there are many keys. We can speed up this process by using SIMD directives.
assign me