Re: [Tutor] design advise

2009-08-27 Thread Dave Angel
Alan Gauld wrote: wrote The thing that bothers me is that I ma have 10 users or 100,000 users and really wanted to get an opinion as to which option would scale better, leaving aside the relational DB approach. If you have to cater for 100,000 users all with different views on a common se

Re: [Tutor] design advise

2009-08-27 Thread Alan Gauld
wrote The thing that bothers me is that I ma have 10 users or 100,000 users and really wanted to get an opinion as to which option would scale better, leaving aside the relational DB approach. If you have to cater for 100,000 users all with different views on a common set of resources I do

Re: [Tutor] design advise

2009-08-27 Thread Kent Johnson
On Thu, Aug 27, 2009 at 7:26 AM, wrote: > I was thinking more in terms of how python would find it more efficient in > retrieving the information, this being: > 1) Storing all the user files in one place and then selecting only the files > with the correct permissions for the user views >  2) St

Re: [Tutor] design advise

2009-08-27 Thread davidwilson
avidwil...@safe-mail.net Cc: tutor@python.org Subject: Re: [Tutor] design advise Date: Wed, 26 Aug 2009 13:41:54 -0400 > On Wed, Aug 26, 2009 at 7:52 AM, wrote: > > Hello, > > I would like advise on what method would be better in terms of search and > > retrieval. > >

Re: [Tutor] design advise

2009-08-26 Thread Kent Johnson
On Wed, Aug 26, 2009 at 7:52 AM, wrote: > Hello, > I would like advise on what method would be better in terms of search and > retrieval. > > In my application I need to choose how to store data for each user, for > example: > > /news > /articles > /games > > My difficulty now comes in how to st

Re: [Tutor] design advise

2009-08-26 Thread Alan Gauld
wrote In my application I need to choose how to store data for each user, for example: /news /articles /games My difficulty now comes in how to store this data in that I will need to create views Which is the more efficient option for storing this data, is it better to have all in one pl

[Tutor] design advise

2009-08-26 Thread davidwilson
Hello, I would like advise on what method would be better in terms of search and retrieval. In my application I need to choose how to store data for each user, for example: /news /articles /games My difficulty now comes in how to store this data in that I will need to create views of the data