English 中文(简体)
如何通过NSQL中的数据阵列进行检索
原标题:How efficient is it to search through arrays of data in NoSQL

我现在正在把一个中央权力转移至Mongo。 我们的线索表有一幅形形形色色图,因此将其放入NSQL数据库是有意义的。 然而,在蒙戈省,从效率角度看,有些地方我担心。

我有一个500万的数据库显示,在蒙戈,我是一家收集的。 问题在于,其中每一个线索都有与它和销售人相关的事件。 我很想知道,在数据库中储存这些事件并将这些事件编入数据库将多么高效。

因此,我基本上可能举行5 000万次活动(平均为500万线索中的每场10次活动)。 现在,我想看到销售人员32给他安排了哪些活动,因此,我将在收集线索时,与他的世界投资基金会一道寻找所有活动。

Is this a practical thing to do in Mongo or is this going to be incredibly inefficient?

tl;dr Simplified question: How fast is Mongo at indexing arrays of objects? Is it efficient if I have 50 million posts in a database that contain 10 comments each with the author field of each comment indexed and want to find all comments by an author?

最佳回答

i 相信这是你回顾的:

问题回答

暂无回答




相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签