Re: Is Django suitable for this purpose?

2015-01-22 Thread Collin Anderson
Hi, As others have mentioned, it's totally possible. Regardless of using Django or not, the integration could easily be the hardest part, and that's where the "up to a minute delay" could come in. Collin On Tuesday, January 20, 2015 at 4:52:33 PM UTC-5, Mike Taylor wrote: > > I want to have

Re: Is Django suitable for this purpose?

2015-01-20 Thread Cal Leeming
On Tue, Jan 20, 2015 at 10:43 PM, Avraham Serour wrote: > I'm not sure what kind of answers you expect by asking if django is the > best tool on a django forum... > Actually, OP should expect impartial advice on suitability, as list membership does not automatically mean

Re: Is Django suitable for this purpose?

2015-01-20 Thread Avraham Serour
I'm not sure what kind of answers you expect by asking if django is the best tool on a django forum... In any case, of course it is possible to do this in django, it all depends on you, django is just a framework but you still need to connect the dots the time lag would only depend on how you

Is Django suitable for this purpose?

2015-01-20 Thread Mike Taylor
I want to have an appointment booking option built into a website for a clinic. The feature needs to integrate with the software that runs their office ( http://www.atlaschirosys.com/) In order to be fully useful, it would need to be virtually instantaneous in filling the requested

Re: Django Suitable for this?

2008-06-08 Thread Richard Dahl
In my opinion, it shouldn't matter what type of web app you are creating, Django is a framework that can be used to develop any kind of app you can imagine. That being said, Django was designed for a particular use and has been tailored for that use, deviating significantly from that

Re: Django Suitable for this?

2008-06-08 Thread James Bennett
On Sun, Jun 8, 2008 at 1:05 AM, beetlecube <[EMAIL PROTECTED]> wrote: > I read a blog entry somewhere by someone contemplating the ideal type > of web application needs that Django best meets: Since it was > written originally for publishing articles in a newspaper environment, > it's good for

Django Suitable for this?

2008-06-08 Thread beetlecube
I read a blog entry somewhere by someone contemplating the ideal type of web application needs that Django best meets: Since it was written originally for publishing articles in a newspaper environment, it's good for blogs or other Article type sites. Myself, I'm working on a To-Do list type

Re: CRUD - grid? Is Django suitable for this?

2007-05-10 Thread Matt Dennewitz
see: extjs.com grid On May 10, 2007, at 9:54 PM, walterbyrd wrote: > > > How about a grid where data is not editable inline, but it still > sortable by clicking on column headers? > > On May 10, 2:50 pm, [EMAIL PROTECTED] wrote: >> Django is good for providing the backend, but most of your

Re: CRUD - grid? Is Django suitable for this?

2007-05-10 Thread walterbyrd
How about a grid where data is not editable inline, but it still sortable by clicking on column headers? On May 10, 2:50 pm, [EMAIL PROTECTED] wrote: > Django is good for providing the backend, but most of your > functionality is probably going to be provided by ajax/javascript > which django

Re: CRUD - grid? Is Django suitable for this?

2007-05-10 Thread Matt Dennewitz
Check out: http://extjs.com/deploy/ext/docs/index.html Under "Grid" is the best open source grid that youll find today. AJAX- enabled with beautiful inline editing and more. Free for open source projects, cheap to purchase for commercial use. I use it for just about everything! Matt On

Re: CRUD - grid? Is Django suitable for this?

2007-05-10 Thread dballanc
Django is good for providing the backend, but most of your functionality is probably going to be provided by ajax/javascript which django will happily communicate with, but does not provide. You might take a look at: http://developer.yahoo.com/yui/examples/datatable/inlineediting.html

CRUD - grid? Is Django suitable for this?

2007-05-10 Thread walterbyrd
I assume Django is good for this type of thing: A grid that can be sorted by icons on the top of each column. So if I click on the icon on the 3rd row of the grid, the entire grid will be sorted by that field. Also, I would like to be edit the fields like a spreadsheet, if possible.

Re: Is Django suitable for a big numbers of visitors??

2006-05-30 Thread Jyrki Pulliainen
On 5/29/06, wiz <[EMAIL PROTECTED]> wrote: > > How can I verify that caching works? > "apache benchmark" or something like that. I've found FunkLoad more functional. You can run multiple threaded queries with it for desirable amount of iterations with intervals. It simulates better multiple

Re: Is Django suitable for a big numbers of visitors??

2006-05-29 Thread Jeremy Dunck
On 5/29/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I assume that any per-URL caching scheme will sooner or later end up > sending users a wrong page (one that has been generated for another > user), which could be a major problem. EVERY page is personalized, so I > can't for instance

Re: Is Django suitable for a big numbers of visitors??

2006-05-29 Thread wiz
> How can I verify that caching works? "apache benchmark" or something like that. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Is Django suitable for a big numbers of visitors??

2006-05-29 Thread PythonistL
Thank you for your reply Now I have in my settings.py file: DEBUG = False MIDDLEWARE_CLASSES = ( "django.middleware.common.CommonMiddleware", "django.middleware.sessions.SessionMiddleware", "django.middleware.doc.XViewMiddleware", "django.middleware.cache.CacheMiddleware", )

Re: Is Django suitable for a big numbers of visitors??

2006-05-29 Thread [EMAIL PROTECTED]
Hi. I'm in a similar situation --- my site is about to launch and I hope to have a fair number of visitors. I looked at the caching middlwares but have a general problem with them. My site is highly personalized. I.e. the same URL pattern will generally return slightly different pages for

Re: Is Django suitable for a big numbers of visitors??

2006-05-29 Thread James Bennett
On 5/29/06, PythonistL <[EMAIL PROTECTED]> wrote: > If so, what configurations would you reccomend? Beefy servers and plenty of caching. -- "May the forces of evil become confused on the way to your house." -- George Carlin --~--~-~--~~~---~--~~ You received

Re: Is Django suitable for a big numbers of visitors??

2006-05-29 Thread wiz
> I use Django with FastCGI ( via WSGI) and have problems with downtime > when more visitors come to my website. 1) use cache 2) disable DEBUG --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To

Is Django suitable for a big numbers of visitors??

2006-05-29 Thread PythonistL
I use Django with FastCGI ( via WSGI) and have problems with downtime when more visitors come to my website. Did anyone test Django apps for high numbers of visitors(hits)? If so, what configurations would you reccomend? Thank you for reply L.