Tricks of formatting output ioformat
Formatted output io:format is the first library function (io:format("Hello World") that I use when I come into contact with Erlang. With the in-depth study, it is also the simplest and direct tool I prefer for debug ging. However, in addition to its simple output, it has many advanced uses. Even with it, you can draw brilliant charts ...
Posted on Tue, 07 Sep 2021 20:06:18 -0400 by kulin
Introduction, installation and use of RabbitMQ
RabbitMQ
RabbitMQ
1.MQ introduction
2. Use scenario
2.1. Peak shaving
The origin of peak shaving
2.2 log processing
2.3 Application decoupling
2.4 asynchronous processing
3. Introduction to rabbitmq
4. AMQP agreement
5. Single node installation in Windows Environment
Download the installation pac ...
Posted on Sun, 21 Jun 2020 06:42:52 -0400 by yes3no2
RabbitMQ Learning II: Managing single-node RabbitMQ
Environmental preparation:
[root@master ~]# cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)
[root@master ~]# uname -a
Linux master 3.10.0-514.el7.x86_64 #1 SMP Tue Nov 22 16:42:41 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
[root@master ~]# ip addr
ens33:
inet 192.168.0.201/24 brd 192.168.0.255 scope global ens33
Current Erlang and Ra ...
Posted on Mon, 18 May 2020 12:42:11 -0400 by NeoPuma
erlang international time conversion (ISO 8601)
**What is ISO 8601**
ISO 8601, the international standard of the international organization for standardization, is the representation of date and time. Its full name is the representation of date and time in data storage and interactive information exchange. At present, the latest edition is ISO8601:2004, the first edition is ISO8601:1988, an ...
Posted on Tue, 28 Apr 2020 10:13:12 -0400 by zeddeh
C#Queue Learning Notes: RabbitMQ Installation and Use
Original:
C#Queue Learning Notes: RabbitMQ Installation and Use
1. Environmental Construction
1.1. Since RabbitMQ was developed in Erlang, to install the Erlang runtime environment, download the address: Erlang Official Download CSDN Shared Download
1.2, Download from RabbitMQ RabbitMQ Server Server-side program, select the appropriate ...
Posted on Sat, 11 Apr 2020 21:08:08 -0400 by zymosan
CentOS 6.4 installing Rabbitmq cluster
1,erlang
First, execute the following command to install the dependency
yum -y install make gcc gcc-c++ kernel-devel m4 ncurses-devel openssl-devel unixODBC-devel
yum -y install gcc glibc-devel make ncurses-devel openssl-devel xmlto perl wget
Then go to http://www.erlang.org/downloads to download the source package to the server
Run after e ...
Posted on Thu, 02 Apr 2020 03:00:05 -0400 by Nulletz
Some thoughts on erlang log
Version information
Erlang18.3
Refer to the logger'formatter.erl file in Erlang 22.2
Templated log files
1. Set template format
%% Default log template
-define(DEFAULT_FORMAT_TEMPLATE_HEADER,
[[logger_formatter,header],"\n(",registername,":",pid,":",module,":",line, ")", mfa,":", msg, "\n"]).`
The default log template format is set. Th ...
Posted on Sat, 21 Mar 2020 05:10:06 -0400 by HairyArse
I. RabbitMQ initial understanding and installation
1, What is RabbitMQ?
RabbitMQ is an open source message broker and queue server, which is used to share data between different applications through common protocols. RabbitMQ is written in Erlang language and is based on AMQP protocol.
2, Why RabbitMQ
1. Open source, excellent performance, stable performance guarantee
2. Provide reliable ...
Posted on Wed, 18 Mar 2020 10:36:34 -0400 by jredwilli
CentOS7.X installation RabbitMQ-3.6.10
My personal website
CentOS 7.0 installing RabbitMQ
Preparation before installation
yum install \
m4 \
vim \
wget \
gcc \
gcc-c++ \
make \
cmake \
automake \
autoconf \
readline \
kernel-devel \
ncurses-devel \
openssl-devel \
unixODBC-deve \
readline-devel \
librabbitmq-devel \
-y \
Source installation erlang
erlang Download
erlang-20.0
cd ...
Posted on Tue, 17 Mar 2020 08:29:41 -0400 by kalinkap
Spring cloud pre knowledge + RabbitMQ
1, Introduction to microservice architecture
1. Single architecture
Monomer architecture is also called monomer application. It is to couple all functional modules in one project
1.1 characteristics of single architecture
1. It will be packaged into a separate unit (a unique jar package or war pac ...
Posted on Mon, 24 Feb 2020 08:42:29 -0500 by jawinn