Python Forum
Which is Faster, List or SQL
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Which is Faster, List or SQL
#3
This is an interesting question
A list and RDBMS are two different animals.

The data must already be in a format that you can load into a list,
which would be a lot less work that creating a database, and would
be faster, although I don't think that matters as you will only use one
url at a time, doing some stuff with it.

Fetching from a list (or table) will be a trivial part of the whole operation.

A database table has advantages if the data has to be modified, because
the data that you originally load remains stationary until modified, added to,
or deleted through SQL.
Reply


Messages In This Thread
Which is Faster, List or SQL - by AceScottie - Mar-16-2017, 06:29 PM
RE: Which is Faster, List or SQL - by micseydel - Mar-16-2017, 06:33 PM
RE: Which is Faster, List or SQL - by AceScottie - Mar-16-2017, 06:45 PM
RE: Which is Faster, List or SQL - by Larz60+ - Mar-16-2017, 06:41 PM
RE: Which is Faster, List or SQL - by micseydel - Mar-16-2017, 07:09 PM
RE: Which is Faster, List or SQL - by wavic - Mar-16-2017, 07:23 PM
RE: Which is Faster, List or SQL - by micseydel - Mar-16-2017, 07:44 PM
RE: Which is Faster, List or SQL - by zivoni - Mar-16-2017, 09:13 PM
RE: Which is Faster, List or SQL - by nilamo - Mar-16-2017, 09:26 PM
RE: Which is Faster, List or SQL - by AceScottie - Mar-16-2017, 10:15 PM
RE: Which is Faster, List or SQL - by wavic - Mar-16-2017, 10:23 PM
RE: Which is Faster, List or SQL - by Larz60+ - Mar-17-2017, 02:31 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020