並び順

ブックマーク数

期間指定

  • から
  • まで

41 - 50 件 / 50件

新着順 人気順

ActiveMQの検索結果41 - 50 件 / 50件

  • HornetQ 2.0は、ベンチマークでActiveMQ 5.3より早いが、ActiveMQ 6は、どうだろう。

    Spring BootによるAPIバックエンド構築実践ガイド 第2版 何千人もの開発者が、InfoQのミニブック「Practical Guide to Building an API Back End with Spring Boot」から、Spring Bootを使ったREST API構築の基礎を学んだ。この本では、出版時に新しくリリースされたバージョンである Spring Boot 2 を使用している。しかし、Spring Boot3が最近リリースされ、重要な変...

      HornetQ 2.0は、ベンチマークでActiveMQ 5.3より早いが、ActiveMQ 6は、どうだろう。
    • ActiveMQ + Stomp - D-6 [相変わらず根無し]

      ActiveMQ + Stomp 今度提案をする某プロジェクトのためにGearmanやTheSchwartzをみていたら、最終的にはActiveMQを発見。知らんかったわぁ、不勉強。 ちなみに渡したいのバイナリデータなので、こんな感じで ./bin/activemq # Publisher use strict; use Net::Stomp; use MIME::Base64; use Storable qw(freeze); my $stomp = Net::Stomp->new( { hostname => 'localhost', port => '61613' } ); $stomp->connect( { login => 'hello', passcode => 'there' } ); for (1..100_000) { my $h = encode_base64(fre

      • New features in ActiveMQ 5.9! | Christian Posta — Software Blog

        So ActiveMQ 5.9 is due out from the community any day now! I just did a talk at the local Phoenix JUG about it, and did some live demos of some of the new features. I’ve posted by slides (below) and also a couple of videos I prepared before the talk. Some of the new features include: New default message store (LevelDB) LevelDB replication New management console (HawtIO) New broker: plugin for came

        • ActiveMQ

          Features > Destination Features > Delete Inactive Destinations Inactive Destination An ‘inactive’ destination is one that has had no messages pending and no consumers connected for some configured period of time. By default the broker does not check for inactive destinations. This as governed by the default values for the following options: schedulePeriodForDestinationPurge="0" and gcInactiveDesti

          • Apache ActiveMQ -- Index

            Apache ActiveMQ is the most popular and powerful open source Message Broker and Enterprise Integration Patterns provider. Apache ActiveMQ is fast, supports many Cross Language Clients and Protocols, comes with easy to use Enterprise Integration Patterns and many advanced features while fully supporting JMS 1.1 and J2EE 1.4. Apache ActiveMQ is released under the Apache 2.0 License Grab yourself a D

            • GlassFish4.0でActiveMQを利用する - Qiita

              # ActiveMQをダウンロード mkdir /tmp/activemq && cd /tmp/activemq wget http://ftp.tsukuba.wide.ad.jp/software/apache/activemq/5.9.1/apache-activemq-5.9.1-bin.tar.gz tar xzf apache-activemq-5.9.1-bin.tar.gz sudo mv apache-activemq-5.9.1 /opt/activemq # 専用ユーザー作成 sudo adduser --disabled-login --gecos 'ActiveMQ' activemq sudo chown -R activemq:activemq /opt/activemq # スタートアップ設定 sudo ln -sf /opt/activemq/bin/a

                GlassFish4.0でActiveMQを利用する - Qiita
              • 6.ActiveMQについて

                2007.02.14 株式会社四次元データ 宮澤了祐 JMS 6章 ActiveMQについて 6.1. 埋め込みMessageBrokerの使用 6.2. ActiveMQConnectionFactoryの取得方法 6.3. メッセージの永続性 6.4. ActiveMQ4.0系の変更点と新機能 6.1.埋め込みMessageBrokerの使用 Connectionオブジェクトを作成する際に自動的にサーバーを起動するように設定することが出来ます。 ActiveMQConnectionFactory factory = new ActiveMQConnectionFactory(); factory.setUseEmbeddedBroker(true); Connection connection = factory.createConnection(); ActiveMQConnecti

                • A quick message queue benchmark: ActiveMQ, RabbitMQ, HornetQ, QPID, Apollo… | Muriel's Tech Blog

                  Lately I performed a message queue benchmark, comparing several queuing frameworks (RabbitMQ, ActiveMQ…). Those benchmarks are part of a complete study conducted by Adina Mihailescu, and everything was presented at the April 2013 riviera.rb meet-up. You should definitely peek into Adina’s great presentation available online right here. Setup and scenarios So I wanted to benchmark brokers, using di

                  • macosxでActiveMQを立ち上げるには - 山羊の頭の日記

                    1. apache-activemq-5.2.0-bin.tar.gzをダウンロード http://activemq.apache.org/activemq-520-release.html 2. Documents/workspace/activemq/に展開 3. wrapper.confを変更 解凍して作成されたapache-activemq-5.2.0にbin/macosxがある。このbin/macosx/wrapper.confの23〜25行を以下のように書き換える。 set.default.ACTIVEMQ_HOME=/Users/XXXX/Documents/workspace/activemq/apache-activemq-5.2.0 set.default.ACTIVEMQ_BASE=/Users/XXXX/Documents/workspace/activemq/ap

                      macosxでActiveMQを立ち上げるには - 山羊の頭の日記
                    • Python messaging: ActiveMQ and RabbitMQ – Dejan Bosanac

                      I found myself recently with a task of testing various Python messaging clients. In this article I’ll present my findings regarding performance and scalability on two Python clients connecting to ActiveMQ and RabbitMQ message brokers. For ActiveMQ Python client, I used pyactivemq library version 0.1.0. It’s basically a Python wrapper for ActiveMQ-CPP library, allowing Python clients to communicate