Posts by Thiago Lopes • 1 point
3 posts
-
0
votes2
answers282
viewsA: What are isomorphic applications?
Formerly, with Asp, php and Servlets, htmls were fully mounted on the server, which obviously generates unnecessary consumption. Imagine that the client’s own computer can do it for you. That’s how…
-
0
votes2
answers839
viewsA: What does Java FE and BE mean?
FE refers to the front end. Generally Javascript and the like (Angujarjs, React, Jquery, etc.), "what runs in the browser". BE refers to the back end or server side of the application, "which runs…
-
0
votes2
answers150
viewsA: What is the difference between public async System.Threading.Tasks.Task<Actionresult> Index() and public Actionresult Index()?
In case it will make no difference and nor should compile because your method does nothing asynchronous. If you make an asynchronous call in your code the signature of example 1 is required: public…