Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix a typo in a comment in cache.c. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ca1e4ed3d62adc041fbc4867badfa696 |
User & Date: | drh 2016-01-12 22:44:25 |
Context
2016-01-13
| ||
00:38 | The test file directory saved by the test suite infrastructure should be normalized. ... (check-in: be81a2fd user: mistachkin tags: trunk) | |
2016-01-12
| ||
22:44 | Fix a typo in a comment in cache.c. ... (check-in: ca1e4ed3 user: drh tags: trunk) | |
18:55 | In the MinGW makefile, move included LIBs after the object files. ... (check-in: c7117ab4 user: mistachkin tags: trunk) | |
Changes
Changes to src/cache.c.
︙ | ︙ | |||
250 251 252 253 254 255 256 | ** ** list|ls List the keys and content sizes and other stats for ** all entries currently in the cache ** ** status Show a summary of cache status. ** ** The cache is stored in a file that is distinct from the repository | | | 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 | ** ** list|ls List the keys and content sizes and other stats for ** all entries currently in the cache ** ** status Show a summary of cache status. ** ** The cache is stored in a file that is distinct from the repository ** but that is held in the same directory as the repository. The cache ** file can be deleted in order to completely disable the cache. */ void cache_cmd(void){ const char *zCmd; int nCmd; sqlite3 *db; sqlite3_stmt *pStmt; |
︙ | ︙ |