Performance of querying ranged integer value

Hi everyone,

I have a system which try to query users based on some ranged integer values. I know in Nakama, this should be implemented by using the Storage Table. The value is stored as below.

{
	 “some_int_1” : 0,
	 “some_int_2” : 0
}

What is your thoughts on the performance of executing range query on these values? Would it be better if I try to make a custom table which only consists of 3 values such as below?

user_id STRING
some_int_1 INT
some_int_2 INT