zoukankan      html  css  js  c++  java
  • 使用vertx共享数据

    Using Shared Data with Vert.x

    io.vertx.core.shareddata

    接口计数器



    • 公共接口柜台
      一个异步计数器,可用于跨集群维护一致的计数。
      作者:
      蒂姆·福克斯
      • 方法细节

        • 得到

          无效get(处理程序 < AsyncResult <  >> resultHandler)
          获取计数器的当前值
          参数:
          resultHandler -将传递值的处理程序
        • IncrementAndGet

          无效的crementAndGet 处理程序 < AsyncResult <  >> resultHandler)
          自动增加计数器并返回新计数
          参数:
          resultHandler -将传递值的处理程序
        • getAndIncrement

          void getAndIncrement(Handler < AsyncResult < Long >> resultHandler)
          以原子方式递增计数器,并在递增之前返回值。
          参数:
          resultHandler -将传递值的处理程序
        • 递减并获取

          void decrementAndGet(Handler < AsyncResult < Long >> resultHandler)
          自动减少计数器并返回新计数
          参数:
          resultHandler -将传递值的处理程序
        • addAndGet

          void addAndGet(long value,
                          Handler < AsyncResult < Long >> resultHandler)
          将值自动添加到计数器,然后返回新的计数
          参数:
          value -要添加的值
          resultHandler -将传递值的处理程序
        • getAndAdd

          void getAndAdd(long value,
                          Handler < AsyncResult < Long >> resultHandler)
          将值原子地添加到计数器,然后在添加之前返回值
          参数:
          value -要添加的值
          resultHandler -将传递值的处理程序
        • compareAndSet

          void compareAndSet(期待已久,
                             长值
                             Handler < AsyncResult < Boolean >> resultHandler)
          仅当当前值为期望值时,才将计数器设置为指定值。这是原子发生的。
          参数:
          expected -期望值
          value -新价值
          resultHandler -处理程序将在成功时传递true

    使用vertx共享数据

    Shared data contains functionality that allows you to safely share data between different parts of your application, or 

    共享数据功能允许你安全的在不同的模块、

    different applications in the same Vert.x instance or across a cluster of Vert.x instances.

    或不同的应用、或不同的分布式实例之间共享数据。

    Shared data includes local shared maps, distributed, cluster-wide maps, asynchronous cluster-wide locks and 

    共享数据有多个方式:包括本地共享maps、分布式、宽集群的maps、异步的宽集群锁

    asynchronous cluster-wide counters.

    、异步的宽集群计数器。

    Local shared maps

    Local shared maps allow you to share data safely between different event loops (e.g. different verticles) in the same Vert.x instance.

    本地共享maps允许你在不同的实例之间共享数据。

    Local shared maps only allow certain data types to be used as keys and values. Those types must either be immutable, or certain other types that can be copied like Buffer. In the latter case the key/value will be copied before putting it in the map.

    本地存储只允许某些数据类型被设置为keys和values,这个类型必须不可变的或某些可以被拷贝的类型例如Buffer,在最后keys/values被拷贝进map里。

    This way we can ensure there is no shared access to mutable state between different threads in your Vert.x application so 

    我们可以确定不会有不同线程之间有多个状态。所以

    you don’t have to worry about protecting that state by synchronising access to it.

    你不用担心异步访问的问题。

    Here’s an example of using a shared local map:

    这里有个本地共享的例子。

    1.  
      SharedData sd = vertx.sharedData();
       
       
       
      LocalMap<String, String> map1 = sd.getLocalMap("mymap1");
       
       
       
      map1.put("foo", "bar"); // Strings are immutable so no need to copyLocalMap<String, Buffer> map2 = sd.getLocalMap("mymap2");
       
       
       
      map2.put("eek", Buffer.buffer().appendInt(123)); // This buffer will be copied before adding to map// Then... in another part of your application:map1 = sd.getLocalMap("mymap1");
       
       
       
      String val = map1.get("foo");
       
       
       
      map2 = sd.getLocalMap("mymap2");
       
       
       
      Buffer buff = map2.get("eek");

    Cluster-wide asynchronous maps

    宽集群异步共享maps。

    Cluster-wide asynchronous maps allow data to be put in the map from any node of the cluster and retrieved from any other node.

    宽集群共享map允许从任何集群点、和任何节点上获取共享数据。

    This makes them really useful for things like storing session state in a farm of servers hosting a Vert.x web application.

    You get an instance of AsyncMap with getClusterWideMap.

    这个非常有用,例如存储session状态在一个web应用的集群里。你可以获得一个AsyncMap从getClusterWideMap里。

    Getting the map is asynchronous and the result is returned to you in the handler that you specify. Here’s an example:

    获取map是异步返回的,你可以单独处理返回结果。

    1.  
       
    2.  
       
    3.  
      SharedData sd = vertx.sharedData();

      sd.<String, String>getClusterWideMap("mymap", res -> { if (res.succeeded()) { AsyncMap<String, String> map = res.result(); } else { // Something went wrong! } });

    Putting data in a map

    设置共享数据。

    You put data in a map with put.

    你可以用put方法设置数据。

    The actual put is asynchronous and the handler is notified once it is complete:

    事实上put是异步的,hander里会有通知一旦设置完成。

    1.  
      map.put("foo", "bar", resPut -> {
       
        if (resPut.succeeded()) {
       
          // Successfully put the value
       
        } else {
       
          // Something went wrong!
       
        }
       
      });

    Getting data from a map

    获取数据从map里。

    You get data from a map with get.

    你可以获取数据用get。

    The actual get is asynchronous and the handler is notified with the result some time later

    实际上获取也是异步的,可以在hander里获取结果。

    1.  
      map.get("foo", resGet -> {
       
        if (resGet.succeeded()) {
       
          // Successfully got the value
       
          Object val = resGet.result();
       
        } else {
       
          // Something went wrong!
       
        }
       
      });
    Other map operations

    map的其他操作。

    You can also remove entries from an asynchronous map, clear them and get the size.

    你也可以异步删除、清空map里的实例、和获取map的size。

    See the API docs for more information.

    查看更多。

    Cluster-wide locks

    宽集群的锁。

    Cluster wide locks allow you to obtain exclusive locks across the cluster - this is useful when you want to do something or access a resource on only one node of a cluster at any one time.

    宽集群锁。

    Cluster wide locks have an asynchronous API unlike most lock APIs which block the calling thread until the lock is obtained.

    宽集群锁有一个异步的方法不像大部分锁的api,它锁的时候会阻止访问线程直到锁成功。

    To obtain a lock use getLock.

    获取一个锁用getLock。

    This won’t block, but when the lock is available, the handler will be called with an instance of Lock, signifying that you now own the lock.

    这个不阻止,当锁有效,则handler会被执行,标示着你用了这个锁。

    While you own the lock no other caller, anywhere on the cluster will be able to obtain the lock.

    When you’ve finished with the lock, you call release to release it, so another caller can obtain it.

    1.  
      sd.getLock("mylock", res -> {
       
        if (res.succeeded()) {
       
          // Got the lock!
       
          Lock lock = res.result();
       
       
       
          // 5 seconds later we release the lock so someone else can get it
       
       
       
          vertx.setTimer(5000, tid -> lock.release());
       
       
       
        } else {
       
          // Something went wrong
       
        }
       
      });

    You can also get a lock with a timeout. If it fails to obtain the lock within the timeout the handler will be called with a failure:

    你可以延时来获取某个锁,如果获取锁超时失败了,会返回一个失败failure。

    1.  
      sd.getLockWithTimeout("mylock", 10000, res -> {
       
        if (res.succeeded()) {
       
          // Got the lock!
       
          Lock lock = res.result();
       
       
       
        } else {
       
          // Failed to get lock
       
        }
       
      });

    Cluster-wide counters

    集群计数器。

    It’s often useful to maintain an atomic counter across the different nodes of your application.

    如果你经常用一个原子的计数器在不同的节点之间。

    You can do this with Counter.

    你可以用Counter来做。

    You obtain an instance with getCounter:

    通过getCounter来获得。

    1.  
      sd.getCounter("mycounter", res -> {
       
        if (res.succeeded()) {
       
          Counter counter = res.result();
       
        } else {
       
          // Something went wrong!
       
        }
       
      });

    Once you have an instance you can retrieve the current count, atomically increment it, decrement and add a value to it using the various methods.

    一旦你获取了一个实例你可以获取当前计数,原子的,可增长,可减少的,可设置的通过各种方法。

    See the API docs for more information.

  • 相关阅读:
    前端主页
    配置站点
    前台
    数据库配置
    后台:Django项目创建
    虚拟环境的搭建
    pip安装源
    AngularJS Scope(作用域)
    scala中的匿名函数 ==> 简单示例
    scala中的内部类 ==> 简单示例
  • 原文地址:https://www.cnblogs.com/endv/p/12814470.html
Copyright © 2011-2022 走看看