Changes between Version 9 and Version 10 of AppEngine
- Timestamp:
- Feb 14, 2009, 4:50:55 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppEngine
v9 v10 31 31 == Emulation of SQL features == 32 32 33 I t must be possible to detect when an SQL feature like JOIN gets emulated. This is important because you might mistakenly develop somethingthat doesn't scale when your database grows beyond a certain size. In settings.py we could have a flag which specifies whether to throw warnings for emulated features (ENABLE_DB_EMULATION_WARNINGS?). By default, warnings should be enabled, so you never miss potential sources of problems.33 If we emulate certain SQL features, it must be possible to detect when something gets emulated. This is important because you might mistakenly develop code that doesn't scale when your database grows beyond a certain size. In settings.py we could have a flag which specifies whether to throw warnings for emulated features (ENABLE_DB_EMULATION_WARNINGS?). By default, warnings should be enabled, so you never miss potential sources of problems. 34 34 35 35 == Schemas ==