Slashdot Mirror


A Search Engine For The Slower Net

Makarand writes "According to this BBC News article researchers at MIT are developing a search engine for people using the web on slower net connections. The software will e-mail queries to a central server and receive the most relevant webpages from the search results by e-mail in a compressed form. Since the program is too big to download over a poor net connection it will be mailed on CDs to libraries for people to borrow and install. They are also considering trying to persuade computer sellers in developing countries to install the program on machines."

6 of 309 comments (clear)

  1. Re:Because... by TopShelf · · Score: 4, Informative

    I had the same initial reaction, but after RTFA (I know, shame on me), it seems that the limitation isn't so much time, but continuous time hogging the phone line accessing Google, checking out pages, etc.

    Instead, this service would package together selected results of the search, for overnight download into the PC's cache. The user can then browse through the material at their leisure without needing to use the internet connection (which is the scarce resource).

    --
    Stop by my site where I write about ERP systems & more
  2. RTFA by DrewMIT · · Score: 5, Informative

    For those of you wondering why someone would do this, how about reading the damn article?

    The program doesn't e-mail back with a mere mirror of a google / yahoo results page. It actually filters through the individual results compressing the entire page. e.g. my search turns up a CNN page and a blurb on MSNBC and I get, e-mailed to me, compressed versions of those actual sites, not just links to them.

    As far the "my 28.8 modem is just fast enough" crowd -- read the article! Some of these locations the software is being developed for don't even have access to a phone line on a regular basis. And the lines they do have access to are more likely than not to be noisy as hell and not able to support a 28.8 connection.

  3. Re:Because... by advocate_one · · Score: 3, Informative

    cor... this sounds oh so familiar... anyone remember ftp by email??? History repeating itself...

    Query the ftp server by email and get the directory list emailed back to you. Then you could send the command via another email which would result in the file being emailed back to you overnight ready for you to retrieve it.

    And then there was "trickle" where files could be sent/refreshed to your uni's mainframe's ftp server overnight and would be there for you to play with the next morning and you would always have the most recent version of the file as they'd have been synched via trickle

    --
    Donald 'Duck' Dunn: We had a band powerful enough to turn goat piss into gasoline.
  4. Internet by mail by Smartcowboy · · Score: 3, Informative

    This FAQ explains how to access most of the internet using only a standard email client.

    The above document explain how to access:

    FTP
    ARCHIE (deprecated)
    FTPSEARCH (deprecated)
    GOPHER (deprecated)
    VERONICA (deprecated)
    JUGHEAD (deprecated)
    USENET
    WWW
    WWW SEARCH (using standard search engine like altavista, yahoo or google)
    FINGER
    WHOIS
    [...]

    All these protocols can be accessed via email, according to the FAQ. The FAQ has been around for a long time. This explains why many (most) involved protocols are now deprecated. I used this faq in the early '90 and I don't know how it works now. At the time, it was great. The last update is 2002/04/16.

  5. Re:What program? by BillThies · · Score: 4, Informative
    Hi, I'm a graduate student working on the TEK project.

    There are several benefits of having a TEK Client program instead of just using email. But first off, the client isn't that big -- the JAR file with the TEK classes is 125 KB. When we package it up with third-party libraries and an installer, it comes to 2 MB, and with Java included, it's 10 MB. It would be interesting to try to prune down this distribution to the minimal size -- for the prototype version, we have focussed primarily on the software's functionality.

    The TEK Client program is useful because it provides a seamless interface to browsing the downloaded pages. It operates as a web proxy: users adjust their browser to talk to TEK instead of the web, and then they can view pages just as if they were connected. The URL's appear as usual in the browser's "location" toolbar, and links on the page are functional. If a URL has been downloaded before, then it is loaded out of the local cache; if it has not yet been downloaded, then the user is queried to submit a request for that URL.

    The TEK Client includes a local search utility for searching the cache of downloaded pages. In this way, the user can build up a local library of information that is relevant to their community; for example, in a school setting, many searches could be satisfied using only the local cache due to overlapping interests of students.

    Also, the TEK Client is useful for tracking searches. In settings where connectivity is intermittent, searches can be enqueued during the day and sent at night (or when a connection is available.) The client also provides basic user management so that multiple people can share a public installation (perhaps using a single email address, which they might not own themselves) and still keep track of their own queries.

    In the future, we think there are a lot of features that could be added to the client. For instance, we could seed the client with other open-source resources, such as an atlas or encyclopedia, that could be used in conjunction with web searches. There could also be an "intelligent query builder" that helps construct Internet searches (for example, by checking spelling) before going through the time and expense of connecting and sending them off.

    Many more details about TEK are available from the TEK Homepage. We are currently moving our CVS source tree to SourceForge, so if you're interested in helping to improve the software, it'd be great to hear from you!

  6. Re:already been done(kind of) by BillThies · · Score: 4, Informative

    You're right that retrieving web pages over email has already been done. A present-day service that works as you describe is www4mail, and I know people that use it regularly from low-connectivity regions.

    However, the TEK system (which I'm involved in) offers several benefits over a purely email-based solution. By having a web proxy on the client side, users can use their favorite browser to view downloaded pages, complete with color and formatting, which is often absent in text-only systems. Moreover, the client keeps a local, searchable cache of all downloaded pages, and the server keeps track of which pages have been sent to avoid wasting bandwidth on duplicate content. Finally, with a web-like user interface, many users can share a single e-mail account in a public kiosk or school.

    Many more details about the TEK system are available from the TEK Homepage