Click here to Skip to main content
15,885,150 members
Articles / Web Development / IIS

TFS Proxy Efficiency Testing

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
26 Sep 2008CPOL14 min read 38.1K   197   19  
This article describes MS TFS Proxy efficiency testing depending on the internet channel rate between TFS and TFS Proxy, TFS commands, and TFS Proxy cache state. Also, this article describes the advantages of using the MS TFS Proxy on slow Internet channels.
@echo OFF

echo Start: Operation Check out/Undo

echo 
FOR /L %%G IN (1,1,4) DO (echo Start: without proxy
call start_checkout.cmd
call start_undo_checkout.cmd
echo End: without proxy
)

exit
FOR /L %%G IN (1,1,4) DO (echo Start: Proxy 0% cached
call z:\delete.cmd
call start_checkout.cmd use_cache
call start_undo_checkout.cmd use_cache
echo End: Proxy 0% cached
)


FOR /L %%G IN (1,1,4) DO (echo Start: PROXY 100% cached
call start_checkout.cmd use_cache
call start_undo_checkout.cmd use_cache
echo End: PROXY 100% cached
)


echo 
FOR /L %%G IN (1,1,4) DO (echo Start: proxy 90% cached
call z:\delete_10percent.cmd
call start_checkout.cmd use_cache
call start_undo_checkout.cmd use_cache
echo End: proxy 90% cached
)

echo End: Operation Check out/Undo

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader www.maxpaulousky.com
Belarus Belarus
Max currently is a senior developer at software company.

He lives with his wife Tatiana and son Zakhar (4 yrs) in Minsk, Belarus, but they dream to live in New Zealand.

Comments and Discussions