Currently I have to use GET <api URL>/node/<UUID>/<data name>/key/<key> to check if a key exists, which is time consuming for a key mapped to a heavy value. Supporting HEAD method or something like GET <api URL>/node/<UUID>/<data name>/haskey/<key> can solve the problem.
Currently I have to use
GET <api URL>/node/<UUID>/<data name>/key/<key>
to check if a key exists, which is time consuming for a key mapped to a heavy value. Supporting HEAD method or something likeGET <api URL>/node/<UUID>/<data name>/haskey/<key>
can solve the problem.