2016-01-01から1年間の記事一覧

ワーカープロセスとstatic変数に関してのメモ

asp.net - IIS app pools, worker processes, app domains - Stack Overflowより: In a server you can have many asp.net sites that runs together. Each one site is an app domain. You must assign to each of them one application pool. Many applica…

ASP.NET Web API でファイルをアップロード

Web API経由でファイルをアップロードするサンプルをGitHubにpushしました。 自分用の備忘録も兼ねて。。(たまにやり方を忘れる) https://github.com/Nobuhisa/FsWebApiSample メインとなるファイルは以下の2つ。 サーバ : FileController.fs クライアント :…

DIコンテナ使ってますか

海外のStack Overflowなどを見ていると、 "DI vs (Abstract) Factory Pattern" "DI vs Service Locator Pattern" という類の議論(質問)が多数見受けられる。 ( 例えば: http://stackoverflow.com/questions/557742/dependency-injection-vs-factory-pattern…