What is the same function in postgres as mongoose middleware?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
Here is the link about mongoose middleware: https://mongoosejs.com/docs/middleware.html
My case is I want to update some fields after a SQL query from database when client user send request to call my api. And the fields which need to be updated is based on Date
, so they will be updated frequently.
Update these fields in the initialization of my application is not enough.
With mongoose, I can use below way:
schema.post('findOne', function(doc, next) {
const doc = updateFields(doc);
doc
.save()
.then(() => next())
.catch(next);
})
How can I do this using postgresql
?
I find a way but it seems duplicated.
The way is using UPDATE
and RETURNING
. But I have to write this SQL everywhere.
Or, I can encapsulate a method and call it firstly when need update the fields? I think it's duplicated either.
So, what's the best way for my case? thanks.
postgresql
add a comment |
Here is the link about mongoose middleware: https://mongoosejs.com/docs/middleware.html
My case is I want to update some fields after a SQL query from database when client user send request to call my api. And the fields which need to be updated is based on Date
, so they will be updated frequently.
Update these fields in the initialization of my application is not enough.
With mongoose, I can use below way:
schema.post('findOne', function(doc, next) {
const doc = updateFields(doc);
doc
.save()
.then(() => next())
.catch(next);
})
How can I do this using postgresql
?
I find a way but it seems duplicated.
The way is using UPDATE
and RETURNING
. But I have to write this SQL everywhere.
Or, I can encapsulate a method and call it firstly when need update the fields? I think it's duplicated either.
So, what's the best way for my case? thanks.
postgresql
add a comment |
Here is the link about mongoose middleware: https://mongoosejs.com/docs/middleware.html
My case is I want to update some fields after a SQL query from database when client user send request to call my api. And the fields which need to be updated is based on Date
, so they will be updated frequently.
Update these fields in the initialization of my application is not enough.
With mongoose, I can use below way:
schema.post('findOne', function(doc, next) {
const doc = updateFields(doc);
doc
.save()
.then(() => next())
.catch(next);
})
How can I do this using postgresql
?
I find a way but it seems duplicated.
The way is using UPDATE
and RETURNING
. But I have to write this SQL everywhere.
Or, I can encapsulate a method and call it firstly when need update the fields? I think it's duplicated either.
So, what's the best way for my case? thanks.
postgresql
Here is the link about mongoose middleware: https://mongoosejs.com/docs/middleware.html
My case is I want to update some fields after a SQL query from database when client user send request to call my api. And the fields which need to be updated is based on Date
, so they will be updated frequently.
Update these fields in the initialization of my application is not enough.
With mongoose, I can use below way:
schema.post('findOne', function(doc, next) {
const doc = updateFields(doc);
doc
.save()
.then(() => next())
.catch(next);
})
How can I do this using postgresql
?
I find a way but it seems duplicated.
The way is using UPDATE
and RETURNING
. But I have to write this SQL everywhere.
Or, I can encapsulate a method and call it firstly when need update the fields? I think it's duplicated either.
So, what's the best way for my case? thanks.
postgresql
postgresql
edited Jan 3 at 8:35
slideshowp2
asked Jan 3 at 8:15
slideshowp2slideshowp2
2,98823081
2,98823081
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Design correctly your database schema (and be sure to have appropriate database indexes, and be aware of database normalization). Then explicit the set of SQL requests your application should make.
You might be interested by triggers (which looks similar to what you call "middleware")
Most of the requests would be in prepared statements, using PQprepare in the initialization of your application.
Be aware that MongoDB is a NoSQL database, but PostGreSQL is a relational database, so they require different mindsets and approaches and should be used differently.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54018556%2fwhat-is-the-same-function-in-postgres-as-mongoose-middleware%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Design correctly your database schema (and be sure to have appropriate database indexes, and be aware of database normalization). Then explicit the set of SQL requests your application should make.
You might be interested by triggers (which looks similar to what you call "middleware")
Most of the requests would be in prepared statements, using PQprepare in the initialization of your application.
Be aware that MongoDB is a NoSQL database, but PostGreSQL is a relational database, so they require different mindsets and approaches and should be used differently.
add a comment |
Design correctly your database schema (and be sure to have appropriate database indexes, and be aware of database normalization). Then explicit the set of SQL requests your application should make.
You might be interested by triggers (which looks similar to what you call "middleware")
Most of the requests would be in prepared statements, using PQprepare in the initialization of your application.
Be aware that MongoDB is a NoSQL database, but PostGreSQL is a relational database, so they require different mindsets and approaches and should be used differently.
add a comment |
Design correctly your database schema (and be sure to have appropriate database indexes, and be aware of database normalization). Then explicit the set of SQL requests your application should make.
You might be interested by triggers (which looks similar to what you call "middleware")
Most of the requests would be in prepared statements, using PQprepare in the initialization of your application.
Be aware that MongoDB is a NoSQL database, but PostGreSQL is a relational database, so they require different mindsets and approaches and should be used differently.
Design correctly your database schema (and be sure to have appropriate database indexes, and be aware of database normalization). Then explicit the set of SQL requests your application should make.
You might be interested by triggers (which looks similar to what you call "middleware")
Most of the requests would be in prepared statements, using PQprepare in the initialization of your application.
Be aware that MongoDB is a NoSQL database, but PostGreSQL is a relational database, so they require different mindsets and approaches and should be used differently.
edited Jan 3 at 8:30
answered Jan 3 at 8:23
Basile StarynkevitchBasile Starynkevitch
180k13174375
180k13174375
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54018556%2fwhat-is-the-same-function-in-postgres-as-mongoose-middleware%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown