SlideShare a Scribd company logo
1 of 59
@classyhacker
Go - a key language in 

enterprise application development?
Aarti Parikh, Engineering Manager@PayPal

QCon SF 2018
InfoQ.com: News & Community Site
• Over 1,000,000 software developers, architects and CTOs read the site world-
wide every month
• 250,000 senior developers subscribe to our weekly newsletter
• Published in 4 languages (English, Chinese, Japanese and Brazilian
Portuguese)
• Post content from our QCon conferences
• 2 dedicated podcast channels: The InfoQ Podcast, with a focus on
Architecture and The Engineering Culture Podcast, with a focus on building
• 96 deep dives on innovative topics packed as downloadable emags and
minibooks
• Over 40 new content items per week
Watch the video with slide
synchronization on InfoQ.com!
https://www.infoq.com/presentations/
go-lang-design
Purpose of QCon
- to empower software development by facilitating the spread of
knowledge and innovation
Strategy
- practitioner-driven conference designed for YOU: influencers of
change and innovation in your teams
- speakers and topics driving the evolution and innovation
- connecting and catalyzing the influencers and innovators
Highlights
- attended by more than 12,000 delegates since 2007
- held in 9 cities worldwide
Presented at QCon San Francisco
www.qconsf.com
@classyhacker
Go’s popularity in the last few years is hard to miss. It
has jumped up in the Tiobe index and is holding steady. 
The language has had a significant impact on the startup
scene due to its simplicity, speed and enabling
productivity in engineering teams. Large companies are
starting to take notice. We also see a huge amount of
community involvement in Go. If you have lived through
the growth of Java in the late 90’s, this feels a bit like
déjà vu. In this talk, I will go over the Go language
design and talk about why Go matters in the age of
multicores and cloud-native computing.
@classyhacker
Enterprise languages
• Java is by far the most popular

• C#/.Net 

• JavaScript for web development

• Python, Ruby, NodeJS for Web, Scripting and Devops
@classyhacker
An enterprise language should
• Be easy to learn, 

• Be easy to read, debuggable

• Be safe

• Be stable

• Scale on modern hardware with multi core processors

• Have good tooling

• Dependency management

• Scale across teams with diverse skills

• Be easy to deploy

• Have a strong community

• Have good libraries
@classyhacker
Java
• Was created to replace C++

• Write once run anywhere was ground breaking

• Developer productivity

• Static type checking

• Steady growth - first release 1995

• Garbage collection, memory safety allowed focus on business logic

• Stable JVM and continuously improving performance

• Java 2 -> Java 5(Generics)-> Java 8(Lambda)

• Has been backward compatible with every release

• Libraries helped developers hit the ground running

• Easy to learn

• Cheaper development costs
@classyhacker
Growth of Java
• Browser applets to Server side

• J2EE to SOA, Web Services, lots of XML

• ORM’s, JBoss Marc Fleury

• JUnit + Xtreme programming, Kent Beck

• Design Patterns, Refactoring, Martin Fowler

• IDE support, Eclipse eco-system, IntelliJ

• Dependency Injection, Spring, AOP

• Dependency management, Maven

• JMS, Active MQ, Message Oriented Middleware
@classyhacker
Java problems
• Developer velocity plateaued

• Verbose, Tedious, Repetitive

• Epitome of OOP 

• Slow startups times with JBoss, Spring Boot to the rescue

• Oracle taking over Java, license worries

• JVM abstraction - Developers unaware of how their code is
running

• Concurrency (OS threads map to Java Threads)
@classyhacker
Scripting languages for web dev
• Javascript/NodeJS/Express

• Ruby/Ruby on Rails

• Python/Django 

• PHP/Laravel
@classyhacker
Rise of Frameworks
• Ruby on Rails, Sinatra, EventMachine

• Express, Meteor, Hapi, Sails, Lodash…

• Django, Twisted

• Succeeding due to community work
@classyhacker
Discontent
• Framework fatigue

• Dependency fatigue

• Vulnerabilities

• Single Threaded

• Global interpretor lock

• Callback hell

• Build tools are slow

• Need a book for the good parts
@classyhacker
FP on the JVM
• Clojure - 2007

• Scala - 2004

• Expensive development cost

• Hard to learn

• Better concurrency

• Enterprise adoption is limited

• FP purists

• Community
@classyhacker
Go
@classyhacker
Creators
Robert Griesemer 

(V8 engine, Java Hotspot VM, Chubby)

Rob Pike 

(Unix Team & Plan9 & UTF-8) 

Ken Thompson 

(Unix)
@classyhacker
Did the C++ committee really believe that what was
wrong with C++ was that it didn't have enough
features? - Rob Pike
@classyhacker
Robert: Starting point: C, fix some obvious flaws, remove
crud, add a few missing features.
Rob: name: 'go'.  you can invent reasons for this name but it
has nice properties. it's short, easy to type. tools: goc, gol,
goa.  if there's an interactive debugger/interpreter it could
just be called 'go'.  the suffix is .go.
Robert Empty interfaces: interface {}. These are
implemented by all interfaces, and thus this could take the
place of void*.
In the end of course it came out quite different
from either C or C++
@classyhacker
Simple
• 25 keywords 

• Feel like Ruby, Runs like C

• Readability is Paramount - Rob Pike

• Simple code is debuggable

• Simple can be expressive

• Can scale on large codebases with developer churn
@classyhacker
Stable
Go 1.11 Release notes
There are no changes to the language spec.
Go 1.10 Release notes
There are no significant changes to the language spec.
Go 1.9 Release notes
There are 2 changes the Language spec.
Go 1.8 Release notes
There is 1 change in the Language spec.
@classyhacker
Design
• Natively compiled

• Statically typed

• Open source

• Garbage collected 

• CSP Concurrency

• Fast compile times
@classyhacker
Q. Why is my trivial program
such a large binary?
➔ ls -l
total 3144
-rwxr-xr-x 1 aarti staff 1603520 Feb 2 18:57 helloworld
-rw-r--r--@ 1 aarti staff 72 Feb 2 18:57 helloworld.go
@classyhacker
“The linker in the gc tool chain
creates statically-linked binaries by
default. All Go binaries therefore
include the Go run-time, along with
the run-time type information
necessary to support dynamic type
checks, reflection, and even panic-
time stack traces.”
@classyhacker
Compiler
Before 1.5 faster, written in C

With Go 1.5 compiler was rewritten from C to Go 

`go build -i` Dependency caching

Support for Assembly, Math libraries are in assembly

GOOS
const goosList = "aix android darwin dragonfly freebsd hurd js linux nacl netbsd
openbsd plan9 solaris windows zos “
GOARCH
const goarchList = "386 amd64 amd64p32 arm armbe arm64 arm64be ppc64 ppc64le
mips mipsle mips64 mips64le mips64p32 mips64p32le ppc riscv riscv64 s390 s390x
sparc sparc64 wasm "
@classyhacker
Runtime
• Runtime performance is foremost on the
@classyhacker
Tooling
@classyhacker
Testing
@classyhacker
Goroutines
• Goroutines - light weight threads

•
@classyhacker
Go 2
• Go 2 design proposals

• Go 2 will most like be backward compatible 

•
@classyhacker
Memory safety
• Garbage collected

• Go Run time

•
@classyhacker
JVM vs Go runtime
@classyhacker
DevOps
• Docket

• Kubernetes

• CI/CD

• Tooling/CLI

• Terraform, Hashicorp stuff etc in Go
@classyhacker
Go vs C
@classyhacker
Java vs Go
@classyhacker
Node vs Go
@classyhacker
Go hits the sweet spot
@classyhacker
Scale
• GOMAXPROCS - multiCore

• GOOS - Multiplatformn

• Single Binary

• Static linking - add command for GC toolchain

•
@classyhacker
Standard Library
@classyhacker
Design Philosophy
• Simplicity is complicated
@classyhacker
Companies using Go
@classyhacker
Ruby/Ruby on rails
• Did not stick

• Could not scale

• Patches - event machine etc etc

• JRuby ( JVM again)
@classyhacker
Scala
• Hard

• Twitter moved from rails to Scala

• I hear they are building Go framework teams

•
@classyhacker
Microservices with Go
• API deve

• Tooling etc

•
@classyhacker
Clojure
• Too hard

•
@classyhacker
Rust
• Learning Curve

• More suited for embedded, take the effort to learn 

• When needed

•
@classyhacker
Community
@classyhacker
Scaling in enterprises
• Frameworks in Go

• Supporting Go in production

•
@classyhacker
High performance apps
• CGO

• Tweak memory if need be with unsafe

• Use assembly

• Usage of assembly in core libraries
@classyhacker
Multi platform build
GOOS=windows GOARCH=i386 go build
Goreleaser
@classyhacker
Decoupling
• Interfaces

• Composition over inheritance

• Encapsulation ( package, Internal etc. )

•
@classyhacker
API
• Swagger support

• GRPC/HTTP2 1st class support

•
@classyhacker
Networking
@classyhacker
Dependency management
• Vendor directory
@classyhacker
Writing Go frameworks
@classyhacker
From X ToGo
• https://github.com/golang/go/wiki/FromXToGo
@classyhacker
Server language
@classyhacker
Serverless
@classyhacker
Crypto/blockchain
@classyhacker
IPFS
Watch the video with slide
synchronization on InfoQ.com!
https://www.infoq.com/presentations/
go-lang-design

More Related Content

What's hot

[artifactconf] Github for People Who Don't Code
[artifactconf] Github for People Who Don't Code[artifactconf] Github for People Who Don't Code
[artifactconf] Github for People Who Don't Code
Christopher Schmitt
 
Dynamic Languages on the JVM
Dynamic Languages on the JVMDynamic Languages on the JVM
Dynamic Languages on the JVM
elliando dias
 
Code Hosting: The Key to Autonomous, Self-Service Development
Code Hosting: The Key to Autonomous, Self-Service DevelopmentCode Hosting: The Key to Autonomous, Self-Service Development
Code Hosting: The Key to Autonomous, Self-Service Development
Rachel Maxwell
 

What's hot (20)

BP-10 Keeping Your Sanity – Rapid Development & Deployment Tools
BP-10 Keeping Your Sanity – Rapid Development & Deployment ToolsBP-10 Keeping Your Sanity – Rapid Development & Deployment Tools
BP-10 Keeping Your Sanity – Rapid Development & Deployment Tools
 
Introduction to Java 7 (OSCON 2012)
Introduction to Java 7 (OSCON 2012)Introduction to Java 7 (OSCON 2012)
Introduction to Java 7 (OSCON 2012)
 
Real World Technologies
Real World TechnologiesReal World Technologies
Real World Technologies
 
Industrialise PHP ~ ZendCon Europe 2013
Industrialise PHP ~ ZendCon Europe 2013Industrialise PHP ~ ZendCon Europe 2013
Industrialise PHP ~ ZendCon Europe 2013
 
[artifactconf] Github for People Who Don't Code
[artifactconf] Github for People Who Don't Code[artifactconf] Github for People Who Don't Code
[artifactconf] Github for People Who Don't Code
 
Jfokus 2016 - A JVMs Journey into Polyglot Runtimes
Jfokus 2016 - A JVMs Journey into Polyglot RuntimesJfokus 2016 - A JVMs Journey into Polyglot Runtimes
Jfokus 2016 - A JVMs Journey into Polyglot Runtimes
 
Eclipse OMR: a modern toolkit for building language runtimes
Eclipse OMR: a modern toolkit for building language runtimesEclipse OMR: a modern toolkit for building language runtimes
Eclipse OMR: a modern toolkit for building language runtimes
 
CI doesn’t start with Jenkins
CI doesn’t start with JenkinsCI doesn’t start with Jenkins
CI doesn’t start with Jenkins
 
Staying Global in an Agile World Presentation
Staying Global in an Agile World PresentationStaying Global in an Agile World Presentation
Staying Global in an Agile World Presentation
 
Free community with deep roots
Free community with deep rootsFree community with deep roots
Free community with deep roots
 
Adopt OpenJDK - Lessons learned and Where we're going (FOSDEM 2013)
Adopt OpenJDK - Lessons learned and Where we're going (FOSDEM 2013)Adopt OpenJDK - Lessons learned and Where we're going (FOSDEM 2013)
Adopt OpenJDK - Lessons learned and Where we're going (FOSDEM 2013)
 
Dynamic Languages on the JVM
Dynamic Languages on the JVMDynamic Languages on the JVM
Dynamic Languages on the JVM
 
Code Hosting: The Key to Autonomous, Self-Service Development
Code Hosting: The Key to Autonomous, Self-Service DevelopmentCode Hosting: The Key to Autonomous, Self-Service Development
Code Hosting: The Key to Autonomous, Self-Service Development
 
OpenStack Networking: Developing and Delivering a Commercial Solution for Lo...
OpenStack Networking:  Developing and Delivering a Commercial Solution for Lo...OpenStack Networking:  Developing and Delivering a Commercial Solution for Lo...
OpenStack Networking: Developing and Delivering a Commercial Solution for Lo...
 
How and Why GraalVM is quickly becoming relevant for developers (ACEs@home - ...
How and Why GraalVM is quickly becoming relevant for developers (ACEs@home - ...How and Why GraalVM is quickly becoming relevant for developers (ACEs@home - ...
How and Why GraalVM is quickly becoming relevant for developers (ACEs@home - ...
 
Microservices with Kubernetes, Docker, and Jenkins
Microservices with Kubernetes, Docker, and JenkinsMicroservices with Kubernetes, Docker, and Jenkins
Microservices with Kubernetes, Docker, and Jenkins
 
Everything-as-code. A polyglot adventure. #DevoxxPL
Everything-as-code. A polyglot adventure. #DevoxxPLEverything-as-code. A polyglot adventure. #DevoxxPL
Everything-as-code. A polyglot adventure. #DevoxxPL
 
Migration tales from java ee 5 to 7
Migration tales from java ee 5 to 7Migration tales from java ee 5 to 7
Migration tales from java ee 5 to 7
 
Jenkins : Pipeline As Code
Jenkins : Pipeline As CodeJenkins : Pipeline As Code
Jenkins : Pipeline As Code
 
From java-to-ruby-book-summary
From java-to-ruby-book-summaryFrom java-to-ruby-book-summary
From java-to-ruby-book-summary
 

Similar to Go - A Key Language in Enterprise Application Development?

RubyStack: the easiest way to deploy Ruby on Rails
RubyStack: the easiest way to deploy Ruby on RailsRubyStack: the easiest way to deploy Ruby on Rails
RubyStack: the easiest way to deploy Ruby on Rails
elliando dias
 

Similar to Go - A Key Language in Enterprise Application Development? (20)

cadec-2017-golang
cadec-2017-golangcadec-2017-golang
cadec-2017-golang
 
The Silver Bullet Syndrome by Alexey Vasiliev
The Silver Bullet Syndrome by Alexey VasilievThe Silver Bullet Syndrome by Alexey Vasiliev
The Silver Bullet Syndrome by Alexey Vasiliev
 
Be faster then rabbits
Be faster then rabbitsBe faster then rabbits
Be faster then rabbits
 
Clojurescript slides
Clojurescript slidesClojurescript slides
Clojurescript slides
 
EKON27-FrameworksExpressiveness.pdf
EKON27-FrameworksExpressiveness.pdfEKON27-FrameworksExpressiveness.pdf
EKON27-FrameworksExpressiveness.pdf
 
Neodev
NeodevNeodev
Neodev
 
Scaling with Symfony - PHP UK
Scaling with Symfony - PHP UKScaling with Symfony - PHP UK
Scaling with Symfony - PHP UK
 
Exploring Ruby on Rails and PostgreSQL
Exploring Ruby on Rails and PostgreSQLExploring Ruby on Rails and PostgreSQL
Exploring Ruby on Rails and PostgreSQL
 
Kiss.ts - The Keep It Simple Software Stack for 2017++
Kiss.ts - The Keep It Simple Software Stack for 2017++Kiss.ts - The Keep It Simple Software Stack for 2017++
Kiss.ts - The Keep It Simple Software Stack for 2017++
 
Cucumber in Practice(en)
Cucumber in Practice(en)Cucumber in Practice(en)
Cucumber in Practice(en)
 
RubyStack: the easiest way to deploy Ruby on Rails
RubyStack: the easiest way to deploy Ruby on RailsRubyStack: the easiest way to deploy Ruby on Rails
RubyStack: the easiest way to deploy Ruby on Rails
 
Go: What's Different ?
Go: What's Different ?Go: What's Different ?
Go: What's Different ?
 
Coding for the cloud - development of modern web applications
Coding for the cloud - development of modern web applicationsCoding for the cloud - development of modern web applications
Coding for the cloud - development of modern web applications
 
Introduction To Web Development & The New Digital Workplace
Introduction To Web Development & The New Digital WorkplaceIntroduction To Web Development & The New Digital Workplace
Introduction To Web Development & The New Digital Workplace
 
Magento 2 Workflows
Magento 2 WorkflowsMagento 2 Workflows
Magento 2 Workflows
 
7 Apache Process Cloudstack Developer Day
7 Apache Process Cloudstack Developer Day7 Apache Process Cloudstack Developer Day
7 Apache Process Cloudstack Developer Day
 
Craft Beer & Clojure
Craft Beer & ClojureCraft Beer & Clojure
Craft Beer & Clojure
 
The tools & technologies behind Resin.io
The tools & technologies behind Resin.ioThe tools & technologies behind Resin.io
The tools & technologies behind Resin.io
 
Introduction to Micronaut - JBCNConf 2019
Introduction to Micronaut - JBCNConf 2019Introduction to Micronaut - JBCNConf 2019
Introduction to Micronaut - JBCNConf 2019
 
Ruby in office time reboot
Ruby in office time rebootRuby in office time reboot
Ruby in office time reboot
 

More from C4Media

More from C4Media (20)

Streaming a Million Likes/Second: Real-Time Interactions on Live Video
Streaming a Million Likes/Second: Real-Time Interactions on Live VideoStreaming a Million Likes/Second: Real-Time Interactions on Live Video
Streaming a Million Likes/Second: Real-Time Interactions on Live Video
 
Next Generation Client APIs in Envoy Mobile
Next Generation Client APIs in Envoy MobileNext Generation Client APIs in Envoy Mobile
Next Generation Client APIs in Envoy Mobile
 
Software Teams and Teamwork Trends Report Q1 2020
Software Teams and Teamwork Trends Report Q1 2020Software Teams and Teamwork Trends Report Q1 2020
Software Teams and Teamwork Trends Report Q1 2020
 
Kafka Needs No Keeper
Kafka Needs No KeeperKafka Needs No Keeper
Kafka Needs No Keeper
 
High Performing Teams Act Like Owners
High Performing Teams Act Like OwnersHigh Performing Teams Act Like Owners
High Performing Teams Act Like Owners
 
Does Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to JavaDoes Java Need Inline Types? What Project Valhalla Can Bring to Java
Does Java Need Inline Types? What Project Valhalla Can Bring to Java
 
Service Meshes- The Ultimate Guide
Service Meshes- The Ultimate GuideService Meshes- The Ultimate Guide
Service Meshes- The Ultimate Guide
 
Shifting Left with Cloud Native CI/CD
Shifting Left with Cloud Native CI/CDShifting Left with Cloud Native CI/CD
Shifting Left with Cloud Native CI/CD
 
CI/CD for Machine Learning
CI/CD for Machine LearningCI/CD for Machine Learning
CI/CD for Machine Learning
 
Fault Tolerance at Speed
Fault Tolerance at SpeedFault Tolerance at Speed
Fault Tolerance at Speed
 
Architectures That Scale Deep - Regaining Control in Deep Systems
Architectures That Scale Deep - Regaining Control in Deep SystemsArchitectures That Scale Deep - Regaining Control in Deep Systems
Architectures That Scale Deep - Regaining Control in Deep Systems
 
ML in the Browser: Interactive Experiences with Tensorflow.js
ML in the Browser: Interactive Experiences with Tensorflow.jsML in the Browser: Interactive Experiences with Tensorflow.js
ML in the Browser: Interactive Experiences with Tensorflow.js
 
Build Your Own WebAssembly Compiler
Build Your Own WebAssembly CompilerBuild Your Own WebAssembly Compiler
Build Your Own WebAssembly Compiler
 
User & Device Identity for Microservices @ Netflix Scale
User & Device Identity for Microservices @ Netflix ScaleUser & Device Identity for Microservices @ Netflix Scale
User & Device Identity for Microservices @ Netflix Scale
 
Scaling Patterns for Netflix's Edge
Scaling Patterns for Netflix's EdgeScaling Patterns for Netflix's Edge
Scaling Patterns for Netflix's Edge
 
Make Your Electron App Feel at Home Everywhere
Make Your Electron App Feel at Home EverywhereMake Your Electron App Feel at Home Everywhere
Make Your Electron App Feel at Home Everywhere
 
The Talk You've Been Await-ing For
The Talk You've Been Await-ing ForThe Talk You've Been Await-ing For
The Talk You've Been Await-ing For
 
Future of Data Engineering
Future of Data EngineeringFuture of Data Engineering
Future of Data Engineering
 
Automated Testing for Terraform, Docker, Packer, Kubernetes, and More
Automated Testing for Terraform, Docker, Packer, Kubernetes, and MoreAutomated Testing for Terraform, Docker, Packer, Kubernetes, and More
Automated Testing for Terraform, Docker, Packer, Kubernetes, and More
 
Navigating Complexity: High-performance Delivery and Discovery Teams
Navigating Complexity: High-performance Delivery and Discovery TeamsNavigating Complexity: High-performance Delivery and Discovery Teams
Navigating Complexity: High-performance Delivery and Discovery Teams
 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 

Recently uploaded (20)

Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 

Go - A Key Language in Enterprise Application Development?