I have 1000000 records in database table. I have to push my records in one worker of KV using put method. then want to apply filter on KV of all records using passing querystring value. then filter data want to bind on autocomplete list using jquery. so how to apply filter on KV of specific kye data.
how to filter the kv data & bind in autocomplete
How do you plan to load 1000000 records into KV? KV takes only 4 types, so you would either have to load each row as a separate key-value pair or load it all as one, then parse it yourself.