WEIBO

weibo-logo

rpcx provides enterprise infrastructure open source softwares

#SimilarOrganizations #People #Financial #Event #Website #More

WEIBO

Social Links:

Founded:
2016-08-18

Address:
Beijing, Beijing, China

Country:
China

Website Url:
http://www.rpcx.io

Total Employee:
1+

Status:
Active

Email Addresses:
[email protected]

Total Funding:
1.29 B USD

Technology used in webpage:
Global Site Tag ReCAPTCHA AJAX Libraries API PHP 7 Facebook Pixel DigiCert SSL Google Analytics 4 Java EE New Relic FLoC Opt-Out


Similar Organizations

automox-logo

Automox

Automox is the AI-powered IT automation platform for modern organizations

guardknox-logo

GuardKnox

Guardknox is the first Cybertech Tier Supplier of high-performance & cybersecure computing platforms

iotium-logo

IoTium

IoTium simplifies establishing and managing secure network infrastructure for Industrial IoT.

portt-logo

Portt

Portt is a strategic SaaS workspace that empowers commercial teams, procurement contracts, and supplier management activities.

spaceage-labs-logo

SpaceAge Labs

Revolutionizing operations and maintenance of remote and distributed industrial assets.

tidelift-logo

Tidelift

Tidelift makes open source software work betterโ€”for everyone.

twistlock-logo

Twistlock

Twistlock is cloud native cybersecurity for the modern enterprise.

txone-networks-logo

TXOne Networks

TXOne Networks offers cybersecurity solutions to protect industrial control systems from cyberattacks.


Current Advisors List

frank-tang_image

Frank Tang Board of Director @ Weibo
Board_member

daniel-zhang_image

Daniel Zhang Board Member @ Weibo
Board_member

Current Employees Featured

gaofei-wang_image

Gaofei Wang
Gaofei Wang CEO @ Weibo
CEO
2014-01-01

minna-yu_image

Minna Yu
Minna Yu Head of Weibo HR General Manager @ Weibo
Head of Weibo HR General Manager
2014-04-01

jason-xie_image

Jason Xie
Jason Xie Head Of US Labs @ Weibo
Head Of US Labs

Investors List

alibaba_image

Alibaba Group

Alibaba Group investment in Funding Round - Weibo

Investments List

Date Company Article Money raised
2020-01-14 Ymatou Weibo investment in Series D - Ymatou N/A
2019-09-05 Online Star Dream Works Weibo investment in Series A - Online Star Dream Works N/A
2019-06-28 bsb Weibo investment in Venture Round - bsb 200 M CNY
2019-03-15 Sangan Video Weibo investment in Series A - Sangan Video 10 M CNY
2018-05-08 Microidea Technology Weibo investment in Series B - Microidea Technology 80 M CNY
2018-03-29 30sche.com Weibo investment in Series A - 30sche.com 7.9 M USD
2018-02-27 Modian Weibo investment in Series A - Modian 16 M USD
2017-12-14 Zuoyou Video Weibo investment in Corporate Round - Zuoyou Video 3 M USD
2017-08-14 InMyShow Weibo investment in Series C - InMyShow 600 M CNY
2016-11-22 Miaopai Weibo investment in Series E - Miaopai 500 M USD

Key Employee Changes

Date New article
2021-03-19 Weibo Beats Profit Estimates and Names New Senior Executives

Official Site Inspections

http://www.rpcx.io

  • Host name: 74.48.173.243
  • IP address: 74.48.173.243
  • Location: Canada
  • Latitude: 43.6319
  • Longitude: -79.3716
  • Timezone: America/Toronto

Loading ...

More informations about "Weibo"

GitHub - smallnest/rpcx: Best microservices framework in Go, like ...

See details»

GitHub - p9c/rpcx: rpcx library with rudp and kcp and โ€ฆ

Rpcx is a RPC framework like Alibaba Dubbo and Weibo Motan.. rpcx 3.0 has been refactored for targets:. Simple: easy to learn, easy to develop, easy to intergate and easy to deploy; โ€ฆSee details»

RPCX - Org Chart, Teams, Culture & Jobs - The Org

View RPCX's up-to-date org chart, open roles, and culture details. Find executives, board members, teams, related companies, and more. This is an unverified company page.See details»

rpcx.io - GitHub

Enterprise products in Go. rpcx.io has 31 repositories available. Follow their code on GitHub.See details»

QuickStart · rpcx Programming

#4 defines the result object, it is a zero value and actually rpcx can use it to know type of the result and then unmarshal the result to it. #5 call the remote service and gets the result โ€ฆSee details»

Gateway | rpcx Programming

Gateway is a http gateway for rpcx services. You can write rpc http clients in any programming languages such as Javaใ€Pythonใ€C#ใ€Node.jsใ€Phpใ€C\C++ใ€Rust and others. See โ€ฆSee details»

Transport | rpcx Programming

Rpcx can commnunicate via TCP, HTTP Connect, UnixDomain, QUIC and KCP. You can also access rpcx by a http client via Gateway or HTTP_Invoke. TCP. It is the most used transport. โ€ฆSee details»

example package - github.com/rpcxio/rpcx-examples - Go Packages

Jul 13, 2020 Examples for the latest rpcx. A lot of examples for rpcx. How to run. you should build rpcx with necessary tags, otherwise only need to install rpcx:See details»

GitHub - rpcxio/rpcx-gateway: http gateway for rpcx โ€ฆ

You can deploy this as gateway model. Gateway is running at independent servers. Clients sends http requests to gateways, and gateways translate http requests into raw rpcx requests. And then gateways send raw rpcx requests to โ€ฆSee details»

Introduction · rpcx Programming

RPCX Introduction. rpcx is a RPC framework, faster, more features. rpcx 2.0 and below extends Go standard rpc package but rpcx 3.0 has been refactored and doesn't use Go standard rpc lib anymoreใ€‚ RPCX has developed for those โ€ฆSee details»

Server | rpcx Programming

In rpcx 3.1 we want to add register raw functions that satisfy last three rules, but for rpcx 3.0, you must use method to implement services. you can use RegisterName to register methods of โ€ฆSee details»

Transport · rpcx Programming

Rpcx can commnunicate via TCP, HTTP Connect, UnixDomain, QUIC and KCP. You can also access rpcx by a http client via Gateway or HTTP_Invoke. TCP. It is the most used transport. โ€ฆSee details»

rpcxio/rpcx-examples: examples for the latest rpcx - GitHub

If you install succeefullly, you can run examples in this repository. Enter one sub directory in this repository, go run server.go in one terminal and cd client; go run client.go in another ternimal, โ€ฆSee details»

Server · rpcx Programming

Server. Example: 102basic You can implements services in Server side. The type of services is not important. You can use customized type to keep states or use struct{} or int simplely.. You โ€ฆSee details»

Registry | rpcx Programming

Rpcx provides out-of-box registry for zookeeper, etcd, consul, mDNS, and it aslo provides peer-to-peer, peer-to-multiple registies. For the test purpose, rpcx aslo has a in-process registgry. โ€ฆSee details»

___Mari (organization method) Crossword Clue

1 day ago Here is the answer for the crossword clue ___Mari (organization method) featured in New York Times puzzle on December 13, 2024 . We have found 40 possible answers for this โ€ฆSee details»

Client · rpcx Programming

Client. Example: 101basic Clients use the same transport protocol to send requests to services and get responses from them. type Client struct { Conn net.Conn Plugins PluginContainer // โ€ฆSee details»

Client | rpcx Programming

Client. Example: 101basic Clients use the same transport protocol to send requests to services and get responses from them. type Client struct { Conn net.Conn Plugins PluginContainer // โ€ฆSee details»

linkstock.net © 2022. All rights reserved