Lines Matching refs:F

1 # F-Stack Development Guide
5 F-Stack is an open source high performant network framework based on DPDK with the following charac…
9 3. Support Nginx, Redis, and other mature applications. Services can easily use F-Stack.
11 …d interface. Various applications with stateful applications can easily use F-Stack to get high pe…
12 6. Provide an Epoll/Kqueue interface that allow many kinds of applications to easily use F-Stack.
14 ## Structure of F-Stack code
22 ├── lib -- F-Stack lib directory
31 F-Stack simplify the initialization of the standard DPDK. By setting the NIC port and CPU core mask…
35 …rotocol and port number to decide which packets need to be processed by the F-Stack, remaining pac…
41F-Stack used a simple TCP/IP stack that developed by ourselves. However, with the growth of variou…
43 …ing and kernel system (such as scheduling, locks, etc.) on the performance, F-Stack uses a multi-p…
77 ## Applications use F-Stack
79 F-Stack provides ff API (See *F-Stack\_API\_Reference*) to support applications. F-Stack also inte…
83 HTTP web application can use F-Stack with Nginx.
87 key-value db application can use F-Stack with redis, and can start multi Redis instance.
91 …cations with stateful(high latency) use F-Stack , state need to be stored for a long time, can dir…
93 ## F-Stack configure file reference
98 ## Start a F-Stack application
100 Since F-Stack is multi-process architecture, every F-Stack application process should call `ff_init…
108 Or you can just use `start.sh` under F-Stack root directory.