Im using Django 1.3 with eclipse indigo pydev 32bit on windows 7 64 bit (python 32bit).
when i run "manage.py runserver" from windows cmd, it creates two python.exe processes with +12,000K and +13000K memory. if i terminate by "ctrl+c" it removes both of these processes.
Now when run the runserver from pydev with auto-reload (i.e. no-reload removed), it also creates two python processes with +12000K and +13000k memory. But if terminate the runserver using the red terminate box from the console view the process with +12000K goes down but the one with +13000K memory still remains and the server is running.
i configured for runserver command in two ways but yielded the same problem:
1. project(right click)->django->custom command->runserver
2. run configurations
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Im using Django 1.3 with eclipse indigo pydev 32bit on windows 7 64 bit (python 32bit).
when i run "manage.py runserver" from windows cmd, it creates two python.exe processes with +12,000K and +13000K memory. if i terminate by "ctrl+c" it removes both of these processes.
Now when run the runserver from pydev with auto-reload (i.e. no-reload removed), it also creates two python processes with +12000K and +13000k memory. But if terminate the runserver using the red terminate box from the console view the process with +12000K goes down but the one with +13000K memory still remains and the server is running.
i configured for runserver command in two ways but yielded the same problem:
1. project(right click)->django->custom command->runserver
2. run configurations
Answered at: http://stackoverflow.com/questions/2746512/pydev-and-django-how-to-restart-dev-server/7648375#7648375
Cheers,
Fabio