﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
5310	sync database between two processes dynamically	wanyancan@…	Adrian Holovaty	"if two independent processes access the same model, how to make the second process see the result immediately taken by the first process's model.save()? 
I've tested multiple threads in a single process, there's no such problem.
But when with two processes, I tested with the following steps:
1. in process one: 
>>> Pkg.objects.all().count()
4
2. in process two:
>>> p = Pkg(name='hi'); p.save()
3. in process two:
>>> Pkg.objects.all().count()
5
4. in process one:
>>> Pkg.objects.all().count()
4
^^
Here's the question: How to re-retrieve the objects from the database?"		closed	Database layer (models, ORM)	dev		invalid			Unreviewed	0	0	0	0	0	0
