Re: [uWSGI] Problem with mysql + uwsgi

2015-06-02 Thread INADA Naoki
READ-COMMITTED isolation level only see data committed. Closing (commit or revert) transaction is required for other transaction can see new data anyway. On Tue, Jun 2, 2015 at 3:28 PM, Manivel Rajendran be.mani...@gmail.com wrote: My MYSQL's transaction isolation level is READ-COMMITTED On

Re: [uWSGI] Problem with mysql + uwsgi

2015-06-02 Thread Manivel Rajendran
My MYSQL's transaction isolation level is READ-COMMITTED On Tue, Jun 2, 2015 at 11:38 AM, INADA Naoki songofaca...@gmail.com wrote: How do you use MySQL? MySQL's default transaction isolation level is repeatable read. If you didn't close transaction properly for each requests, you'll see

Re: [uWSGI] Problem with mysql + uwsgi

2015-06-02 Thread INADA Naoki
How do you use MySQL? MySQL's default transaction isolation level is repeatable read. If you didn't close transaction properly for each requests, you'll see data for time you start transaction. On Tue, Jun 2, 2015 at 2:40 PM Manivel Rajendran be.mani...@gmail.com wrote: Hi, I am using MySQL

[uWSGI] Problem with mysql + uwsgi

2015-06-01 Thread Manivel Rajendran
Hi, I am using MySQL as my backend for my django website and I have configured it with nginx via uwsgi. Everything is working fine. But some times when I update any record and it is updated in mysql, at the same time it shows the old data in another page, which lists all the records. When I