0
0
mirror of https://github.com/django/django.git synced 2024-12-01 15:42:04 +01:00
django/docs/topics/db
Przemysław Suliga af5ec222cc Used time.monotonic() instead of time.time() where applicable.
time.monotonic() available from Python 3.3:

- Nicely communicates a narrow intent of "get a local system monotonic
  clock time" instead of possible "get a not necessarily accurate Unix
  time stamp because it needs to be communicated to outside of this
  process/machine" when time.time() is used.
  
- Its result isn't affected by the system clock updates.

There are two classes of time.time() uses changed to time.monotonic()
by this change:

- measuring time taken to run some code.

- setting and checking a "close_at" threshold for for persistent db
  connections (django/db/backends/base/base.py).
2019-05-08 18:34:22 +02:00
..
examples Fixed #9475 -- Allowed RelatedManager.add(), create(), etc. for m2m with a through model. 2019-01-15 11:12:17 -05:00
aggregation.txt Fixed #30347 -- Fixed typo in docs/topics/db/aggregation.txt. 2019-04-13 12:35:31 +02:00
index.txt Refs #28595 -- Added a hook to add execute wrappers for database queries. 2017-09-21 12:13:09 -04:00
instrumentation.txt Used time.monotonic() instead of time.time() where applicable. 2019-05-08 18:34:22 +02:00
managers.txt Fixed typo in docs/topics/db/managers.txt. 2018-04-11 22:24:29 -04:00
models.txt Fixed #9475 -- Allowed RelatedManager.add(), create(), etc. for m2m with a through model. 2019-01-15 11:12:17 -05:00
multi-db.txt Refs #29683 -- Updated multi-db docs for view permission. 2019-02-25 14:56:36 -05:00
optimization.txt Used auto-numbered lists in documentation. 2018-11-15 13:54:28 -05:00
queries.txt Fixed #30365 -- Fixed syntax highlighting in SQL examples. 2019-04-23 12:37:50 +02:00
search.txt Updated various links in docs to use HTTPS. 2018-01-07 14:28:41 +01:00
sql.txt Removed unnecessary /static from links to PostgreSQL docs. 2019-03-29 21:49:44 -04:00
tablespaces.txt Fixed #28046 -- Added the db_tablespace parameter to class-based indexes. 2017-06-27 21:15:15 +02:00
transactions.txt Fixed #28584 -- Dropped support for SQLite < 3.7.15. 2017-10-03 10:42:18 -04:00