Timeline
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

50 most recent check-ins related to "experimental"

2013-01-23
13:24
Add the max-download-time server option that limits the amount of real-time that the server will spend preparing an xfer protocol reply. check-in: 769c90a230 user: drh tags: trunk
12:31
Only check time, if it is set. Closed-Leaf check-in: 970cc4f16f user: joerg tags: experimental
2013-01-18
22:05
Add new option max-download-time to limit the processing time of pull/sync /clone requests. This helps to significantly cut down the number of time outs clients receive on busy server with reverse proxy configuration. It generally provides better response times. check-in: ee6ae580ee user: joerg tags: experimental
21:34
Run "analyze" after a rebuild. For small repositories, the time doesn't matter and for large repositories, the effect on the query plans are huge. Push/pull for example will otherwise do a sequential scan of the blob table and joining that with the unclustered table afterwards, when the other way around is several order of magnitudes more efficient... check-in: 80bf94e0f7 user: joerg tags: trunk
2012-10-09
14:32
An alternative way to get mime-types from attachments for the "raw" page. Leaf check-in: b21df7ecaf user: drh tags: experimental
01:41
Update SQLite from upstream in order to test SQLite. check-in: 51858373cb user: drh tags: trunk
2012-09-06
10:23
Show the number of changes following a "fossil update". check-in: 3db1cf69e5 user: drh tags: trunk
2012-02-09
13:55
Experimental changes to the "update" command to have it report when it makes no changes to the repository. Closed-Leaf check-in: be10939bff user: drh tags: experimental
2012-02-08
03:04
Update the version number to 1.22 and begin entering change log information for the next release. check-in: 9b1d394a71 user: drh tags: trunk
2011-07-28
19:57
Merge Joerg's export command improvements into trunk. check-in: dd74352d2c user: drh tags: trunk
2011-07-23
23:01
Fix logic error: look up mlink entries of the commit, not the parent. Closed-Leaf check-in: 9a67937056 user: joerg tags: experimental
00:24
During the first phase of export, explicitly try to process the commits in order of delta chains to minimize recomputation and cache trashing. check-in: 2cfb415b23 user: joerg tags: experimental
2011-07-22
23:46
If a branch does not have a color set for it, choose a background color for the timeline background based on a hash of the branch name. check-in: c946b573c7 user: drh tags: trunk
2011-04-15
11:57
Merge the refactored "add", "del", and "addremove" commands into trunk. check-in: 8ae917362c user: drh tags: trunk
00:59
Completely forget about files that were added then removed without ever been committed. Closed-Leaf check-in: 97e5ff20d7 user: drh tags: experimental
2011-04-14
22:41
Refactoring the "add", "del", and "addremove" commands. check-in: 2b95102592 user: drh tags: experimental
18:09
Refactoring the directory scanning code used by recursive add, extra, and clean. Seems to work but needs more testing prior to folding into trunk. check-in: f60f56025c user: drh tags: experimental
14:23
Factor the glob-pattern matching logic into a separate module. check-in: 289ea2a9b6 user: drh tags: trunk
2011-02-02
01:09
After a few days of internal use for testing, merge the changes for the new LEAF meta-data table into the trunk. NB: "<b>fossil all rebuild</b>" is required when updating through this change. check-in: 5ac4e15182 user: drh tags: trunk
2011-01-28
21:52
Remove extraneous hyperlinks from the Tags and Branches timelines since the "tag:" hyperlinks now cover that functionality. Closed-Leaf check-in: b6e66cdd08 user: drh tags: experimental
20:56
Add a new meta-data table named LEAF that holds a precomputed set of all leaves in the checkin DAG. Use this precomputed table rather than trying to compute the LEAFs on the fly, as a performance enhancement for repositories with many checkins. A rebuild is required. check-in: 69f43fc077 user: drh tags: experimental
19:09
Add end-tags to the anchors in the [/doc/trunk/src/makeheaders.html] document. check-in: b6a4e8592d user: drh tags: trunk
2011-01-26
20:24
Experimental after_dephantomize() enhancement checks out, so pull it into the trunk. check-in: 62d114ee12 user: drh tags: trunk
16:23
Avoid unnecessary deep recursion in after_dephantomize() when using delta-manifests. Closed-Leaf check-in: 2739272921 user: drh tags: experimental
15:37
Make the definition of "leaf" on the "leaves" page more precise. check-in: 752895d916 user: drh tags: trunk
2011-01-07
16:20
Merge the experimental export speed enhancement into trunk. check-in: 7aaa2aa417 user: drh tags: trunk
2011-01-05
18:55
Experimental change to try to make "export" run faster for massive repositories. Closed-Leaf check-in: c9a903c2bc user: drh tags: experimental
18:41
Add the --ignore option to the "add" command and have "add" honor the "ignore-glob" setting. Ticket [f270321c0f74b354f05] check-in: be3d2154da user: drh tags: trunk
2010-12-21
21:32
Merge into trunk from experimental the lookaside hit and miss stats associated with the --sqltrace option. check-in: b41d0f6120 user: drh tags: trunk
2010-12-20
16:57
Additional lookaside buffer measurements associated with an experimental version of SQLite, enabled only when --sqltrace is used. Closed-Leaf check-in: 9688ec1d00 user: drh tags: experimental
14:52
Update the --sqltrace debugging option so that it outputs memory usage statistics within SQL comments. check-in: cb745cc789 user: drh tags: trunk
2010-12-18
21:26
Bring the "stash" enhancement into the trunk. check-in: 12a2a5eaf2 user: drh tags: trunk
21:22
Add the "stash diff" and "stash gdiff" commands. Closed-Leaf check-in: 987e0ff78d user: drh tags: experimental
20:54
Fix a couple of out-of-order variable declarations. check-in: 4a8b4210f7 user: drh tags: experimental
20:39
Many bug fixes while testing stash: Fix "revert" so that it updates the file status correctly. Fix several cases of "//" being used as a file separator instead of just "/". Fix undo on stash apply. Make "stash drop" undoable. Update documentation for undo and stash. check-in: 8a6aa0a13f user: drh tags: experimental
18:56
The "stash" functionality is now in place. Need to test more prior to merging into trunk. check-in: 22aa74dcdf user: drh tags: experimental
17:24
Begin adding code to implement the "stash" command. The code compiles and runs but is currently incomplete. This is an incremental check-in to preserve state. (Ironically, if "stash" were working, I'd have probably just done a "stash snapshot" to capture this state, rather than an experimental branch.) check-in: b3dadcc4a6 user: drh tags: experimental
14:18
Simplifications to the implementation of undo/redo. Add the --explain option to undo/redo that shows what would be undone or redone without actually doing anything. check-in: 30981b64a4 user: drh tags: trunk
2010-12-14
00:36
Merge in the experimental clone speed enhancement. check-in: 3543ed62bb user: drh tags: trunk
2010-12-09
15:52
New cloning algorithm appears to be much faster at the cost of slightly more network bandwidth. Fully backwards compatible. Need to look at the network bandwidth issue prior to merging with trunk. Perhaps a command-line option for the clone command to select between slow-and-small or fast-and-larger. Closed-Leaf check-in: 8bb8be26ca user: drh tags: experimental
13:56
Use the built-in SQLite caseless string comparison functions instead of the C-library strcasecmp(). Accept mime-type application/x-fossil-uncompressed and avoid decompression when seen. check-in: 0b6c414c6f user: drh tags: trunk
2010-11-11
13:36
a stab at fast-import/export support building on the 'import' branch from drh. Closed-Leaf check-in: 7043db15b8 user: gcw tags: gcw-fast
2010-11-09
11:05
Merge the import/export changes into trunk. Even though they are incomplete, they do not threaten the correctness of other commands and can be developed in trunk. check-in: 0f024d3e30 user: drh tags: trunk
2010-11-08
23:26
Export works for Fossil and SQLite repositories. Does not yet export tags. Also need to add incremental export. Closed-Leaf check-in: e25884d44f user: drh tags: experimental
20:07
Merge in the [696668aa4ec88213c] fix, which is necessary to successfully export the Fossil self-hosting repository. check-in: 95f709cd4f user: drh tags: experimental
19:00
Begin adding "import" and "export" commands for converting repositories from and to the Git format. The "export" command currently generates output but is not quite correct. The "import" command is still a stub. check-in: b3fd32f925 user: drh tags: experimental
15:33
Fix a typo in an error message in the merge logic. check-in: 370a89c832 user: drh tags: trunk
2010-10-28
14:03
New higher-performance clone algorithm merged in from the experimental branch. check-in: fda9b15cfc user: drh tags: trunk
13:25
Less frequent status messages while processing using the sync protocol. Closed-Leaf check-in: 0ca42eb3cc user: drh tags: experimental
13:07
Reduce the amount of processing in between when a server timestamp is generated and when it is evaluated for time skew by the client - to reduce the risk of detecting time skew simply due to a slow disk. check-in: a4cdf8d25b user: drh tags: experimental