2013/7/30 Igor Stasenko <siguc...@gmail.com>:

>> [ self execute: 'select longitude,latitude from log_data limit 10000;' ] 
>> timeToRun.
>>
>> => 76 ms
>>
> 76 ms for 10000 records?
> that's quite good throughput i would say.

That will depend on the cursor type being used for the query.
If it's just opening the cursor is one thing, but if you have to fetch
all the data through the network it is a different story.

76ms to 10K rows is fast for a static cursor or for a forward only
cursor + data fetch.

Regards!

Reply via email to