2017-07-01から1ヶ月間の記事一覧

Laravel ServiceProviderの bind / singleton の使い分け

使い分け // singleton を利用すると内容が cache される $this->app->singleton(MemoServiceInterface::class, MemoService::class); // bind でも同様に動作するが、 cache されない $this->app->bind(MemoServiceInterface::class, MemoService::class); …

DDDってなんなの?

今読んでる本 ・「実践ドメイン駆動設計」 ・「現場で役立つシステム設計の原則」 どちらもDDDに関する本。 エバンス本は立ち読みして難しそうで敬遠。(近々読むことになりそうだが) そんな中、「実践ドメイン駆動設計」の読書会に参加し、読み始めた。(…