Differences between revisions 2 and 31 (spanning 29 versions)
Revision 2 as of 2007-04-25 18:51:25
Size: 694
Editor: BrendanCully
Comment: Link in python bindings
Revision 31 as of 2014-03-24 01:53:35
Size: 1863
Editor: Rain
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
== Inotify Extension == = Inotify Extension =
Line 3: Line 3:
'''This extension is not distributed with Mercurial.''' ''Authors: Bryan O'Sullivan, Nicolas Dumazet''
Line 5: Line 5:
''Author: Bryan O'Sullivan'' '''This extension was included with Mercurial 1.0–2.9. It was [[http://www.selenic.com/repo/hg/rev/352abbb0be88|removed]] in Mercurial 3.0, and enabling it is now a no-op.'''
Line 7: Line 7:
Download site: [http://hg.kublai.com/mercurial/patches/inotify] <!> This feature is [[UnlovedFeatures|unloved]].
Line 9: Line 9:
It also requires Bryan's [http://hg.kublai.com/python/inotify python bindings for inotify]. <!> This feature has known correctness issues. '''Do not use it if you care about your sanity.''' Consider using HgwatchmanExtension instead.
Line 11: Line 11:
=== Overview === == Overview ==
Line 13: Line 13:
This extension uses the linux 2.6 inotify API to make status instantaneous for even very large repositories, by subscribing to the paths in the repository instead of having to check them all at every status command. This extension makes status requests instantaneous for even very large repositories, by subscribing to the paths in the repository instead of having to check them all at every status command.
Line 15: Line 15:
=== Configuration ===
Configure your .hgrc to enable the extension by adding following lines:
Inotify is currently a Linux-only extension, using the Linux 2.6 inotify API.

An alpha Mac OS port is now available: it uses the MacOS 10.5 FSEvents API through the [[http://pypi.python.org/pypi/pyfsevents|pyfsevents]] module. It can be tested by ''qcloning'' [[http://bitbucket.org/nicdumz/mercurial-crew-mq/|Nicolas's MQ]] (''hg qclone [url]; hg qpush -a'')

== Installation and configuration ==

To enable it, edit your hgrc:
Line 20: Line 25:
inotify=/path/to/inotify inotify =
Line 23: Line 28:
You can either enable it for each individual repository you need it in, or globally.

The extension contains both a server and a client component. By default, it will start automatically. To prevent this, edit either your global ~/.hgrc or .hg/hgrc in repositories where you don't want to use inotify:

{{{
[inotify]
autostart = False
}}}

The server runs in the background as a daemon when started automatically. To start it manually, use the command:

{{{
$ hg inserve [-d]
}}}

By default, the server output will be lost. You can use the ''log'' option to capture the server output:

{{{
[inotify]
log = '/tmp/inotify.log'
}}}

== See also ==

 * InotifyBug
Line 24: Line 55:
CategoryExtension CategoryBundledExtension

Inotify Extension

Authors: Bryan O'Sullivan, Nicolas Dumazet

This extension was included with Mercurial 1.0–2.9. It was removed in Mercurial 3.0, and enabling it is now a no-op.

<!> This feature is unloved.

<!> This feature has known correctness issues. Do not use it if you care about your sanity. Consider using HgwatchmanExtension instead.

Overview

This extension makes status requests instantaneous for even very large repositories, by subscribing to the paths in the repository instead of having to check them all at every status command.

Inotify is currently a Linux-only extension, using the Linux 2.6 inotify API.

An alpha Mac OS port is now available: it uses the MacOS 10.5 FSEvents API through the pyfsevents module. It can be tested by qcloning Nicolas's MQ (hg qclone [url]; hg qpush -a)

Installation and configuration

To enable it, edit your hgrc:

[extensions]
inotify =

You can either enable it for each individual repository you need it in, or globally.

The extension contains both a server and a client component. By default, it will start automatically. To prevent this, edit either your global ~/.hgrc or .hg/hgrc in repositories where you don't want to use inotify:

[inotify]
autostart = False

The server runs in the background as a daemon when started automatically. To start it manually, use the command:

$ hg inserve [-d]

By default, the server output will be lost. You can use the log option to capture the server output:

[inotify]
log = '/tmp/inotify.log'

See also


CategoryBundledExtension

InotifyExtension (last edited 2014-03-24 01:53:35 by Rain)