- Analytics for the Internet of Things(IoT)
- Andrew Minteer
- 187字
- 2021-07-02 18:59:36
Advantages to CoAP
There are some advantages to CoAP:
- Reduced power requirements: It operates over UDP, which requires minimal overhead for communications. It also allows faster wake up times and extended sleepy states. Taken together, this means batteries last longer for IoT devices.
- Smaller packet size: Another advantage of UDP is small packet sizes. This leads to faster communication cycles. Again, this allows batteries to last longer.
- Security: Like MQTT, this is on both the advantage and disadvantage lists. When Datagram Transport Layer Security (DTLS) is employed over UDP, communication is encrypted and secure. Even though there is some additional overhead required to implement this, you can and should use it.
- Asynchronous communication option: Clients can request to observe a device by setting a flag. The server (IoT device) can then stream state changes to the client as they happen. Either side can cancel the observe request.
- IPv6 based: It was designed from the beginning to support IPv6. This also allows for a multicasting option.
- Resource discovery: Servers can provide a list of resources and media types. The client can then review and discover what is available.
推薦閱讀
- Software Defined Networking with OpenFlow
- OpenCV實例精解
- Swift 3 New Features
- Hands-On Swift 5 Microservices Development
- 軟件測試技術指南
- Android系統級深入開發
- Clojure for Java Developers
- 零基礎學HTML+CSS
- MySQL 8從零開始學(視頻教學版)
- 數據分析與挖掘算法:Python實戰
- Continuous Delivery and DevOps:A Quickstart Guide Second Edition
- Mastering ASP.NET Core 2.0
- HTML5與CSS3權威指南
- Software Architecture with Python
- PHP程序設計經典300例