On 9/5/06, cyberco <[EMAIL PROTECTED]> wrote: > > I'm new to database programming and I'm wondering if I should put > around 1 page of plain text (<5000 characters) in a database or in > files on the filesystem. Any suggestions?
The main advantage of the filesystem is that it is simple and fast. Often though, in environments like Django where most data is stored in the database, it is more convenient to use the database. I'd say use the database to start off with, and if that's not fast enough, then use a file. Depending on your requirements, may find the Django FlatPage app helpful: http://www.djangoproject.com/documentation/flatpages/ Cheers, Alan. > > > > > -- Alan Green [EMAIL PROTECTED] - http://bright-green.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---

