Questions tagged [serving]
93 questions
12
votes
2 answers
Serve static files (JavaScript) with Struts 2
I want to put some JavaScript files in one of my packages and make Struts serve them like /struts/js/foo.js
Struts does that for files in 'template' package (that's where jQuery plugin's files are located, guarded by struts.ui.templateDir option).…

alamar
- 18,729
- 4
- 64
- 97
9
votes
5 answers
Serve static files from archive
Is there a module for apache/nginx to serve static files from archive (zip, tgz, tbz …), so that if there is no file in specified location, then stated archive is asked for that file?

tig
- 25,841
- 10
- 64
- 96
9
votes
2 answers
How should one serve swagger from laravel?
I'm attempting to use swagger with laravel to automatically document our RESTful API. The goal is to keep the swagger comments in the laravel controllers and then have swagger parse the comments and generate the associated .json/.php files. Ideally,…

redgeoff
- 3,163
- 1
- 25
- 39
9
votes
3 answers
How to serve cloudstorage files using app engine SDK
In app engine I can serve cloudstorage files like a pdf using the default bucket of my application:
http://storage.googleapis.com/.appspot.com/
But how can I serve local cloudstorage files in the SDK, without making use of a…

voscausa
- 11,253
- 2
- 39
- 67
8
votes
4 answers
Serving ads via HTTPS
I know there is no such thing as a dumb question but this is: Can you serve contextual based ads via adsense or others on a site that is entirely behind https?
nick
7
votes
2 answers
How to publish custom (non-tensorflow) models using tensorflow-serving?
I've read the basic and advanced tensorflow-serving tutorials but I am still unclear for how to build support in tensorflow-serving for the following:
models built in Python (like xgboost or scikit-learn)
models built in R (like xgboost or…

babalu
- 602
- 5
- 15
7
votes
2 answers
Will I be able to use CURL to get HTTP/2 headers?
Right now I use curl -I to retrieve headers.
Will sites adopt a different way of serving headers with HPACK in the upcoming adoption of HTTP/2 by browsers that will render my use of the curl command ineffective?

Orun
- 4,383
- 3
- 26
- 44
7
votes
6 answers
How to check the scalability of my application
I have developed an application that will create lot of PDF's and serve those file.
(Its normal Servlet-Buffering serving).
How to make sure my application works efficient with multiple request? Is there any tool available to test the…

Niger
- 3,916
- 5
- 30
- 30
6
votes
3 answers
Separate servers to serve django app and it's content?
I'm a little confused as to how to proceed. I'm setting up Django to run on a Mediatemple DV server. I'm trying to figure out the appropriate setup for serving image/video/etc content.
I don't quite understand what this means on…

pcpc33
- 61
- 2
6
votes
3 answers
Serving Keras Models With Tensorflow Serving
Right now we are successfully able to serve models using Tensorflow Serving. We have used following method to export the model and host it with Tensorflow Serving.
------------
For exporting
------------------
from…

Sumit Ghosh
- 119
- 2
- 9
5
votes
0 answers
How to make REST API calls in kafka streams application/
The time-series data is being produced in a kafka topic. I need to read each record and decorate with some data from the database and eventually call a REST API. Once the response is received, output to a kafka topic. How can I do this with kafka…

Mac
- 497
- 5
- 22
5
votes
1 answer
How to deploy tensorflow model on spark to do inference only
I want to deploy a big model, e.g. bert, on spark to do inference since I don't have enough GPUs. Now I have two problems.
I export the model to be pb format and load the model using the SavedModelBundle interface.
SavedModelBundle…

K_Augus
- 372
- 2
- 14
4
votes
1 answer
ML serving using either kserve seldon or bentoml
What is better kserve, seldon core or bentoML ? and what are the advantages /disavantages and feature of each one
Did a lot of research and can't find a clear answer

Patrick45678
- 43
- 4
4
votes
2 answers
css file not found - asp.net core web application
I have created an asp.net core web application (I started with the Empty option) and I am building it step by step. It seems my css file is not being read or found though.
When I launch the application I can see that my html page does not look as it…

FranB
- 651
- 1
- 6
- 9
4
votes
1 answer
How to make assets available by absolute url while serving and after building with webpack?
I have a following output project structure:
img
...
portfolio
masttech
index.html
index.html
...
index.html
And a following source project structure:
components
...
Portfolio
img
...
Masttech
img
...
…

shpindler
- 357
- 2
- 12