파일:Usage share of web servers (Source Netcraft).svg

문서 내용이 다른 언어로는 지원되지 않습니다.
위키백과, 우리 모두의 백과사전.

원본 파일(SVG 파일, 실제 크기 1,080 × 630 픽셀, 파일 크기: 86 KB)

파일 설명

설명
English: Diagram showing the market share of web servers considering all websites, not only active web sites (difference: Netcraft: active sites).
날짜
출처 Source: Netcraft, Note: http://news.netcraft.com/archives/category/web-server-survey
저자 arichnad
SVG 발전
InfoField
 
SVG 파일의 소스 코드 문법이 올바릅니다.
 
chart R(으)로 제작되었습니다.
소스 코드
InfoField

R code

#
# File: ws-usage-2005-2021.R
#
# The percentages of usage of servers are taken from the table and graph diagram
# reported in "Web Server Survey" page (found in Netcraft website)
# which are named: "Web servers developers: Market share of all sites".
# If the percentage of a web server developer goes below the standard threshold limit,
# then it is no more named in text below Netcraft graph diagram but its integer
# (without decimals) percentage of usage can be shown by pointing mouse cursor
# under the last point of one of the curves of the diagram graph.
# So the percentage of that historical web developer can be reported
# in its data table (see below) in order to continue to track it.
#
# NOTE: percentages about Microsoft, Google (since 2021) and
#       "other" web servers have been rounded to integer part (no decimals).
#
# NOTE: to create this image file (see below: server.file) in Windows:
#       - install R software from: https://www.r-project.org/
#       - open a terminal window
#       - set PATH=%PATH%;"C:\Program Files\R\R-4.1.2\bin"
#       - rscript ws-usage-2005-2021.R
#

server.names = c(
 	"Apache", 
 	"Microsoft", 
 	"nginx", 
 	"Google",
 	"OpenResty",
 	"Cloudflare",
 	"Other"
 )
 
 server.years = c(
 	2005.0,2005.25,2005.5,2005.75,
 	2006.0,2006.25,2006.5,2006.75,
 	2007.0,2007.25,2007.5,2007.75,
 	2008.0,2008.25,2008.5,2008.75,
 	2009.0,2009.25,2009.5,2009.75,
 	2010.0,2010.25,2010.5,2010.75,
 	2011.0,2011.25,2011.5,2011.75,
 	2012.0,2012.25,2012.5,2012.75,
 	2013.0,2013.25,2013.5,2013.75,
 	2014.0,2014.25,2014.5,2014.75,
 	2015.0,2015.25,2015.5,2015.75,
 	2016.0,2016.25,2016.5,2016.75,
 	2017.0,2017.25,2017.5,2017.75,
 	2018.0,2018.25,2018.5,2018.75,
 	2019.0,2019.25,2019.5,2019.75,
 	2020.0,2020.25,2020.5,2020.75,
 	2021.0,2021.25,2021.5,2021.75
 )
 
 #Use the first month of the quarter:  January, April, July, October
 server.apache = c(
 	68.43, 69.32, 69.60, 69.89, #2005
 	67.11, 62.72, 63.09, 61.44, #2006
 	60.17, 58.86, 52.65, 47.73, #2007
 	50.61, 50.42, 49.49, 50.43, #2008
 	52.26, 45.95, 47.17, 46.90, #2009
 	53.84, 53.93, 54.90, 58.07, #2010
 	59.13, 61.13, 65.86, 64.67, #2011
 	64.91, 65.46, 61.45, 58.00, #2012
 	55.26, 51.01, 52.19, 44.89, #2013
 	41.64, 37.74, 34.73, 37.45, #2014
 	39.74, 39.25, 38.34, 34.53, #2015
 	33.56, 26.96, 31.72, 23.84, #2016
 	21.51, 22.69, 17.83, 18.78, #2017
 	27.21, 25.58, 22.00, 22.98, #2018
    21.30, 26.73, 27.75, 28.64, #2019
    23.98, 24.73, 25.45, 27.04, #2020
    26.38, 25.90, 25.61, 24.63  #2021
    
 )
 
 server.microsoft = c(
 	20.86, 20.45, 20.53, 20.55, #2005
 	20.61, 25.22, 29.48, 31.35, #2006
 	30.78, 31.13, 32.84, 37.13, #2007
 	35.81, 35.33, 35.57, 34.44, #2008
 	32.91, 29.27, 23.34, 21.58, #2009
 	24.08, 24.97, 25.87, 22.99, #2010
 	21.00, 18.83, 16.82, 15.66, #2011
 	14.46, 13.66, 14.62, 16.28, #2012
 	16.93, 19.95, 19.65, 23.10, #2013
 	29.42, 33.04, 37.53, 33.58, #2014
 	27.52, 27.83, 26.52, 30.40, #2015
 	28.95, 40.75, 35.26, 44.61, #2016
 	45.66, 44.71, 53.17, 49.44, #2017
 	31.85, 36.94, 40.28, 39.22, #2018
    31.96, 25.05, 14.59, 14.08, #2019
    14.03, 12.85, 11.36, 7.66,  #2020
     7.49,  5.54,  4.20, 4.00   #2021
 )
 
 server.nginx = c(
 	NA, NA, NA, NA, #2005
 	NA, NA, NA, NA, #2006
 	NA, NA, NA, NA, #2007
 	NA, NA, NA, NA, #2008
 	1.87, 2.64, 4.25, 5.99, #2009
 	7.53, 6.32, 5.58, 6.07, #2010
 	7.50, 7.50, 6.54, 8.54, #2011
 	9.63, 10.32, 11.09, 11.80, #2012
 	12.64, 14.81, 13.60, 16.05, #2013
 	14.40, 15.25, 14.16, 14.42, #2014
 	14.61, 14.87, 15.47, 16.65, #2015
 	15.60, 13.23, 15.92, 13.77, #2016
 	17.63, 19.22, 15.05, 18.40, #2017
 	25.39, 22.62, 17.25, 19.72, #2018
    24.74, 27.52, 34.59, 32.88, #2019
    37.70, 36.91, 36.55, 34.24, #2020
    33.33, 36.65, 36.54, 34.95  #2021
 )
 
 server.google = c(
 	NA, NA, NA, NA, #2005
 	NA, NA, NA, NA, #2006
 	NA, NA, 4.35, 5.44, #2007
 	5.33, 6.08, 5.70, 5.76, #2008
 	5.32, 3.12, 5.94, 6.00, #2009
 	7.04, 6.70, 7.70, 6.43, #2010
 	5.53, 4.70, 4.38, 3.47, #2011
 	3.25, 3.26, 3.44, 3.38, #2012
 	3.58, 3.50, 3.92, 4.45, #2013
 	2.47, 2.19, 2.06, 1.89, #2014
 	2.30, 2.36, 2.38, 2.27, #2015
 	2.29, 1.90, 2.10, 1.51, #2016
 	1.00, 1.05, 1.18, 1.16, #2017
 	1.20, 1.26, 1.40, 1.41, #2018
    1.58, 1.80, 2.11, 2.68, #2019
    3.02, 3.42, 3.59, 3.86, #2020
    3.86, 3.90, 4.10, 4.00  #2021
 )
 
 server.openresty = c(
 	NA, NA, NA, NA, #2005
 	NA, NA, NA, NA, #2006
 	NA, NA, NA, NA, #2007
 	NA, NA, NA, NA, #2008
 	NA, NA, NA, NA, #2009
 	NA, NA, NA, NA, #2010
 	NA, NA, NA, NA, #2011
 	NA, NA, NA, NA, #2012
 	NA, NA, NA, NA, #2013
 	NA, NA, NA, NA, #2014
 	NA, NA, NA, NA, #2015
 	NA, NA, NA, NA, #2016
 	NA, NA, NA, NA, #2017
 	NA, NA, NA, NA, #2018
 	NA, NA, NA, NA, #2019
 	NA, NA, NA, NA, #2020
 	NA, 6.76, 6.20, 6.45 #2021
 )
 
 server.cloudflare = c(
 	NA, NA, NA, NA, #2005
 	NA, NA, NA, NA, #2006
 	NA, NA, NA, NA, #2007
 	NA, NA, NA, NA, #2008
 	NA, NA, NA, NA, #2009
 	NA, NA, NA, NA, #2010
 	NA, NA, NA, NA, #2011
 	NA, NA, NA, NA, #2012
 	NA, NA, NA, NA, #2013
 	NA, NA, NA, NA, #2014
 	NA, NA, NA, NA, #2015
 	NA, NA, NA, NA, #2016
 	NA, NA, NA, NA, #2017
 	NA, NA, NA, NA, #2018
 	NA, NA, NA, NA, #2019
 	NA, NA, NA, NA, #2020
 	NA, NA, 4.49, 4.87 #2021
 )

 server.other = c(
 	 8.00,  7.00,  7.00,  7.00, #2005
 	10.00, 10.00,  7.00,  7.00, #2006
 	 7.00,  8.00,  8.00,  8.00, #2007
 	 7.00,  7.00,  8.00,  8.00, #2008
 	 7.00, 19.00, 19.00, 19.00, #2009
 	 7.00,  8.00,  8.00,  6.00, #2010
 	 7.00,  8.00,  6.00,  7.00, #2011
 	 7.00,  7.00,  9.00, 10.00, #2012
 	11.00, 10.00, 10.00, 11.00, #2013
 	12.00, 11.00, 11.00, 12.00, #2014
 	15.00, 15.00, 16.00, 15.00, #2015
 	18.00, 16.00, 14.00, 14.00, #2016
 	13.00, 11.00, 11.00, 10.00, #2017
 	12.00, 11.00, 16.00, 13.00, #2018
    16.00, 14.00, 15.00, 15.00, #2019
    13.00, 14.00, 13.00, 14.00, #2020
    16.00, 15.00, 16.00, 18.00  #2021
 )

 server.title = "Usage share of web servers"
 server.sub = "Source:  Netcraft"
 server.file = "Usage share of web servers (Source Netcraft).svg"
 
 svg(file=server.file,width=12,height=7)
 par(lwd=2)
 plot(server.years, server.apache, type="l", ylim=c(0, 100), main=server.title, sub=server.sub, xlab="Year", ylab="Percent", col=1, xaxt="n")
 axis(1, at=2005:2021, las=2)
 lines(server.years, server.microsoft,  col=2)
 lines(server.years, server.nginx,      col=3)
 lines(server.years, server.google,     col=4)
 lines(server.years, server.openresty,  col=5)
 lines(server.years, server.cloudflare, col=6)
 lines(server.years, server.other,      col=7)
 
 legend("topright",inset=0.05,col=1:7,lwd=3,legend=server.names)
 dev.off()

라이선스

나는 아래 작품의 저작권자로서, 이 저작물을 다음과 같은 라이선스로 배포합니다:
GNU head GNU 자유 문서 사용 허가서 1.2판 또는 자유 소프트웨어 재단에서 발행한 이후 판의 규정에 따라 본 문서를 복제하거나 개작 및 배포할 수 있습니다. 본 문서에는 변경 불가 부분이 없으며, 앞 표지 구절과 뒷 표지 구절도 없습니다. 본 사용 허가서의 전체 내용은 GNU 자유 문서 사용 허가서 부분에 포함되어 있습니다.
w:ko:크리에이티브 커먼즈
저작자표시 동일조건변경허락
이 파일은 크리에이티브 커먼즈 저작자표시-동일조건변경허락 4.0 국제, 3.0 Unported, 2.5 일반, 2.0 일반1.0 일반에 따라 배포됩니다.
이용자는 다음의 권리를 갖습니다:
  • 공유 및 이용 – 저작물의 복제, 배포, 전시, 공연 및 공중송신
  • 재창작 – 저작물의 개작, 수정, 2차적저작물 창작
다음과 같은 조건을 따라야 합니다:
  • 저작자표시 – 적절한 저작자 표시를 제공하고, 라이센스에 대한 링크를 제공하고, 변경사항이 있는지를 표시해야 합니다. 당신은 합리적인 방식으로 표시할 수 있지만, 어떤 방식으로든 사용권 허가자가 당신 또는 당신의 사용을 지지하는 방식으로 표시할 수 없습니다.
  • 동일조건변경허락 – 만약 당신이 이 저작물을 리믹스 또는 변형하거나 이 저작물을 기반으로 제작하는 경우, 당신은 당신의 기여물을 원저작물과 동일하거나 호환 가능한 라이선스에 따라 배포하여야 합니다.
이 라이선스 중에서 목적에 맞는 것을 선택하여 사용할 수 있습니다.

설명

이 파일이 나타내는 바에 대한 한 줄 설명을 추가합니다
Diagram showing the market share of web servers (by developer) considering all websites

이 파일에 묘사된 항목

다음을 묘사함

image/svg+xml

파일 역사

날짜/시간 링크를 클릭하면 해당 시간의 파일을 볼 수 있습니다.

(최신 | 오래됨) (다음 10개 | ) (10 | 20 | 50 | 100 | 250 | 500) 보기
날짜/시간섬네일크기사용자설명
현재2021년 12월 15일 (수) 05:412021년 12월 15일 (수) 05:41 판의 섬네일1,080 × 630 (86 KB)Ade56faccAdded "other" diagram line (updated to 2021)
2021년 11월 15일 (월) 21:082021년 11월 15일 (월) 21:08 판의 섬네일1,080 × 630 (84 KB)Ade56faccUpdated to 2021Q3
2018년 4월 25일 (수) 00:282018년 4월 25일 (수) 00:28 판의 섬네일1,080 × 630 (52 KB)Arichnadupdate to 2018 q1
2016년 9월 3일 (토) 23:082016년 9월 3일 (토) 23:08 판의 섬네일1,080 × 630 (68 KB)Malte SchmidtUpdated the file with all quarterly reports since the last edit. Cleaned up and made it more readable and editable.
2014년 2월 5일 (수) 04:102014년 2월 5일 (수) 04:10 판의 섬네일630 × 630 (47 KB)ArichnadCorrected axis.
2014년 2월 5일 (수) 04:072014년 2월 5일 (수) 04:07 판의 섬네일630 × 630 (47 KB)ArichnadUpdating with 2013 Q4 and 2014 Q1 figures.
2013년 7월 27일 (토) 00:532013년 7월 27일 (토) 00:53 판의 섬네일630 × 630 (47 KB)ArichnadUpdating with 2011 Q4 through 2013 Q2 figures. Removed a few minor web server makers: lighttpd, qq.com, and Sun.
2011년 8월 12일 (금) 08:352011년 8월 12일 (금) 08:35 판의 섬네일630 × 630 (54 KB)ArichnadUpdating with 2011 Q2 and Q3 figures.
2011년 2월 14일 (월) 04:382011년 2월 14일 (월) 04:38 판의 섬네일630 × 630 (53 KB)Arichnadupdating with 2011 Q1 figures.
2010년 10월 15일 (금) 16:342010년 10월 15일 (금) 16:34 판의 섬네일630 × 630 (53 KB)Arichnadupdating with 2010 Q4 figures.
(최신 | 오래됨) (다음 10개 | ) (10 | 20 | 50 | 100 | 250 | 500) 보기

다음 문서 1개가 이 파일을 사용하고 있습니다:

이 파일을 사용하고 있는 모든 위키의 문서 목록

다음 위키에서 이 파일을 사용하고 있습니다:

메타데이터