etcd增删改查

Posted 离地最远的星

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了etcd增删改查相关的知识,希望对你有一定的参考价值。

技术图片

![image-20191209191301618](C:UsersAneroKissingerAppDataRoamingTypora ypora-user-imagesimage-20191209191301618.png

root@instance-emh5jlpa:~# etcdctl put /user/101/name xiahualou
OK
root@instance-emh5jlpa:~# etcdctl get /user/101
root@instance-emh5jlpa:~# etcdctl get /user/101/name
/user/101/name
xiahualou
root@instance-emh5jlpa:~# etcdctl get /user/101 --prefix //获取所有以/user/101为前缀的
/user/101/name
xiahualou
root@instance-emh5jlpa:~# etcdctl del /user/101 --prefix //删除所有以/user/101为前缀的
1

技术图片

![image-20191209191301618](C:UsersAneroKissingerAppDataRoamingTypora ypora-user-imagesimage-20191209191301618.png

root@instance-emh5jlpa:~# etcdctl put /user/101/name xiahualou
OK
root@instance-emh5jlpa:~# etcdctl get /user/101
root@instance-emh5jlpa:~# etcdctl get /user/101/name
/user/101/name
xiahualou
root@instance-emh5jlpa:~# etcdctl get /user/101 --prefix //获取所有以/user/101为前缀的
/user/101/name
xiahualou
root@instance-emh5jlpa:~# etcdctl del /user/101 --prefix //删除所有以/user/101为前缀的
1




以上是关于etcd增删改查的主要内容,如果未能解决你的问题,请参考以下文章

MyBatis增删改查(步骤详细,由浅入深,适合初学者,只看这一篇就够了)

mysql 的增删改查 实现代码

如何用SSM框架写一个增删改查的功能

如何用SSM框架写一个增删改查的功能

求.net 连ORACLE数据库 增删改查完整代码 代码 要最简单的

关于java 连接数据库实现增删改查的具体功能代码。