All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Download JAR files tagged by tuple with all dependencies

Search JAR files by class name

stream42-core from group net.fortytwo.stream (version 1.2)

Group: net.fortytwo.stream Artifact: stream42-core
Show all versions Show documentation Show source 
 

0 downloads
Artifact stream42-core
Group net.fortytwo.stream
Version 1.2
Last update 31. December 2016
Organization not specified
URL Not specified
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

stream42-all from group net.fortytwo.stream (version 1.2)

continuous query processor for graph tuple streams

Group: net.fortytwo.stream Artifact: stream42-all
Show all versions 
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact stream42-all
Group net.fortytwo.stream
Version 1.2
Last update 31. December 2016
Organization not specified
URL https://github.com/joshsh/stream42
License The MIT License
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

tuples-space-client_3 from group io.github.cake-lier (version 1.0.2)

A client for accessing a remote tuple space server, part of a tuple space middleware.

Group: io.github.cake-lier Artifact: tuples-space-client_3
Show all versions Show documentation Show source 
 

0 downloads
Artifact tuples-space-client_3
Group io.github.cake-lier
Version 1.0.2
Last update 31. July 2023
Organization cake_lier
URL https://github.com/cake-lier/tuples-space-client
License MIT
Dependencies amount 9
Dependencies scala3-library_3, scalactic_3, circe-core_3, circe-generic_3, circe-parser_3, akka-actor-typed_3, akka-stream-typed_3, akka-http_3, tuples-space-core_3,
There are maybe transitive dependencies!

parent from group io.github.cruisoring.functionExtensions (version 1.0)

A library defines throwable functional interfaces, Tuple and Repositories to expedite functional programming with JAVA 8.

Group: io.github.cruisoring.functionExtensions Artifact: parent
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact parent
Group io.github.cruisoring.functionExtensions
Version 1.0
Last update 30. April 2018
Organization not specified
URL https://github.com/Cruisoring/functionExtensions
License MIT
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

jaqen-test from group com.twitter (version 0.1.0)

Group: com.twitter Artifact: jaqen-test
Show documentation Show source 
 

0 downloads
Artifact jaqen-test
Group com.twitter
Version 0.1.0
Last update 03. September 2014
Organization not specified
URL https://github.com/twitter/jaqen
License not specified
Dependencies amount 1
Dependencies jaqen-ntuple,
There are maybe transitive dependencies!

jaqen-ntuple from group com.twitter (version 0.1.0)

Group: com.twitter Artifact: jaqen-ntuple
Show documentation Show source 
 

0 downloads
Artifact jaqen-ntuple
Group com.twitter
Version 0.1.0
Last update 03. September 2014
Organization not specified
URL https://github.com/twitter/jaqen
License not specified
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

jaqen from group com.twitter (version 0.1.0)

A type-safe heterogenous Map or a Named field Tuple depending how you look at it

Group: com.twitter Artifact: jaqen
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact jaqen
Group com.twitter
Version 0.1.0
Last update 03. September 2014
Organization not specified
URL https://github.com/twitter/jaqen
License The Apache Software License, Version 2.0
Dependencies amount 2
Dependencies scala-library, scala-reflect,
There are maybe transitive dependencies!

bullet-transport-common from group com.smileframework.bullet (version 2.0.0-RELEASE)

Group: com.smileframework.bullet Artifact: bullet-transport-common
Show documentation Show source 
 

0 downloads
Artifact bullet-transport-common
Group com.smileframework.bullet
Version 2.0.0-RELEASE
Last update 05. December 2023
Organization not specified
URL Not specified
License not specified
Dependencies amount 6
Dependencies slf4j-api, reactor-core, netty-all, hutool-all, protobuf-java, protobuf-java-util,
There are maybe transitive dependencies!

bullet-transport-server from group com.smileframework.bullet (version 2.0.0-RELEASE)

Group: com.smileframework.bullet Artifact: bullet-transport-server
Show documentation Show source 
 

0 downloads
Artifact bullet-transport-server
Group com.smileframework.bullet
Version 2.0.0-RELEASE
Last update 05. December 2023
Organization not specified
URL Not specified
License not specified
Dependencies amount 1
Dependencies bullet-transport-common,
There are maybe transitive dependencies!

bullet-parent from group com.smileframework.bullet (version 2.0.0-RELEASE)

Bullet RRC 是基于Netty NIO 的私有协议RPC框架。Bullet RPC 能够独立或 者集成到SpringCloud当中使用。通过基准测试 Bullet RPC 性能效率远超基 于HTTP的RPC请求,甚至性能比gRPC与Dubbo还要更快。Bullet RPC 不仅仅对SpringCloud与SpringBoot集成友好,对于RPC请求的安全性上,基于握手请求扩展点能够做到连接的握手时的安全校验,避免未授权的设备接入并访问未授权的系统资源。Bullet RPC 对于SpringCloud的集成也是⾮常全⾯,包括⽀持 SpringCloud 所有的服务注册与发现中间件以及LoadBalancer的完美接⼊。为什么我们要开发 Bullet RPC 和使⽤ Bullet RPC ? 在RPC选型的过程当中我们尝试了很多框架包括 gRPC、Dubbo、 OpenFeign 等。 OpenFeign ⽬前已经在睿本云系统上⼴泛使⽤,优点是SpringCloud的集成 性好,使⽤简单。其通讯是基于HTTP实现,相对简单与通⽤。但是缺点也⾮常明 显,就是慢。由于HTTP的特性问题,每次请求都需要建⽴TCP连接,对于频繁的 RPC请求显然⼒不从⼼。 gRPC 与 Dubbo 性能接近,gRPC使⽤的是基于HTTP2.0作为底层通讯协 议,⽽dubbo则使⽤dubbo协议作为底层通讯协议(dubbo 3.x 已经开始推⼴使⽤ tuple协议其协议是基于HTTP2.0,相对dubbo协议⽽⾔性能稍差)。gRPC由于使⽤了HTTP2.0通⽤性⽽⾔会⽐Dubbo好。但是两者都是同样的问题,对Spring Cloud的集成不够友好(例如不⽀持Eureka),扩展也相对麻烦。由于gRPC的序列化与接⼝定义都 是通过protobuf来定义,使⽤上对于JAVA⽽⾔会不够友好(对于夸语⾔来说是⼀个 不错的选择)。 最后⽆论是什么RPC框架都没有办法提供很好的灵活性,例如你没有办法对 ⼀个RPC接⼝修改他的超时时间与重试次数。⽽且你没有办法让Dubbo 或者 gRPC 很好的兼容Eureka(因为SpringCloud的老项目都深度使用了Eureka)。虽然OpenFeign 能够提供很好的扩展能⼒,但是基于HTTP的 RPC实在是太慢了,在⾯对⽇益增加的业务量每次都优化都显得⾮常⽆⼒。 Bullet RPC 就是基于以上的种种原因提上了开发⽇程。Bullet RPC 不仅仅解决了 上述的所有问题,⽽且同时满⾜了“快”这个必然需求。Bullet RPC 不仅仅⽐ OpenFeign 要快,甚⾄性能也明显超越了gRPC 与 Dubbo。

Group: com.smileframework.bullet Artifact: bullet-parent
There is no JAR file uploaded. A download is not possible! Please choose another version.
0 downloads
Artifact bullet-parent
Group com.smileframework.bullet
Version 2.0.0-RELEASE
Last update 05. December 2023
Organization not specified
URL https://github.com/TonyYan666/Bullet-RPC
License The Apache Software License, Version 2.0
Dependencies amount 3
Dependencies fastjson, lombok, hutool-all,
There are maybe transitive dependencies!



Page 16 from 18 (items total 174)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy