rethinkdb Questions
5
Solved
I'm developing an application that works distributed, and I have a SQLite database that must be shared between distributed servers.
If I'm in serverA, and change sqlite row, this change must be in ...
Hark asked 16/4, 2013 at 9:2
4
Solved
One way I know I can do it is by listing throughdbList() and tableList() and then looking for what I want in the results.
Is there an easier way?
EDIT
My goal is to create a table in case it doe...
Growth asked 25/7, 2015 at 11:18
1
I have spend the last few hours trying to setup 2 default images of nodejs 14 and rethinkdb 2.3.5, so sorry if the tone is a little frustrated but I am currently frustrated.
My requirements are see...
Ackley asked 7/1, 2021 at 21:7
6
I have a survey table that looks like so:
{
id: Id,
date: Date,
clients: [{
client_id: Id,
contacts: [{
contact_id: Id,
score: Number,
feedback: String,
email: String
}]
}]
}
I need t...
Carpo asked 15/5, 2015 at 17:20
3
Solved
I can't figure out how to get the data size of 'test.events' table.
r.db('rethinkdb').table('stats').whatGoesHere()
// Output size of 'events' table
Related: Get size of Rethinkdb database with...
Habitation asked 29/10, 2015 at 17:54
2
Solved
Is there any other way to implement a "listening" function without an infinite while loop?
I've been thinking a lot about code and libraries like React that automatically, well, react to events as they happen, and was wondering about how all of that is implemented at the lower levels of ...
Centesimo asked 16/4, 2020 at 23:58
2
Solved
I'm trying to update multiple documents in RethinkDB, based on some precalculated values in a Hash. i.e.
Given a table stats with primary key slug with data like
[{slug: 'foo', stats: {}}, {slug...
Essentialism asked 31/1, 2014 at 19:32
1
Solved
I want to run a function that iterates through a generator class. The generator functions would run as long as the Ratchet connection is alive. All I need to do is to make this happen after the run...
1
Solved
I'm having this exact problem:
https://github.com/rethinkdb/rethinkdb/issues/6503
First time I connect, it console.logs 1 time.
If I refresh it console.log 2 times.
If I refresh again, it console ...
Clemente asked 7/1, 2018 at 12:45
4
Solved
I have a table of "person" data, which has a unique key "id". I have a list of id's that I want to get the data for which I'll be sending as a JSON array from the client to the server. The serve re...
Cecelia asked 3/12, 2013 at 10:0
3
Solved
I'm trying to remove a key from a RethinkDB document.
My approaches (which didn't work):
r.db('db').table('user').replace(function(row){delete row["key"]; return row})
Other approach:
r.db('db...
Aniela asked 2/9, 2013 at 20:31
2
Solved
I am using testdouble for stubbing calls within my node.js project. This particular function is wrapping a promise and has multiple then calls within the function itself.
function getUser (rethin...
Banna asked 21/3, 2017 at 18:55
1
Solved
I've got a MeetingService that fetches data from my RethinkDB through HorizonIO. When trying to fetch a meeting through its ID, I'll always get a null value as response. Other methods in this servi...
Zenas asked 9/3, 2017 at 13:47
2
Solved
Currently running Ubuntu 14.04 x86_64. I want to cross compile rethinkdb for my RPi for experimental purposes, which is supported in 1.12 (and people have apparently successfully compiled).
I have...
Negrete asked 19/4, 2014 at 15:41
1
Solved
I have an array which look like this and its working fine but I need to arrange them groupwise like DateWise:
[
{
name: 'Ali',
startedAt: Wed Dec 28 2016 15:32:07 GMT+0500 (Pakistan Standard Ti...
Turney asked 17/1, 2017 at 14:16
2
Solved
I found an answer for finding all documents in a table with missing fields in this SO thread RethinkDB - Find documents with missing field, however I want to filter according to a missing field AND...
Convivial asked 15/10, 2016 at 23:26
4
Solved
Lets say a comments table has the following structure:
id | author | timestamp | body
I want to use index for efficiently execute the following query:
r.table('comments').getAll("me", {index: "...
Dalmatic asked 2/11, 2013 at 21:41
1
Solved
I am building an application with RethinkDB and I'm about to switch to using changefeeds. But I'm facing an architectural choice and I'd like to get some advice.
My application currently loads all...
Palatial asked 29/5, 2016 at 13:34
2
Solved
How to stop a rethinkdb server in linux? Is there a command to gracefully shut down a rehinkdb instance? I haven't found anything about in the docs. So if I start a rethinkdb instance in foreground...
Forjudge asked 17/10, 2015 at 0:27
2
Solved
Note: We love RethinkDB but our current project does not use it so we need to free up resources on our local machine ...
We installed RethinkDB using homebrew:
brew update && brew install...
1
Solved
I am starting with a simple TODO app with Aurelia, RethinkDB & Socket.IO. I seem to have problem with re-rendering or re-evaluating an object that is changed through Socket.IO. So basically, ev...
Prepuce asked 4/4, 2016 at 4:4
3
Most of the popular NoSQL databases (MongoDB, RethinkDB) do not support ACID transactions. They are very popular today within developers of different systems.
The problem is: how to guarantee data ...
Jochebed asked 16/9, 2015 at 7:23
2
How do I get the size of a given rethinkdb database using Python? I want this because I'm developing a mutli-user graphical frontend to rethinkdb and want to be able to enforce a quota for each use...
1
Solved
I'm getting started with RethinkDB and I'm having some trouble understanding what's going on with some queries I'm running.
The problem is querying objects with date time types from a NodeJS app (...
Maziar asked 3/12, 2015 at 14:48
2
Can I create compound primary key in RethinkDB ? For example if I have table with next documents strucure {authorsId: '371df80c-2efd-48f9-ac37-3edcdb152fb1', postsId: '905e0c92-adcb-4095-98df-fa08c...
Atrocious asked 7/11, 2015 at 17:29
1 Next >
© 2022 - 2024 — McMap. All rights reserved.