www.couchbase.com Open in urlscan Pro
23.206.172.55  Public Scan

Submitted URL: https://go.couchbase.com/MzAyLUdKWS0wMzQAAAGVhaAHWfsEcU_1fE7Z5TDsGfuY2MOqagzJ-CnTI0EDHQulyqMPvF79NGBSBko4SzBF_AbH_LM=
Effective URL: https://www.couchbase.com/?mkt_tok=MzAyLUdKWS0wMzQAAAGVhaAHWT75gmyFuqxj5MLW3r__Gcw7eLMdZ54pRPjeGBdm1CnSvAlix03rY8GMt6JiIBB...
Submission: On September 13 via api from CA — Scanned from CA

Form analysis 0 forms found in the DOM

Text Content

 * Products
   
   * * * PLATFORM
         
          * Couchbase CapellaDatabase-as-a-Service
       
       * SELF-MANAGED
         
          * Couchbase ServerOn-prem, multicloud, community
     
     * * SERVICES
         
          * Artificial Intelligence GenAI, coding assistance, RAG
          * Search Full-text, hybrid, geospatial, vector
          * MobileEmbedded NoSQL, cloud to edge sync, offline-first
          * Columnar AnalyticsReal-time, multisource analytics
       
       * CAPABILITIES
         
          * In-memory ArchitectureSpeed, scale, availability
          * Build Flexible AppsJSON, SQL++, multipurpose
          * Cloud AutomationKubernetes Operator
          * Dev ToolsSDKs, integrations, Capella iQ
   
   * * * WHY COUCHBASE?
         
         Developers and enterprises choose Couchbase for their mission-critical
         applications.
         
         See Why
         
         VECTOR SEARCH
         
         Vector search delivers nearest-neighbor results, without needing a
         direct match.
         
         Learn More
 * Solutions
   
   * * * BY USE CASE
         
          * Artificial Intelligence
          * Caching and Session Management
          * Adaptive Product Catalog
          * Smart Personalization & Profiles
          * Adaptive Field Services
          * Real-Time Analytics for AI
          * See all use cases
     
     * * BY INDUSTRY
         
          * Energy & Utilities
          * Gaming
          * Healthcare
          * Entertainment
          * Retail
          * Travel & Hospitality
          * See all industries
     
     * * BY APPLICATION NEED
         
          * Application Performance
          * Distributed Workloads
          * Application Flexibility
          * Mobile, IoT, & Edge
          * Developer Productivity
          * High Cost Of Operations
          * See all application needs
 * Developers
   
   * * * POPULAR DOCS
         
          * Capella Overview
          * Server Overview
          * Mobile & Edge Overview
          * Connecting Apps (SDKs)
          * Tutorials & Samples
          * Docs Home
     
     * * BY DEVELOPER ROLE
         
          * Backend
          * Full Stack
          * Mobile
          * Ops / DBA
          * Developers Home
     
     * * CAPELLA PLAYGROUND
         
         START A FREE CAPELLA TRIAL
         
         Try the Couchbase Capella Playground.
         
         Sign Up
 * Resources
   
   * * * RESOURCE CENTER
         
          * Blogs
          * Webcasts & Events
          * Videos & Presentations
          * Whitepapers
          * See all resources
     
     * * EDUCATION
         
          * Academy
          * Certification
          * Forums
          * Support Login
          * Documentation
     
     * * VECTOR SEARCH
         
         WHAT'S VECTOR SEARCH AND WHY IS IT IMPORTANT?
         
         Get a quick overview of vectors, vector search, use cases, and key
         features.
         
         Watch
 * Company
   
   * * * ABOUT
         
          * About Us
          * Leadership
          * Customers
          * Investors
          * Blog
          * Newsroom
          * Careers
     
     * * PARTNERSHIPS
         
          * Find a Partner
          * Become a Partner
          * Register a Deal
     
     * * OUR SERVICES
         
          * Professional Services
          * Enterprise Support
     
     * * PARTNERS: REGISTER A DEAL
         
         READY TO REGISTER A DEAL WITH COUCHBASE?
         
         Let us know your partner details and more about the prospect you are
         registering.
         
         Start here
         
         MARRIOTT
         
         Marriott chose Couchbase over MongoDB and Cassandra for their reliable
         personalized customer experience.
         
         Learn more
 * Pricing
 * Try Free
 * Sign In
 * search




FREE AI-ASSISTED DATABASE FOR DEVELOPERS


THE AI-READY, CLOUD DATABASE FOR MODERN APPLICATIONS WITH SPECTACULAR
PERFORMANCE AND VERSATILITY

Read the blog

 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 
 * 

Whitepaper


CHOOSE THE RIGHT DATABASE FOR YOUR MOBILE APPS

Read now
Product


ENABLE CLOUD TO EDGE AI WITH VECTOR SEARCH IN COUCHBASE MOBILE, NOW AVAILABLE!

Read Whats New!
Analytics


REAL-TIME ANALYTICS FOR JSON WITH CAPELLA COLUMNAR, NOW AVAILABLE!

Check it Out
Whitepaper


CHOOSE THE RIGHT DATABASE FOR YOUR MOBILE APPS

Read now
Product


ENABLE CLOUD TO EDGE AI WITH VECTOR SEARCH IN COUCHBASE MOBILE, NOW AVAILABLE!

Read Whats New!
 * 1
 * 2
 * 3


WHY COUCHBASE?

Couchbase is an award-winning distributed NoSQL cloud database that delivers
unmatched versatility, performance, scalability, and financial value for all of
your cloud, mobile, analytic, AI, and edge computing applications. Couchbase
embraces AI with coding assistance for developers, real-time analytics, and
cloud to edge vector search for their applications.

HIGH PERFORMANCE TO LOWER TCO

Couchbase offers impressive memory-first performance for your important
applications. And, workloads can be performance-tuned for each application which
can dramatically lower operating costs.

Read more about TCO
Copy Code


const bucket = cluster.bucket('travel.sample');
const collection = bucket.defaultCollection();
await collection.upsert('user_1024', {
    'name' : 'Don Chamberlin',
    'tags' : ['SQL', 'SQL++']
})
const result = await collection.get('user_1024');
console.log(result);


DEVELOPER-FRIENDLY

Couchbase Capella combines the schema flexibility of JSON documents with the
ease of AI-assisted coding to help developers build distributed, transactional
applications in their favorite languages.

Read more about Capella iQ
Copy Code


SELECT
    a.name,
    COUNT(r.airline) AS numberOfRoutes
FROM 'travel-sample'. inventory.route AS r
JOIN 'travel-sample'. inventory.route AS a ON KEYS r.airlineid 
WHERE a.country = "United States"
GROUP BY a.name
ORDER BY numberOfRoutes DESC;


VERSATILITY WITHOUT COMPLEXITY

Couchbase does the work of multiple databases, including key-value, JSON, SQL,
text and vector search, graph, time-series, eventing, and Columnar analytics.
This simplifies your data architecture without sacrificing features for your
AI-powered adaptive application.

Read the AI blog
Copy Code


// key/value
await collection.upsert('destination:1000', { name: 'Paris' });
// full text search
const result =  await cluster.searchQuery("travel-fts-index",
    couchbase.SearchQuery.match('Eiffel Tower'), { limit: 10 }
);
// SQL++
const sqlQuery = 'SELECT name FROM `travel` WHERE country = "France"';
const sqlResult = await cluster.query(sqlQuery);



Why Couchbase


DISTRIBUTED DATABASE ARCHITECTURE

User-centric, modern applications have unique requirements including the need
for multiple data access patterns that reduce architectural complexity, offer
mobility, and superior distributed performance across your favorite cloud.

AI-READY COUCHBASE ENTERPRISE SERVER

Robust, high-performance, transactional NoSQL database with SQL for JSON.

Explore Couchbase Server

COUCHBASE CAPELLA COLUMNAR

Fully managed real-time analytics for JSON with Zero ETL.

Explore Capella Columnar

COUCHBASE MOBILE WITH VECTOR SEARCH

Mobile database with vector search and edge sync services.

Explore Couchbase Mobile

CLOUD DEPLOYMENT ON YOUR TERMS

Choose your cloud and choose who manages the database.

Explore Autonomous Operator


DEVELOPMENT TEAMS HAVE SPECIAL USE CASES TO SOLVE

Developers and architects hate complex, unscalable data architectures because
they slow down applications, increase costs, and crush productivity. Couchbase
helps developers address these use case issues from every angle.

FIX SLOW APPLICATION PERFORMANCE

Increase application responsiveness to users and server-side systems.

Learn more

IMPROVE APPLICATION FLEXIBILITY

Use JSON to build your AI-powered application.

Learn more

CREATE MOBILE, EDGE, AND IOT APPS

Save and modify data with or without an internet connection.

Learn more

REDUCE THE COST OF OPERATIONS

Consolidate technology, optimize performance, and speed up development.

Learn more

ENABLE DISTRIBUTED WORKLOADS

Global clustering to offer high availability and performance.

Learn more

BOOST PRODUCTIVITY

Let developers choose from familiar and favorite tools and languages.

Learn more



INTEGRATE SMOOTHLY WITH OUR CLOUD PARTNERS

Easily deploy and manage your cloud strategy with the leading public cloud
providers and services.

Explore Our Partners Become a partner
 * 
 * 
 * 
 * 

> “Enterprise-class boxes cost lots of money. We can scale and be highly
> available with commodity hardware.”

Thomas Vidnovic, Solutions Architect, Marriott International
4K transactions per second
30M+ documents
Read Customer Story See all stories

> “We found that the replication technology across data centers for Couchbase
> was superior, especially for large workloads.”

Claus Moldt, CIO, FICO
<1ms response times
24x365 application uptime
Read Customer Story See all stories

> “With less than half the servers, we can increase performance and gain a much
> better scalable architecture.”

Amir Ish-Shalom, Sr. Director of Operations, Viber
15B call and message events/day
60% reduction in total servers
Read Customer Story See all stories

> “Couchbase is a highly scalable distributed data store that plays a critical
> role in our caching systems.”

Michael Kehoe, Sr. Staff Site Reliability Engineer, LinkedIn
10M+ queries per second
<4ms latency for 2.5+ billion items
Read Customer Story See all stories

> “Enterprise-class boxes cost lots of money. We can scale and be highly
> available with commodity hardware.”

Thomas Vidnovic, Solutions Architect, Marriott International
4K transactions per second
30M+ documents
Read Customer Story See all stories

> “We found that the replication technology across data centers for Couchbase
> was superior, especially for large workloads.”

Claus Moldt, CIO, FICO
<1ms response times
24x365 application uptime
Read Customer Story See all stories
 * 1
 * 2
 * 3
 * 4

START BUILDING

Check out our developer portal to explore NoSQL, browse resources, and get
started with tutorials.

Develop now

USE CAPELLA FREE

Get hands-on with Couchbase in just a few clicks. Capella DBaaS is the easiest
and fastest way to get started.

Use free

JOIN A FREE CAPELLA TEST-DRIVE

Kick off your Couchbase Certification journey in 90 minutes with a dedicated
instructor.

Get started

3250 Olcott Street
Santa Clara, CA 95054
United States

[gtranslate]


COMPANY

 * About
 * Leadership
 * News & Press
 * Investor Relations
 * Careers
 * Events
 * Legal
 * Contact Us


SUPPORT

 * Developer Portal
 * Documentation
 * Forums
 * Professional Services
 * Support Login
 * Support Policy
 * Training


QUICKLINKS

 * Blog
 * Downloads
 * Online Training
 * Resources
 * Why NoSQL
 * Pricing


FOLLOW US

 * Twitter
 * LinkedIn
 * YouTube
 * Facebook
 * GitHub
 * Stack Overflow
 * Discord

© 2024 Couchbase, Inc. Couchbase and the Couchbase logo are registered
trademarks of Couchbase, Inc. All third party trademarks (including logos and
icons) referenced by Couchbase, Inc. remain the property of their respective
owners.
 * Terms of Use
 * Privacy Policy
 * Cookie Policy
 * Support Policy
 * Do Not Sell My Personal Information
 * Marketing Preference Center





We use cookies to offer you a better browsing experience, analyze site traffic,
personalize content, and serve targeted advertisements. Read about how we use
cookies and how you can control them by clicking "Cookie Settings." By clicking
“Accept All Cookies”, you consent to our use of cookies.
Cookies Settings Accept All Cookies



PRIVACY PREFERENCE CENTRE




 * YOUR PRIVACY


 * STRICTLY NECESSARY COOKIES


 * TARGETING COOKIES


 * PERFORMANCE COOKIES


 * FUNCTIONAL COOKIES

YOUR PRIVACY

We may request cookies to be set on your device when you visit our website. We
use cookies to let us know when you visit our website, how you interact with us,
to enrich your user experience, and to customize your relationship with
Couchbase, including providing you with more relevant advertising. Click on the
different category headings to find out more. You can also change your cookie
preferences. Note that blocking some types of cookies may impact your experience
on our website and the services we are able to offer.

STRICTLY NECESSARY COOKIES

Always Active

These cookies are necessary for the website to function and cannot be switched
off in our systems. They are usually only set in response to actions made by you
which amount to a request for services, such as setting your privacy
preferences, logging in or filling in forms.    You can set your browser to
block or alert you about these cookies, but some parts of the site will not then
work. These cookies do not store any personally identifiable information.

Cookies Details‎

TARGETING COOKIES

Targeting Cookies


These cookies may be set through our site by our advertising partners. They may
be used by those companies to build a profile of your interests and show you
relevant adverts on other sites.    They do not store directly personal
information, but are based on uniquely identifying your browser and internet
device. If you do not allow these cookies, you will experience less targeted
advertising.

Cookies Details‎

PERFORMANCE COOKIES

Performance Cookies


These cookies allow us to count visits and traffic sources so we can measure and
improve the performance of our site. They help us to know which pages are the
most and least popular and see how visitors move around the site.    All
information these cookies collect is aggregated and therefore anonymous. If you
do not allow these cookies we will not know when you have visited our site, and
will not be able to monitor its performance.

Cookies Details‎

FUNCTIONAL COOKIES

Functional Cookies


These cookies enable the website to provide enhanced functionality and
personalisation. They may be set by us or by third party providers whose
services we have added to our pages.    If you do not allow these cookies then
some or all of these services may not function properly.

Cookies Details‎
Back Button


COOKIE LIST

Filter Button
Consent Leg.Interest
checkbox label label
checkbox label label
checkbox label label

Clear
checkbox label label
Apply Cancel
Save Settings
Allow All