Kamil Walkowiak
Kamil Walkowiak
As an architect of fast growing analytical application I would like to scale our database not only vertically but also horizontally. Therefore we need to setup sharding cluster were I...
I have query: ``` where: { status: {nlike: 'finished'}, slug: params.slug } ``` and I'm getting correct results only when both conditions are fulfilled, otherwise I'm getting all records that...
``` Visit .find( { where: { status: {nlike: 'finished'}, slug: params.slug }, order: 'createdAt DESC' }, function (error, visits) { if (error) reject(error); else { console.log(visits[0].status == 'finished'); //true resolve(visits);...
I noticed difference in result when I'm using `in` in queries: ``` models .Event .find( { where: {socketId: {in: [1198]}} }, function (error, events) { // events = [] }...
As an admin who is responsible for managing our infrastructure I would like to have an overview of used resources od database clusters directly on the list. This will improve...