all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#2912: 23.0.92; Ediff over TRAMP too slow
       [not found] <mailman.4745.1239066236.31690.bug-gnu-emacs@gnu.org>
@ 2009-04-07  7:44 ` Michael Albinus
  2009-04-07 13:17   ` David Abrahams
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Albinus @ 2009-04-07  7:44 UTC (permalink / raw)
  To: David Abrahams; +Cc: 2912

David Abrahams <dave@boostpro.com> writes:

> Ediff two remote files using /ssh:... protocol
>
> It seems to go over the network for everything.  At first I thought it
> was the auto-refining, but I turned that off and it didn't seem to make
> any difference in speed.

In case of remote files, ediff compares local copies, indeed. I'm not so
familiar with ediff, therefore I don't know, whether this can be changed
easily, running the diff command on the remote host. However, this
introduces more complexity into ediff: there might be protocols which do
not support execution of remote commands (like ftp or smb). Furthermore,
ediff would need to check, whether the files to be compared reside on
the same remote host.

I don't believe that this shall be changed before the release of Emacs
23.1. After the release, it might be a new feature somebody (with more
skills than I have on ediff) might implement.

For larger files, I recommend to use the scp method instead of ssh.

Best regards, Michael.






^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#2912: 23.0.92; Ediff over TRAMP too slow
  2009-04-07  7:44 ` bug#2912: 23.0.92; Ediff over TRAMP too slow Michael Albinus
@ 2009-04-07 13:17   ` David Abrahams
  2009-04-07 13:29     ` Michael Albinus
  2009-04-07 15:26     ` Stefan Monnier
  0 siblings, 2 replies; 5+ messages in thread
From: David Abrahams @ 2009-04-07 13:17 UTC (permalink / raw)
  To: Michael Albinus; +Cc: 2912


On Apr 7, 2009, at 3:44 AM, Michael Albinus wrote:

> David Abrahams <dave@boostpro.com> writes:
>
>> Ediff two remote files using /ssh:... protocol
>>
>> It seems to go over the network for everything.  At first I thought  
>> it
>> was the auto-refining, but I turned that off and it didn't seem to  
>> make
>> any difference in speed.
>
> In case of remote files, ediff compares local copies, indeed.

If that's all it was doing, I wouldn't be complaining.  Each time I  
move to the next diff, it appears to be going over the network.

> I'm not so
> familiar with ediff, therefore I don't know, whether this can be  
> changed
> easily, running the diff command on the remote host. However, this
> introduces more complexity into ediff: there might be protocols  
> which do
> not support execution of remote commands (like ftp or smb).  
> Furthermore,
> ediff would need to check, whether the files to be compared reside on
> the same remote host.

I don't think that would be a big win.  There is, however, a lot to be  
gained somewhere *during* the ediff session.

> I don't believe that this shall be changed before the release of Emacs
> 23.1. After the release, it might be a new feature somebody (with more
> skills than I have on ediff) might implement.
>
> For larger files, I recommend to use the scp method instead of ssh.


Really!  I thought they were roughly the same.  Thanks for the hint.

--
David Abrahams
BoostPro Computing
http://boostpro.com










^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#2912: 23.0.92; Ediff over TRAMP too slow
  2009-04-07 13:17   ` David Abrahams
@ 2009-04-07 13:29     ` Michael Albinus
  2009-04-07 14:58       ` David Abrahams
  2009-04-07 15:26     ` Stefan Monnier
  1 sibling, 1 reply; 5+ messages in thread
From: Michael Albinus @ 2009-04-07 13:29 UTC (permalink / raw)
  To: David Abrahams; +Cc: 2912

David Abrahams <dave@boostpro.com> writes:

> I don't think that would be a big win.  There is, however, a lot to be
> gained somewhere *during* the ediff session.

As I said, I'm not familiar with ediff. But there might also be another
reason for network activity. If the files are under vc control, a lot of
checks are always performed silently. You won't see the checks for local
files, because they are fast enough. But for remote files it matters.

If you know, that your files are *not* under vc control, you might apply

  (setq vc-handled-backends nil)

Best regards, Michael.






^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#2912: 23.0.92; Ediff over TRAMP too slow
  2009-04-07 13:29     ` Michael Albinus
@ 2009-04-07 14:58       ` David Abrahams
  0 siblings, 0 replies; 5+ messages in thread
From: David Abrahams @ 2009-04-07 14:58 UTC (permalink / raw)
  To: Michael Albinus; +Cc: 2912


On Apr 7, 2009, at 9:29 AM, Michael Albinus wrote:

> David Abrahams <dave@boostpro.com> writes:
>
>> I don't think that would be a big win.  There is, however, a lot to  
>> be
>> gained somewhere *during* the ediff session.
>
> As I said, I'm not familiar with ediff. But there might also be  
> another
> reason for network activity. If the files are under vc control, a  
> lot of
> checks are always performed silently.

Wow, you're right!  Ediff'ing files not under vc control is very snappy!
OK, this is weird: now I can't reproduce the problem even for files  
under version control.

I'll let you know if I find out anything more, but I guess we can  
ignore this one for now.

Thanks,
--
David Abrahams
BoostPro Computing
http://boostpro.com










^ permalink raw reply	[flat|nested] 5+ messages in thread

* bug#2912: 23.0.92; Ediff over TRAMP too slow
  2009-04-07 13:17   ` David Abrahams
  2009-04-07 13:29     ` Michael Albinus
@ 2009-04-07 15:26     ` Stefan Monnier
  1 sibling, 0 replies; 5+ messages in thread
From: Stefan Monnier @ 2009-04-07 15:26 UTC (permalink / raw)
  To: David Abrahams; +Cc: 2912, Michael Albinus

>>> Ediff two remote files using /ssh:... protocol
>>> It seems to go over the network for everything.  At first I thought it
>>> was the auto-refining, but I turned that off and it didn't seem to make
>>> any difference in speed.
>> In case of remote files, ediff compares local copies, indeed.
> If that's all it was doing, I wouldn't be complaining.  Each time I move to
> the next diff, it appears to be going over the network.

I cannot reproduce this here.  I opened two remote files (via Tramp/SSH)
and called M-x ediff-buffers, then killed Tramp's internal buffer and
moved from diff to diff (via ediff's frame using keys like `n' and SPC)
and it did not try to reconnect to the remote machine.


        Stefan






^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2009-04-07 15:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.4745.1239066236.31690.bug-gnu-emacs@gnu.org>
2009-04-07  7:44 ` bug#2912: 23.0.92; Ediff over TRAMP too slow Michael Albinus
2009-04-07 13:17   ` David Abrahams
2009-04-07 13:29     ` Michael Albinus
2009-04-07 14:58       ` David Abrahams
2009-04-07 15:26     ` Stefan Monnier

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.