Skip to main content

Questions tagged [update]

0 votes
3 answers
1k views

I have a git repository with a long history. Releases were tagged along the master branch over time. If a user wants to go back and check out an old tagged release, they do not have the advantage of ...
Benjamin Johnson's user avatar
0 votes
3 answers
669 views

When designing a RESTful API, providing a spec for updating an entity will force the designer to make some decisions on how the update will behave (an update mode or type). Here are some of the modes ...
James Dunn's user avatar
-1 votes
1 answer
79 views

I'm having trouble planning the structure of my server side workflow and the technologies I should use. The basic structure and tasks are: Now, things to consider: 1.the server listens to multiple "...
mizenetofa1989's user avatar
3 votes
1 answer
102 views

I have film's storage (3 tables in database): films{id:int, film:string} genres{id:int, genre:string}, films_genres{film_id:int, genre_id:int, probability:int(%)} (film_id, genre_id) is UNIQUE KEY(...
user238467's user avatar
1 vote
1 answer
76 views

I often see the follwing example when reading about MVC (example is in Java, but question adapts to all OOP languages): class View{ JTextField tfName; public String getTfNameText(){ ...
danielr1996's user avatar
3 votes
1 answer
352 views

How would you calculate the time and space complexity for a tree algorithm that creates a copy of a tree, but reuses as much of the original tree as possible? For example, A /|\ B C G /|\ D ...
Dan Prince's user avatar
0 votes
1 answer
155 views

I'm importing data from older website to new one using database migrations. I have created first as one of first steps of development phase of new site. Then I planned to create another one, that will ...
trejder's user avatar
  • 2,416
1 vote
2 answers
10k views

I've got a table with the following structure : Col1 | Col2 | Col3 A | B | C A | C | B E | D | C The primary key is (Col1,Col2,Col3). I get the data in another project and ...
Alex's user avatar
  • 113
1 vote
1 answer
411 views

In our current setup, most of our database calls are updates where we increment a key by 1. If all one is doing is incrementing certain keys on a document (a lot) in mongodb, and there are several ...
tonyl7126's user avatar
  • 297
2 votes
1 answer
2k views

What are the common terminology used to schedule software update and support. For example, I really have no clue how releases and updates differ, how often are updates released (not everyday I hope)? ...
Kim Jong Woo's user avatar