Erlang 并发编程

2024-04-15 05:38
文章标签 并发 编程 erlang

本文主要是介绍Erlang 并发编程,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

并发原语

% 创建一个新的进程
Pid = spawn(Fun).
% 向进程发送消息
Pid ! Message.
% 接收一个发送给当前进程的消息
receive ... and.

一个简单的例子

%% area_server.erl
-module(area_server).  
-export([loop/0]). loop() ->receive{rectangle, Width, Ht} -> io:format("Area of rectangle is ~p~n",[Width * Ht]),loop();{circle, R} -> io:format("Area of circle is ~p~n", [3.14159 * R * R]),loop();Other ->io:format("I don't know what the area of a ~p is ~n",[Other]),loop()end.%% cmd
1> c(area_server).
{ok,area_server}
2> Pid = spawn(fun area_server:loop/0).
<0.66.0>
3> Pid ! {rectangle,6,10}.
Area of rectangle is 60
{rectangle,6,10}
4> Pid ! {circle,23}.
Area of circle is 1661.90111
{circle,23}
5> Pid ! {triangle,2,4,5}.
I don't know what the area of a {triangle,2,4,5} is 
{triangle,2,4,5}

客户端服务器介绍

%% area_server_final.erl
-module(area_server_final).  
-export([start/0, area/2]). start() -> spawn(fun loop/0).area(Pid, What) ->rpc(Pid, What).rpc(Pid, Request) ->Pid ! {self(), Request},receive{Pid, Response} ->Responseend.loop() ->receive{From, {rectangle, Width, Ht}} -> From ! {self(), Width * Ht},loop();{From, {circle, R}} -> From !  {self(), 3.14159 * R * R},loop();{From, Other} ->From ! {self(), {error,Other}},loop()end.%% cmd
1> c(area_server_final).
{ok,area_server_final}
2> Pid = area_server_final:start().
<0.66.0>
3> area_server_final:area(Pid,{rectangle,10,8}).
80
4> area_server_final:area(Pid,{circle,4}).      
50.26544

创建一个进程需要花费多少时间

%% processes.erl
-module(processes).
-export([max/1]).max(N) ->Max = erlang:system_info(process_limit),io:format("Maximum allowed processes:~p~n",[Max]),statistics(runtime),statistics(wall_clock),L = for(1, N, fun() -> spawn(fun() -> wait() end) end),{_, Time1} = statistics(runtime),{_, Time2} = statistics(wall_clock),lists:foreach(fun(Pid) -> Pid ! die end, L),U1 = Time1 * 1000 / N,U2 = Time2 * 1000 / N,io:format("Process spawn time=~p (~p) microseconds~n",[U1, U2]).wait() ->receivedie -> voidend.for(N, N, F) -> [F()];
for(I, N, F) -> [F()|for(I+1, N, F)].%% cmd
1> c(processes).
{ok,processes}
2> processes:max(20000).
Maximum allowed processes:262144
Process spawn time=2.5 (4.4) microseconds
ok%% cmd
% 设置进程数创建上限为 50000
# erl -P 50000
1> processes:max(50000).
Maximum allowed processes:262144
Process spawn time=1.4 (2.08) microseconds
ok

带超时的 receive

%% stimer.erl
-module(stimer).
-export([start/2, cancel/1]).start(Time, Fun) -> spawn(fun() -> timer(Time, Fun) end).cancel(Pid) -> Pid ! cancel.timer(Time, Fun) ->receivecancel ->voidafter Time ->Fun()end.%% cmd
1> c(stimer).
{ok,stimer}
2> Pid = stimer:start(5000, fun()->io:format("timer event~n")end).
<0.66.0>
timer event
3> Pid1 = stimer:start(25000, fun()->io:format("timer event~n")end).
<0.68.0>
4> stimer:cancel(Pid1).
cancel

注册进程

%% clock.erl
-module(clock).
-export([start/2, stop/0]).start(Time, Fun) -> register(clock, spawn(fun() -> tick(Time, Fun) end)).stop() -> clock ! stop.tick(Time, Fun) ->receivestop ->voidafter Time ->Fun(),tick(Time, Fun)end.%% cmd
1> c(clock).
{ok,clock}
2> clock:start(5000, fun()->io:format("TICK ~p~n",[erlang:now()])end).
true
3> TICK {1508,672936,54000}
3> TICK {1508,672941,85000}
3> TICK {1508,672946,85000}
3> clock:stop().
stop

作者 Github : tojohnonly , 博客 : EnskDeCode

这篇关于Erlang 并发编程的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/904969

相关文章

C#反射编程之GetConstructor()方法解读

《C#反射编程之GetConstructor()方法解读》C#中Type类的GetConstructor()方法用于获取指定类型的构造函数,该方法有多个重载版本,可以根据不同的参数获取不同特性的构造函... 目录C# GetConstructor()方法有4个重载以GetConstructor(Type[]

Linux 网络编程 --- 应用层

一、自定义协议和序列化反序列化 代码: 序列化反序列化实现网络版本计算器 二、HTTP协议 1、谈两个简单的预备知识 https://www.baidu.com/ --- 域名 --- 域名解析 --- IP地址 http的端口号为80端口,https的端口号为443 url为统一资源定位符。CSDNhttps://mp.csdn.net/mp_blog/creation/editor

【Python编程】Linux创建虚拟环境并配置与notebook相连接

1.创建 使用 venv 创建虚拟环境。例如,在当前目录下创建一个名为 myenv 的虚拟环境: python3 -m venv myenv 2.激活 激活虚拟环境使其成为当前终端会话的活动环境。运行: source myenv/bin/activate 3.与notebook连接 在虚拟环境中,使用 pip 安装 Jupyter 和 ipykernel: pip instal

高并发环境中保持幂等性

在高并发环境中保持幂等性是一项重要的挑战。幂等性指的是无论操作执行多少次,其效果都是相同的。确保操作的幂等性可以避免重复执行带来的副作用。以下是一些保持幂等性的常用方法: 唯一标识符: 请求唯一标识:在每次请求中引入唯一标识符(如 UUID 或者生成的唯一 ID),在处理请求时,系统可以检查这个标识符是否已经处理过,如果是,则忽略重复请求。幂等键(Idempotency Key):客户端在每次

【编程底层思考】垃圾收集机制,GC算法,垃圾收集器类型概述

Java的垃圾收集(Garbage Collection,GC)机制是Java语言的一大特色,它负责自动管理内存的回收,释放不再使用的对象所占用的内存。以下是对Java垃圾收集机制的详细介绍: 一、垃圾收集机制概述: 对象存活判断:垃圾收集器定期检查堆内存中的对象,判断哪些对象是“垃圾”,即不再被任何引用链直接或间接引用的对象。内存回收:将判断为垃圾的对象占用的内存进行回收,以便重新使用。

Go Playground 在线编程环境

For all examples in this and the next chapter, we will use Go Playground. Go Playground represents a web service that can run programs written in Go. It can be opened in a web browser using the follow

深入理解RxJava:响应式编程的现代方式

在当今的软件开发世界中,异步编程和事件驱动的架构变得越来越重要。RxJava,作为响应式编程(Reactive Programming)的一个流行库,为Java和Android开发者提供了一种强大的方式来处理异步任务和事件流。本文将深入探讨RxJava的核心概念、优势以及如何在实际项目中应用它。 文章目录 💯 什么是RxJava?💯 响应式编程的优势💯 RxJava的核心概念

函数式编程思想

我们经常会用到各种各样的编程思想,例如面向过程、面向对象。不过笔者在该博客简单介绍一下函数式编程思想. 如果对函数式编程思想进行概括,就是f(x) = na(x) , y=uf(x)…至于其他的编程思想,可能是y=a(x)+b(x)+c(x)…,也有可能是y=f(x)=f(x)/a + f(x)/b+f(x)/c… 面向过程的指令式编程 面向过程,简单理解就是y=a(x)+b(x)+c(x)

Java并发编程之——BlockingQueue(队列)

一、什么是BlockingQueue BlockingQueue即阻塞队列,从阻塞这个词可以看出,在某些情况下对阻塞队列的访问可能会造成阻塞。被阻塞的情况主要有如下两种: 1. 当队列满了的时候进行入队列操作2. 当队列空了的时候进行出队列操作123 因此,当一个线程试图对一个已经满了的队列进行入队列操作时,它将会被阻塞,除非有另一个线程做了出队列操作;同样,当一个线程试图对一个空

生信代码入门:从零开始掌握生物信息学编程技能

少走弯路,高效分析;了解生信云,访问 【生信圆桌x生信专用云服务器】 : www.tebteb.cc 介绍 生物信息学是一个高度跨学科的领域,结合了生物学、计算机科学和统计学。随着高通量测序技术的发展,海量的生物数据需要通过编程来进行处理和分析。因此,掌握生信编程技能,成为每一个生物信息学研究者的必备能力。 生信代码入门,旨在帮助初学者从零开始学习生物信息学中的编程基础。通过学习常用