I am a newbie to Intel DPDK. I am planning to write an http web server.
Can it be implemented using the following logic using DPDK ?
- Get the packets and send it to Worker Logical Cores.
- A Worker Logical Core build 'http reuqest' sent by the client, using the incoming packets.
- Process the 'http reuest' in the Worker Logical Core and produce an 'http response'.
- Create packets for the 'http response' and dispatch them to output software rings.
I am not sure whether the above is feasible or not.
Is it possible to write a web server using Intel DPDK?