Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6980179
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:58:51+00:00 2026-05-27T17:58:51+00:00

I have an collection companies and the documents have this structure: id, name, address,

  • 0

I have an collection “companies” and the documents have this structure:

id, name, address, branch, city

I want to add an keyword field that will have an index, so I can do a fulltext search, but how can I add a field to each document?

Thanks for help

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T17:58:52+00:00Added an answer on May 27, 2026 at 5:58 pm

    There’s no schema in MongoDB, so you don’t have to add a field to every document.
    Just start writing new documents with this field, or update old documents when you have this value for them.

    As for indexing, now you can leverage sparse indexes, they will be more efficient if most of your documents don’t have this field.

    Also, you might want this keyword field to be an array. It can be handled more efficiently than a string.

    If you want to add a field with the same value to all documents in a collection, you can use this:

    db.collection.update({}, // update all documents
                        {$set : {keyword : []}}, // or another value
                        false, // is upsert?
                        true)  // is multi-update?
    

    When you do a $set, you can’t use values from other fields. So if this new value is going to be a function of other fields, you have no other option, but to loop through the documents and update them one by one.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a collection companies. Every object in this collection has lastcall-param. It's a
for example I have collection foo of documents like that: {tag_cloud:[{value:games, count:10}, {value:girls, count:500}]}
I have a table companies , which has two columns named name and address
I have Collection List<Car> . How to compare each item from this collection with
Lets say I have collection of documents with specified longitude and latitude. type is
I have a collection that use as a cache. How can I limit the
I have a collection of Objective-C classes that get sub-classed at a variety of
I have a combo box that I bind to an observable collection, which gets
I have in form this code line <%= f.collection_select :owner_ids, Owner.order(:id), :id, :name, {},
I have a simple Backbone model that looks like this: (function () { App.Company

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.