|
Register | FAQ | The Twelve Commandments | Members List | Calendar | Arcade | Find the Best VPN | Today's Posts | Search |
Download/Upload Problems Problems with downloading or uploading files through the Gnutella network. * Please specify whether the file problem is a Gnutella network shared file OR a Torrent file. * |
| LinkBack | Thread Tools | Display Modes |
| |||
Hello Everybody I finally managed to get a reply from a LimeWire Developer: In the private message, he wrote this: "We basically don't reply because we don't have time to monitor the forums enough to know that the thread exists. This is because we're working constantly to improve LimeWire, fixing issues such as this. It's really just a constant tradeoff that we have to make -- the more time we spend on the forums and many other places (Gnutella developer groups, for example), the less time we have to write code to make the software better. We try to do the best we can, but it's just a difficult situation because the less time we spend coding, the more people complain about problems with the current version, leading to more time spent discussing those issues with users, which leads to yet less time spent coding, etc. etc. So, I do apologize that we have not addressed these issues on the forums. There are really only 5 of us, though, and I assure you that we have our hands quite full. I have neglected the forums in the past several weeks to devote more time to writing code, but hopefully I will have some time to devote here fairly soon. Thanks for your concern." In one of the threads, he wrote this: "Thanks for all of the comments. Our apologies for not responding to some of the threads -- we really do have limited resources and have to make a tradeoff between working on the program and answering people's questions or responding to their comments. As you probably know, I and the other LimeWire people who post here are the developers who actually write the software (and there are only five of us!), so it's just a constant battle to try to get to everything! We are working on the resuming issue in various ways. Actually, we're really tackling it by just improving the general architecture of the network so that resuming will improve along with a bunch of other things. The changes will really be on two fronts: 1) HUGE (Hash/URN Gnutella Extension), as mentioned above, will introduce a really nice scheme for efficiently finding duplicate of file on the network in a really robust way, which will improve resumes when you need to resume from another host and 2) Far better swarmed downloading using HTTP 1.1, which will make resuming an issue less often. This change will significantly improve download speeds. So, we have at least a couple a neat features coming along in LimeWire 2.3.0 fairly soon. We will also be updating the integrated player at least on OS X to use the native QuickTime API, so you'll get the best sound available on any system, at least on OS X. We may integrate this as an optional download on other platforms as well." So I guess they are really working on it! |
| |||
Problem is they've been "working" on this same problem *forever*. LimeWire has always been infamous as one of the worst peers for resuming files - makes it kind of useless for anything larger than a few meg. Many other gnutella peers (Gnucleus for one) manage this quite well with the current protocol by just having a re-search option to find more sources. LW tries half-heartedly, but if it can't resume immediately it either overwrites (should never be allowed to happen) or more likely just gives up enitrely. There's nothing more frustrating than having 90% of a 100+ meg file in your download folder, being able to find more sources in a search, but having absolutely no way to use them to resume. |
| |||
This is not an advertisement, but on AG Satellite the resume starts before my browser opens (seems like anyway)and there is no shortage of songs, DL tends to be a bit slower but that's made up in the fact that you don't have to re-DL a file you have 95% of already. Not all of us have 100 gig hard drives, you know. I'll hang onto this program and see if the next version is better but I am totally fed up. |
| |||
Open Source Whiners OK, I'm guilty of cluttering this up with the same spammy crap I'm bitchin' about but I can't stand it anymore!! I'm amazed how many people post nothing more than a whiny compaint about how the folks writing their free software won't answer to their every whim. If you don't like it, go use something else and leave the forums for pointing out legit issues. Maybe they could get to more of the real problems if they didn't have to listen to 100 morons saying nothing more than Waaaa! |
| |||
Re: Open Source Whiners Quote:
|
| |||
fixed resuming... patch here I haven't tested everything completely yet, but I believe I've fixed most of the problems associated with resuming downloads. Below is a patch for the source release currently available at http://download.limewire.org/servlet...wnload&dlID=15. Code: diff -br -C 2 core/com/limegroup/gnutella/DownloadManager.java ../limewire_new/core/com/limegroup/gnutella/DownloadManager.java *** core/com/limegroup/gnutella/DownloadManager.java Thu Dec 13 18:27:02 2001 --- ../limewire_new/core/com/limegroup/gnutella/DownloadManager.java Fri Mar 1 19:20:14 2002 *************** *** 433,436 **** --- 433,446 ---- } + /** Stops all downloads, then readds them to the waiting list. */ + public synchronized void stopAllDownloads() { + for (Iterator iter=active.iterator(); iter.hasNext(); ) { + ManagedDownloader md=(ManagedDownloader)iter.next(); + ManagedDownloader dupe=new ManagedDownloader( + this, md.getFiles(), fileManager, incompleteFileManager); + waiting.add(dupe); + md.stop(); + } + } /** Calls measureBandwidth on each uploader. */ diff -br -C 2 core/com/limegroup/gnutella/RouterService.java ../limewire_new/core/com/limegroup/gnutella/RouterService.java *** core/com/limegroup/gnutella/RouterService.java Thu Dec 6 14:59:06 2001 --- ../limewire_new/core/com/limegroup/gnutella/RouterService.java Fri Mar 1 19:09:22 2002 *************** *** 350,353 **** --- 350,356 ---- */ public void shutdown() { + //Stop all downloads to make sure we remember them + downloader.stopAllDownloads(); + //Write gnutella.net try { diff -br -C 2 core/com/limegroup/gnutella/downloader/IncompleteFileManager.java ../limewire_new/core/com/limegroup/gnutella/downloader/IncompleteFileManager.java *** core/com/limegroup/gnutella/downloader/IncompleteFileManager.java Thu Dec 13 18:27:02 2001 --- ../limewire_new/core/com/limegroup/gnutella/downloader/IncompleteFileManager.java Fri Mar 1 19:24:24 2002 *************** *** 48,52 **** for (Iterator iter=blocks.keySet().iterator(); iter.hasNext(); ) { File file=(File)iter.next(); ! if (!file.exists() || isOld(file)) { ret=true; file.delete(); //always safe to call; return value ignored --- 48,52 ---- for (Iterator iter=blocks.keySet().iterator(); iter.hasNext(); ) { File file=(File)iter.next(); ! if (!file.exists()) { ret=true; file.delete(); //always safe to call; return value ignored diff -br -C 2 core/com/limegroup/gnutella/downloader/ManagedDownloader.java ../limewire_new/core/com/limegroup/gnutella/downloader/ManagedDownloader.java *** core/com/limegroup/gnutella/downloader/ManagedDownloader.java Tue Dec 18 11:35:40 2001 --- ../limewire_new/core/com/limegroup/gnutella/downloader/ManagedDownloader.java Fri Mar 1 19:23:38 2002 *************** *** 1070,1073 **** --- 1070,1077 ---- *************************************************************************/ + public synchronized RemoteFileDesc[] getFiles() { + return allFiles; + } + public synchronized int getState() { return state; |
| |||
Some clarifications on my patch above: It fixed two problems with resuming which I observed on my system (RedHat Linux 7.2); I make no guarantees as to how it'll work on your system. The patch will not do anything to let you resume old incomplete files which were on your system before the patched version was installed; it'll only help for new files. Finally, it should be noted that this patch will completely disable the "remove incomplete files after x days" feature; incomplete files will stay until you delete them manually. More specifically, the patch does two things: Firstly, it removes the "isOld()" check when purging the incomplete file directory, because that check returned true every time for files which were in the process of being downloaded when the check occured. Secondly, it adds a function which loops through and actively stops all active downloads on shutdown. This because data on the downloads wasn't being updated on shutdown, but I noticed that data was updated when I stopped a download manually. I'm sure there are much better ways of fixing both bugs, but I'll leave that to the real developers. |
| |
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Problem Resuming Download | freddie3 | Getting Started Using LimeWire + WireShare | 1 | August 6th, 2006 07:39 PM |
Resuming a download | wodjie | Download/Upload Problems | 2 | July 7th, 2006 05:33 PM |
resuming a cancelled download | hailmary25 | Download/Upload Problems | 2 | December 23rd, 2005 05:05 AM |
Resuming download | rbye | General Windows Support | 1 | November 7th, 2001 11:15 AM |
Resuming a Download | Unregistered | Download/Upload Problems | 0 | October 17th, 2001 02:23 PM |