For Programmers: Free Programming Magazines  


Home > Archive > ASP .NET > March 2008 > Re: What kind of data access you will use for the project with very large database [s









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author Re: What kind of data access you will use for the project with very large database [s
Andy Fish

2008-03-31, 6:13 am

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


<laziers@gmail.com> wrote in message
news:94d93c23-15c1-4ff8-8c13-90ef4e8d7fee@s8g2000prg.googlegroups.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



Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2010 codecomments.com