タグ

golangとtoreadに関するyassのブックマーク (3)

  • Why Go is Great (for servers)

    The Go language has some weaknesses compared to other modern languages. It also however has some advantages that allow its users to do things that users of many other languages cannot easily do. In particular, to have a large number of green threads running on a single machine, making it easy to structure a server by having one such thread (goroutine) for each client connection, and to communicate

    Why Go is Great (for servers)
  • What we've been doing with Go

    Almost two years ago CloudFlare started working with Go. What started as an experiment on one network and concurrency heavy project has turned into full, production use of Go for multiple services. Today Go is at the heart of CloudFlare's services including handling compression for high-latency HTTP connections, our entire DNS infrastructure, SSL, load testing and more. I first wrote about CloudFl

    What we've been doing with Go
  • CSPの紹介

    CSPモデルの優位性 産業技術総合研究所 情報技術研究部門 磯部祥尚 1 第9回CSP研究会(2012年3月17日) 0:40 講演内容 2 1. CSPモデルの特徴  CSPモデルとは?  同期型メッセージパッシング通信  イベント駆動  通信相手(チャネル)の自動選択 2. CSPモデルの実装  ライブラリ/言語  CSPモデルの実装例  ローカル/ネットワークチャネル 3. CSPモデルの検証  CSPモデルの記述例  検証ツール  振舞いの等しさ 4. CSPモデルベース開発  並列プログラミングの難しさ  CSPによるモデル化、検証、実装  まとめ 理論 CSP 検証 FDR 実装 JCSP 1:20 CSPモデルの特徴 3  CSPモデルとは?  同期型メッセージパッシング通信  イベント駆動  通信相手(チャネル)の自動選択 1:20 P1

  • 1