![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/vadimgossip/tcpbsonserverreqgenerator
BSON request generator Allows to generate N requests per second for M seconds. Both parameters are set in the config.
Example:
requestGenerator:
routePerSec: 100
workTimeSec: 5
Query example:
type RouteRequest struct {
RequestType string `bson:"requestType"`
MsgId int `bson:"msgId"`
SendTime time.Time `bson:"sendTime"`
RouteDuration time.Duration `bson:"routeDur"`
}
The RouteDuration parameter is needed to emulate somehow working on the server side.
Server example: https://github.com/VadimGossip/tcpBsonServerExample
Server response example:
type RouteResponse struct {
Err string `bson:"err,omitempty"`
SendTime time.Time `bson:"sendTime,omitempty"`
RouteStartTime time.Time `bson:"routeBegin,omitempty"`
RouteEndTime time.Time `bson:"routeEnd,omitempty"`
}
When the program finishes, it generates a response of the form:
config {RoutePerSec:100 WorkTimeSec:5}
Route Request Sent 500
Route Histogramm map[200:500]
Route Request Avg Answer Duration 109.552003ms
Route Request Min Answer Duration 106.7175ms
Route Request Max Answer Duration 127.097ms
Histogram Step 100ms
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.