Skip to main content

Torrent Seedings are IMPORTANT


Because more the seeding faster the file downloading or fast sharing.

Explanation:
Firstly,
SEEDERS: The one who uploads the file to the torrent site.
LEECHERS: The one who downloads file from the torrent site.


If someone uploaded a torrent to a site with the seeds at 100kbps and if there are 10 leechers then each leecher is approximately getting the file at 10kbps.
After each 10 people finish downloading the torrent from the uploader and are seeding at a speed of 100kbps.
Then the total speed of the torrent after the 10 get done downloading and seeding the file is 1100kbps. Because 10 are seeding at 100kbps and the original uploader is seeding at 100kbps.

Now if there are 11 more leechers getting the file then each of those leechers are approximately getting the file at 100kbps instead of 10kbps because there is a 1 to 1 ratio per seeder & leecher.

So if everyone just downloaded the file and stopped without seeding the torrent 1:1 then the speed of the torrent will hardly go up because the leechers will always more in number then the seeder.


The more seeders there are on a torrent the faster the torrent is. 

The downloading of the torrent is not from the actual site. You are downloading it off another user that has it on their computer.


Thus it is important to seed back what you take. That is called FILE SHARING.

Seeding is the process of connecting to a torrent when you have a complete file.


Comments

Popular posts from this blog

How to install MSSQL in Mac using Docker?

MSSQL refers to Microsoft SQL which is more compatible with windows machines. What if we want it in our macbook. Well we do that using docker.  You should follow following steps in order to install MS SQL Server in your macbook. Download and install Docker. { docker download } Open terminal Enter following command. This command will install microsoft sql server in your mac --> docker pull microsoft/mssql-server-linux Now set up the server name and password for your sql server using following command in terminal. --> docker run -d --name your_sql_server_name -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=SetYourPassword123' -p 1433:1433 microsoft/mssql-server-linux Note that the password should contain capital letter, small letter and number, otherwise you will face the popular problem that your sql server automatically shuts down after few seconds of start. You may want to install sql cli that allows you to type sql commands in terminal. For that command is:  --> sudo npm ...