What kind of data access you will use for the project with very large

What kind of data access you will use for the project with very large

am 31.03.2008 12:20:23 von laziers

Hi,
What kind of data access you will use for the project with very large
database [such as myspace]:

1. NHibernate [this will be the slower?]
2. Linq
3. Sql queries + stored procedures [In my opinion this will be the
fastest]
4. DataSets

Re: What kind of data access you will use for the project with very large database [such as myspace]

am 31.03.2008 13:00:15 von Andy Fish

I would think it depends more on the way you are accessing the data than the
size of the database

so if you are selecting or updating 10 rows, this will be fast if you are
using an index and slow if you are not using an index, regardless of which
method you use.

if you want to actually retrieve a large volume of data into the application
then, as you suggest, using the lowest level primitives with the least
overhead will give the best performance.

of course for an application like myspace with a large number of concurrent
users, the data access technology will have a significant impact on
performance, but this is more to do with the level of concurrent activity
than the size of the database.

Andy


wrote in message
news:94d93c23-15c1-4ff8-8c13-90ef4e8d7fee@s8g2000prg.googleg roups.com...
> Hi,
> What kind of data access you will use for the project with very large
> database [such as myspace]:
>
> 1. NHibernate [this will be the slower?]
> 2. Linq
> 3. Sql queries + stored procedures [In my opinion this will be the
> fastest]
> 4. DataSets