Tagged Questions
0
votes
1answer
36 views
How to achieve database abstraction/independence in NoSQL world
We are looking at using MongoDB as our database in our Java Server-side application.
In my earlier project we were using Hibernate to abstract the underlying SQL database, so that we could switch from ...
0
votes
1answer
17 views
Which DB for storing geolocation (coordinates) for many users and checking if they are close to each other in real time?
IOS app will send from time to time coordinates to server through REST api. On server inside DB registered users are stored with their coordinates. Each user may have many friends which he want to ...
-3
votes
2answers
20 views
How do I design my database with lots of columns?
There will be hundreds of columns and thousands of tuples, each column has a similar meaning, they represent the same kind of thing, such as different universities.
So which database should I take and ...
0
votes
1answer
23 views
CouchbaseClient how to get list of all DesignDocuments in the bucket
I'm trying programmatically retrieve list of all design documents in the given bucket via CouchbaseClient. I have followed creating-views-from-sdk documentation but its only explains how to create ...
0
votes
1answer
40 views
Cassandra schema design optimization
My problem statement is :-
I have a college , every college have some students ,
every student has some data(for eg student id , student name , class etc) related to him.
The kind of questions ...
0
votes
1answer
27 views
How would you get the last 10 keys redis?
Let's say I have a database with 1,000,000 keys. Is there a way to know the last 10 keys from that database?
-1
votes
1answer
32 views
Deciding between mysql or nosql and their benifits [closed]
So I am a bit new to using databases on a large scale(especially relation databases). My primary concern here is that I hear allot of talk between nosql and mysql.
What should really be considered ...
0
votes
0answers
18 views
Migrating DB to Cloud
I am fairly new to cloud and I am looking for best way to store the database on the cloud. From what I understand so far is many cloud providers do offer your ready to use DB like Heroku add-on ...
0
votes
1answer
22 views
PHP - Obtain last row in CouchDB
I am trying to find a method of obtaining the last row in CouchDB using PHP. I have searched around, and I have not found very much that is helpful.
Thanks.
1
vote
1answer
53 views
Can you read keys not explicitly specified in Redis Lua scripts?
Here is an example scenario to illustrate:
Suppose we have some key=>value pairs:
hmset thing1 name 'a thing' color red
hmset thing2 name 'another thing' color green
hmset thing3 name 'also a thing' ...
1
vote
1answer
25 views
Are there any other databases that use Map-Reduce for queries like CouchDB?
After learning about CouchDB and Map-Reduce queries I've become very enthusiastic about them, but dislike Couch's revision and conflict model. Are there any other, 'lighter' NoSQL databases that also ...
-1
votes
0answers
53 views
Best choice moving from RDBMS to NoSQL database [closed]
Probably a question many are asking as they consider NoSQL alternatives to their aging RDBMS based systems.
I am looking for the best NoSQL alternative to replace a series of relational databases ...
2
votes
0answers
49 views
Choosing a database for storing large amount of data and allowing for thousands of writes [migrated]
I am working on a project that has some serious requirements regarding its database and having hard time choosing the best solution. The details are:
Database will easily reach tens of terabytes of ...
0
votes
2answers
36 views
Why, or why not, to use a schema free database?
I've tried using only mongodb in a web application for some time. But I'm wondering why some people say schema-free or dynamic schema is powerful. Now I don't think it so fantastic or wonderful. Would ...
0
votes
1answer
60 views
HDF vs NoSQL solutions
Hi I get a look in some scientific data stored in HDF5 format and I was wondering if there is any NoSQl solution that will reach the same performance in read/write as HDF5 .
The data of my example ...
0
votes
1answer
92 views
How to choose SQL Vs nosql storage
I have a project where I'm expecting large amount of live traffic and location information. The project hasn't started yet. I'm still in the architectural design phase. So there's no fear of migration ...
0
votes
2answers
76 views
Should I use relational database or no-sql database? [closed]
I am working on my learning project which is a job website. I am a newbie so not sure that I should use relational or non-relational database. Also I have no experience with no-sql database so its ...
0
votes
2answers
34 views
MongoDB Query by Key's value
Is it possible to execute a query where you constrain it to a key's value? ex.
"1":{
...
}
"2":{
...
}
"3":{
...
}
Execute a query where the keys value is less than 3 and ...
0
votes
1answer
31 views
Slow backup routine message in Starcounter
I have Starcounter installed on my laptop (i7 mobile). Checking the logfile I found that I had several messages like this:
Memory manager unable to acquire the SE_MANAGE_VOLUME_NAME privilege. ...
-1
votes
0answers
37 views
Please advice on possible database solution [closed]
My data consists of large number of records that among other properties have tags and date. I don't want to go into details about exact size of the data and about available hardware because I'm ...
0
votes
1answer
27 views
What is the right way to select records from mongodb document
I"m new in mongodb and I really like the idea of noSql.
I"m trying to build a blog where on each comment people can click on rate buttons and rate the person comment.
Inside each comment I have a ...
1
vote
1answer
116 views
Apache Cassandra JDBC connection error
I wand to connect to cassandra 1.2.4 on a remote server through jdbc.
package cassandraclient;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
...
-3
votes
0answers
72 views
Which is the best NOSql option for several scenarios. what are the differences among them? [closed]
I would like to know which is the best option for NOsql databases for the scenarios presented in the end of the question.
What are the benefits and the disadvantages of each one,
The main databases ...
0
votes
0answers
26 views
which is the best no sql db for storing Set objects [closed]
Iam in the process of evaluvating a few opensource nosql database options for an application that needs to persist a Set of objects of type 'String'. (ie no repeated values )
On recieving an input, ...
0
votes
1answer
25 views
How to project the $in operator as a boolean in mongodb?
feed = coll.aggregate([
{'$project' :{'Upvoted' :
{'Upvoters' : {'$in' : [ObjectId(userid)]} }}},
{'$match' :{ '$or': [ {"_id": ObjectId(userid) }, {"Friends": ...
0
votes
1answer
23 views
MongoDb casscade update/delete
I'm trying to use mongoDB with Morphia but still I have a problem with deleting documents. Is there any additional plugin or wrapper which works with Mongo and provides something like transactions in ...
0
votes
1answer
69 views
MongoDB: can't convert from BSON type EOO to Date
I' trying to use aggregation framework (with ruby) and project the date like this:
db['requests'].aggregate([
{"$project" => {
_id: 0,
method: '$method',
user: '$user',
year: ...
2
votes
2answers
67 views
Hybrid DB System: NoSQL for data, SQL for relationships. Best Practice?
I'm building an app whose DB system will be crucial, and needs to be scalable since all its value will be in the data.
I'm making a live voting system.
I am comfortable with SQL and MongoDB, so it's ...
1
vote
1answer
147 views
Cassandra data model for time series
I am working on a Cassandra data model for storing time series (I'm a Cassandra newbie).
I have two applications: intraday stock data and sensor data.
The stock data will be saved with a time ...
0
votes
0answers
69 views
MongoDB -> Design decision for huge datasets
here is my problem. I have a 50 cities (a,b,....), each city contains up to 4000 addresses (a1, a2, ... or b1, b2, ...) and each of these addresses contains a list with 10.000-40.000 ...
0
votes
4answers
81 views
Which database fits for 14 million records with PHP as frontend [closed]
I have to work on the business search portal in which, i think the proposed records to be entered and searched would be around 14 million.
I am planing to use PHP as frontend and Mysql as backend. ...
0
votes
0answers
16 views
What is the best algorithm to build an autoincrement ID system in BigDB
there is a database system called BigDB but it doesn't have any "autoincrement" option.
What is the best algorithm for that or what is that algorithm called?
Thanks
0
votes
2answers
15 views
How to organize this setup with MongoDB
I'm coming from a strictly MySQL background and MongoDB is my first contact with NoSQL. Let's say I have a bunch of users and a bunch of groups.
The user schema:
user_id
username
email
The group ...
-3
votes
0answers
73 views
NOSQL database implications [closed]
Could you please answer this question? :)
• Question 1
Please list at least 5 ways the functionality of a NOSQL database varies from a SQL database. Also, describe the implications of these ...
0
votes
3answers
43 views
с++ - lite databases compiled into binary
Please, suggest some lite databases to store key-value data (and maybe some other useful features). Something like NoSQL.
The main requirement that this databases must compile with my c++ program ...
2
votes
2answers
73 views
How to create a fast, queryable index from many JSON files (ideally in Python)
I have 78,000 individual JSON files that I created with a Python script that scrapes a community forum and extracts information from each post. They consist of simple key-value pairs, like so:
{
...
0
votes
2answers
54 views
Am i correctly using indexes for this mongoDB?
So i need some advice as to what i'm doing incorrectly.
My database is setup up exactly like a file system consisting of folders and files.
It begins with a folder, but can have a relatively infinite ...
0
votes
3answers
38 views
implement: a string-to-string database
Just like std::unordered_map<std::string, std::string> but all data should be stored on-disk instead of in memory.
As I understand it, two parts should be done: indexing and storage. I've ...
1
vote
1answer
203 views
nosql: MongoDB, Cassandra or alternative for data warehousing
I am stuck between a concrete decision on whether to go with MongoDB or Cassandra for my database needs and would like input on my use case as to guide my decision.
Requirements:
Data source
X ...
0
votes
1answer
39 views
need suggestion for database regarding Stackoverflow related project
I am working on implementing a feature similar to "related questions" feature of SO.I want to suggest the most matching questions for few of the tags like C,C++. Is it more preferable to use a NoSQL ...
0
votes
0answers
26 views
There is any cloud storage provider like dropbox built in relational database system? [closed]
There is any cloud storage provider like dropbox built in relational database system and not in NoSQL?
0
votes
1answer
50 views
Deletion and Insertion in NoSQL database
Consider the following scenario for a Nosql database:
Suppose a record is deleted from one table and inserted into another table. What precautions or error checking has to be done for this scenario? ...
0
votes
1answer
23 views
How do I implement cascade deletes in the new version of Starcounter?
In the new version I make persistent classes by using the [Database] attribute, I get that. How do I implement cascade deletes since Entity class, with the OnDelete() method, has been removed?
1
vote
1answer
49 views
Databases that use SQLite as storage layer
What databases use SQLite as their storage layer?
Note: I've learnt that CouchBase in it's early stages used SQLite as it's storage layer but I did not found the code - and I am not sure it's correct ...
0
votes
0answers
60 views
Which NoSQL database fit best to my use case? [closed]
In the recent past, I read some articles and papers about NoSQL databases. I have a certain use case and I would like to set up a system. However, I'm not quite sure which sort of NoSQL fit best to my ...
2
votes
1answer
89 views
Memory efficient way to import large files and data into MongoDB?
After recently experimenting with MongoDB, I tried a few different methods of importing/inserting large amounts of data into collections. So far the most efficient method I've found is mongoimport. ...
0
votes
1answer
49 views
Creating index on sorted data
I have a text file with some sorted data, splitted with newline. for example:
...
abc123
abc124
abd123
abd124
abd125
...
Now I want to create an index for the dataset, which should (at least) ...
0
votes
0answers
40 views
MongoDB: Statement within $group clause not functioning as expected.
Here's a snippet of a query I'm running, I'm attempting to retrieve the number of user accounts which have deployed an item in our system within a given time period.
The match condition ensures ...
0
votes
0answers
32 views
NOSQL GetByKey & Order
Now my architecture is based on Berkeley DB but doesn't perform well and it's not easy to clusterize.
I'm looking for a NOSQL database to store key/value data clusterizable and with best performance ...
1
vote
0answers
43 views
Correct use-case for redis
I am totally new to noSQL and have only really dabbled with SQL. However I can clearly see that noSQL is going to be a better fit for my applications data as it doesn't fit the traditional table ...


