close
The Wayback Machine - https://web.archive.org/web/20130807055716/http://www.freshports.org/how-big-is-it.php

FreshPorts -- The Place For Ports If you buy from Amazon USA, please support us by using this link.
Follow us
Blog
Twitter

How big is it

It was a few days ago that I was thinking about search engines crawling through this website. I began to wonder just how many web pages there are here. To calculate this total, it's not just a simple matter of counting files on disk. Most of the web pages are created from entries in the database. One recent evening, I started to design a formula to find out how many web pages there are. Roughly. This will not be 100% accurate, but it will be close.

Pages on disk

First, let's count the number of pages on disk:

$ ls *.php | wc -l
69
Number of categories

There is a page for each category:

# select count(*) from categories;
 count
-------
   109
(1 row)
Number of ports

There are ports, and there are deleted ports. I'll show both:

# select count(*) from ports_all where status = 'A';
 count
-------
 24373

# select count(*) from ports_all where status = 'D';
 count
-------
  8970
(1 row)
Number of files in the ports tree

There is a page for each file in the ports tree:

[dan@ngaio:/usr/ports] $ find . | wc -l
341646
[dan@ngaio:/usr/ports] $
Count last performed at Wed, 07 Aug 2013 00:10:04 GMT
Number of commits

There is a page for each commit:

# select count(*) from commit_log;
 count
-------
275589
(1 row)
Number of ports for each commit

For each commit, you can view the files modified by that commit for a particular port:

# select count(*) from commit_log_ports;
 count
-------
551978
(1 row)
How many days?

For each day, there is a page showing the commits for that day. How many days do we have?

# select count(distinct commit_date) from commit_log;
 count
-------
  4810
(1 row)
How many users?

Each user has a page:

# select count(*) from users;
 count
-------
 10874
(1 row)
How many watch lists?

For each watch list, there is a page:

# select count(*) from watch_list;
 count
-------
 11270
(1 row)
Estimated total

That gives a grand total of 1,229,688 pages. On my last count, that's about 0.015260% of the web pages on Google1

Notes

  • These statistics are updated daily.
  • 1The number of Google pages used in this calculation is 8,058,044,651.
How much diskspace?

The total space used by the FreshPorts database is:

# select pg_database_size('freshports.org');
 pg_database_size
------------------
19,063,194,424
(1 row)

That's bytes...

This value might be easier to parse: 18 GB

Login
User Login
Create account

Servers and bandwidth provided by
New York Internet, SuperNews, and RootBSD

Search
Enter Keywords:
 
more...

Latest Vulnerabilities
typo3Aug 05
typo345Aug 05
typo347Aug 05
phpmyadminAug 04
chromiumAug 03
chromiumAug 03
puppet*Aug 01
puppet27*Aug 01
phpmyadmin*Jul 29
phpmyadmin35*Jul 29
bind98*Jul 27
bind99*Jul 27
wordpressJul 27
wordpressJul 27
wordpressJul 27

11 vulnerabilities affecting 23 ports have been reported in the past 14 days

* - modified, not new

All vulnerabilities


Ports
Home
Categories
Deleted ports
Sanity Test Failures
Newsfeeds


Statistics
Graphs
NEW Graphs (Javascript)
Traffic

Calculated hourly:
Port count 24373
Broken 205
Deprecated 220
Ignore 583
Forbidden 0
Restricted 287
No CDROM 110
Vulnerable 18
Expired 45
Set to expire 203
Interactive 32
new 24 hours 1
new 48 hours2
new 7 days11
new fortnight28
new month87

This site
What is FreshPorts?
About the Authors
FAQ
How big is it?
The latest upgrade!
Privacy
Forums
Blog
Contact

Servers and bandwidth provided by
New York Internet, SuperNews, and RootBSD
Valid HTML, CSS, and RSS.
Copyright © 2000-2013 DVL Software Limited. All rights reserved.