Details
-
Improvement
-
Status: Done
-
Normal
-
Resolution: Done
-
None
Description
The function get_agtype_value_object_value uses a linear search O. This can be improved since the keys are stored sorted by size and then alphabetically. Research and implement a binary search to improve this function to O(log n).