タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

queueに関するhrsttのブックマーク (2)

  • ポイント重点対策 待ち行列理論

    待ち行列理論(Queue Theory) Blue Dreams → ソフトウェア開発の対策 → 待ち行列理論(ポイント重点対策) Make:2001/03/09 Last-Update:2001/09/13 2001/09/13 「計算問題 1.平均到着率」でのミスを修正しました。 ここでは、ソフトウェア開発技術者試験だけでなく、ネットワーク試験(テクニカルエンジニア)の基礎にもなる待ち行列理論について解説します。待ち行列理論の範囲は広いため、ここですべてを取り上げる事は不可能(1冊のを書ける量になりえませんし、大学教養範囲の数学の能力も必要とされる。)ですので、あくまで試験対策用として書いています。 過去の試験から見て、問題の種類は次の2種類に分類されます。(下線付きの問題を下で解説しています) 1.待ち行列(M/M/1)を考慮した計算問題、レスポンスタイムの算出など H8 

    hrstt
    hrstt 2011/05/27
  • Q4M - Tutorial

    A Q4M table represents a single queue. A row of a Q4M table represents a single message. To create a message queue, use CREATE TABLE statement with the engine name ``queue''. mysql> CREATE TABLE my_queue (v1 int not null, v2 varchar(255)) ENGINE=queue; If you need to route messages to more than one subscriber, create table for each of them. You can create any number of Q4M tables. To send a messag

  • 1