J
Jesper
I was wondering what kind of algorithm is behind the DataRowCollection.Find
method, where you are searching by the primary (and unique) key. Can I
expect "table-scan"-like performance O(n) or is there some sort of indexing
that makes it constant or logarithmic in performance?
I'm currently contemplating doing some complex sums, either in the DB
(which - of course - has the best performance on the actual calculations),
or in my client (which would remove the connection overhead, and improve
multiuser-scalability)
Jesper.
method, where you are searching by the primary (and unique) key. Can I
expect "table-scan"-like performance O(n) or is there some sort of indexing
that makes it constant or logarithmic in performance?
I'm currently contemplating doing some complex sums, either in the DB
(which - of course - has the best performance on the actual calculations),
or in my client (which would remove the connection overhead, and improve
multiuser-scalability)
Jesper.